From eb1ebbe03238c45d1ad516f296c5a15702659e7b Mon Sep 17 00:00:00 2001 From: fabian Date: Fri, 1 Mar 2024 23:15:01 +0100 Subject: [PATCH] initial commit --- .gitignore | 9 + .gitmodules | 4 + Makefile | 38 + backup/flutter-elinux_git.bb | 37 + backup/flutter-wonders_git.bb | 25 + build/conf/bblayers.conf | 23 + build/conf/local.conf | 331 + build/conf/templateconf.cfg | 1 + docker-compose.yml | 9 + notes.md | 43 + poky/.gitignore | 40 + poky/.templateconf | 2 + poky/LICENSE | 20 + poky/LICENSE.GPL-2.0-only | 288 + poky/LICENSE.MIT | 25 + poky/MAINTAINERS.md | 72 + poky/MEMORIAM | 5 + poky/Makefile | 35 + poky/README.OE-Core.md | 29 + poky/README.hardware.md | 1 + poky/README.md | 1 + poky/README.poky.md | 1 + poky/README.qemu.md | 15 + poky/bitbake/.gitattributes | 2 + poky/bitbake/AUTHORS | 10 + poky/bitbake/ChangeLog | 317 + poky/bitbake/LICENSE | 29 + poky/bitbake/LICENSE.GPL-2.0-only | 288 + poky/bitbake/LICENSE.MIT | 25 + poky/bitbake/README | 43 + poky/bitbake/bin/bitbake | 45 + poky/bitbake/bin/bitbake-diffsigs | 204 + poky/bitbake/bin/bitbake-dumpsig | 1 + poky/bitbake/bin/bitbake-getvar | 50 + poky/bitbake/bin/bitbake-hashclient | 169 + poky/bitbake/bin/bitbake-hashserv | 66 + poky/bitbake/bin/bitbake-layers | 102 + poky/bitbake/bin/bitbake-prserv | 65 + poky/bitbake/bin/bitbake-selftest | 77 + poky/bitbake/bin/bitbake-server | 54 + poky/bitbake/bin/bitbake-worker | 551 + poky/bitbake/bin/git-make-shallow | 173 + poky/bitbake/bin/toaster | 324 + poky/bitbake/bin/toaster-eventreplay | 115 + poky/bitbake/contrib/README | 1 + poky/bitbake/contrib/autobuilderlog.json | 13 + poky/bitbake/contrib/bbdev.sh | 31 + poky/bitbake/contrib/bbparse-torture.py | 89 + poky/bitbake/contrib/dump_cache.py | 83 + poky/bitbake/contrib/hashserv/Dockerfile | 23 + poky/bitbake/contrib/prserv/Dockerfile | 62 + poky/bitbake/contrib/vim/LICENSE.txt | 18 + poky/bitbake/contrib/vim/ftdetect/bitbake.vim | 24 + poky/bitbake/contrib/vim/ftplugin/bitbake.vim | 13 + poky/bitbake/contrib/vim/indent/bitbake.vim | 343 + poky/bitbake/contrib/vim/plugin/newbb.vim | 88 + .../contrib/vim/plugin/newbbappend.vim | 46 + poky/bitbake/contrib/vim/syntax/bitbake.vim | 129 + poky/bitbake/doc/.gitignore | 1 + poky/bitbake/doc/COPYING.GPL | 339 + poky/bitbake/doc/COPYING.MIT | 17 + poky/bitbake/doc/Makefile | 35 + poky/bitbake/doc/README | 55 + poky/bitbake/doc/_templates/breadcrumbs.html | 14 + poky/bitbake/doc/_templates/layout.html | 7 + .../bitbake-user-manual-execution.rst | 724 + .../bitbake-user-manual-fetching.rst | 806 + .../bitbake-user-manual-hello.rst | 415 + .../bitbake-user-manual-intro.rst | 653 + .../bitbake-user-manual-metadata.rst | 1981 ++ .../bitbake-user-manual-ref-variables.rst | 1488 + .../figures/bb_multiconfig_files.png | Bin 0 -> 19991 bytes .../figures/bitbake-title.png | Bin 0 -> 5086 bytes poky/bitbake/doc/bitbake.1 | 142 + poky/bitbake/doc/conf.py | 101 + poky/bitbake/doc/genindex.rst | 3 + poky/bitbake/doc/index.rst | 38 + poky/bitbake/doc/releases.rst | 172 + poky/bitbake/doc/sphinx-static/switchers.js | 233 + .../doc/sphinx-static/theme_overrides.css | 162 + poky/bitbake/doc/template/Vera.ttf | Bin 0 -> 65932 bytes poky/bitbake/doc/template/VeraMoBd.ttf | Bin 0 -> 49052 bytes poky/bitbake/doc/template/VeraMono.ttf | Bin 0 -> 49224 bytes poky/bitbake/doc/template/draft.png | Bin 0 -> 24847 bytes poky/bitbake/lib/bb/COW.py | 197 + poky/bitbake/lib/bb/__init__.py | 218 + poky/bitbake/lib/bb/asyncrpc/__init__.py | 33 + poky/bitbake/lib/bb/asyncrpc/client.py | 178 + poky/bitbake/lib/bb/asyncrpc/serv.py | 288 + poky/bitbake/lib/bb/build.py | 1064 + poky/bitbake/lib/bb/cache.py | 1000 + poky/bitbake/lib/bb/cache_extra.py | 63 + poky/bitbake/lib/bb/checksum.py | 144 + poky/bitbake/lib/bb/codeparser.py | 477 + poky/bitbake/lib/bb/command.py | 774 + poky/bitbake/lib/bb/compress/_pipecompress.py | 196 + poky/bitbake/lib/bb/compress/lz4.py | 19 + poky/bitbake/lib/bb/compress/zstd.py | 30 + poky/bitbake/lib/bb/cooker.py | 2396 ++ poky/bitbake/lib/bb/cookerdata.py | 454 + poky/bitbake/lib/bb/daemonize.py | 101 + poky/bitbake/lib/bb/data.py | 448 + poky/bitbake/lib/bb/data_smart.py | 1107 + poky/bitbake/lib/bb/event.py | 853 + poky/bitbake/lib/bb/exceptions.py | 96 + poky/bitbake/lib/bb/fetch2/README | 57 + poky/bitbake/lib/bb/fetch2/__init__.py | 1984 ++ poky/bitbake/lib/bb/fetch2/az.py | 93 + poky/bitbake/lib/bb/fetch2/bzr.py | 128 + poky/bitbake/lib/bb/fetch2/clearcase.py | 247 + poky/bitbake/lib/bb/fetch2/crate.py | 136 + poky/bitbake/lib/bb/fetch2/cvs.py | 157 + poky/bitbake/lib/bb/fetch2/git.py | 841 + poky/bitbake/lib/bb/fetch2/gitannex.py | 77 + poky/bitbake/lib/bb/fetch2/gitsm.py | 262 + poky/bitbake/lib/bb/fetch2/hg.py | 263 + poky/bitbake/lib/bb/fetch2/local.py | 98 + poky/bitbake/lib/bb/fetch2/npm.py | 310 + poky/bitbake/lib/bb/fetch2/npmsw.py | 282 + poky/bitbake/lib/bb/fetch2/osc.py | 141 + poky/bitbake/lib/bb/fetch2/perforce.py | 267 + poky/bitbake/lib/bb/fetch2/repo.py | 87 + poky/bitbake/lib/bb/fetch2/s3.py | 124 + poky/bitbake/lib/bb/fetch2/sftp.py | 112 + poky/bitbake/lib/bb/fetch2/ssh.py | 157 + poky/bitbake/lib/bb/fetch2/svn.py | 212 + poky/bitbake/lib/bb/fetch2/wget.py | 654 + poky/bitbake/lib/bb/main.py | 494 + poky/bitbake/lib/bb/methodpool.py | 27 + poky/bitbake/lib/bb/monitordisk.py | 260 + poky/bitbake/lib/bb/msg.py | 357 + poky/bitbake/lib/bb/namedtuple_with_abc.py | 249 + poky/bitbake/lib/bb/parse/__init__.py | 167 + poky/bitbake/lib/bb/parse/ast.py | 439 + .../lib/bb/parse/parse_py/BBHandler.py | 260 + .../lib/bb/parse/parse_py/ConfHandler.py | 197 + .../bitbake/lib/bb/parse/parse_py/__init__.py | 20 + poky/bitbake/lib/bb/persist_data.py | 252 + poky/bitbake/lib/bb/process.py | 190 + poky/bitbake/lib/bb/progress.py | 310 + poky/bitbake/lib/bb/providers.py | 442 + poky/bitbake/lib/bb/pysh/__init__.py | 0 poky/bitbake/lib/bb/pysh/pyshlex.py | 883 + poky/bitbake/lib/bb/pysh/pyshyacc.py | 783 + poky/bitbake/lib/bb/pysh/sherrors.py | 15 + poky/bitbake/lib/bb/remotedata.py | 65 + poky/bitbake/lib/bb/runqueue.py | 3192 ++ poky/bitbake/lib/bb/server/__init__.py | 9 + poky/bitbake/lib/bb/server/process.py | 772 + poky/bitbake/lib/bb/server/xmlrpcclient.py | 141 + poky/bitbake/lib/bb/server/xmlrpcserver.py | 146 + poky/bitbake/lib/bb/siggen.py | 1130 + poky/bitbake/lib/bb/taskdata.py | 586 + poky/bitbake/lib/bb/tests/__init__.py | 0 poky/bitbake/lib/bb/tests/codeparser.py | 440 + poky/bitbake/lib/bb/tests/color.py | 95 + poky/bitbake/lib/bb/tests/compression.py | 100 + poky/bitbake/lib/bb/tests/cooker.py | 71 + poky/bitbake/lib/bb/tests/cow.py | 317 + poky/bitbake/lib/bb/tests/data.py | 552 + poky/bitbake/lib/bb/tests/event.py | 966 + .../tests/fetch-testdata/apple/cups/releases | 2400 ++ .../debian/pool/main/d/db5.3/index.html | 509 + .../debian/pool/main/m/minicom/index.html | 59 + .../downloads/enchant/1.6.0/index.html | 15 + .../fetch-testdata/files/v2.8/index.html | 774 + .../fetch-testdata/files/v3.0/index.html | 209 + .../fetch-testdata/files/v3.1/index.html | 156 + .../fetch-testdata/files/v3.10/index.html | 131 + .../fetch-testdata/files/v3.11/index.html | 131 + .../fetch-testdata/files/v3.12/index.html | 118 + .../fetch-testdata/files/v3.13/index.html | 131 + .../fetch-testdata/files/v3.14/index.html | 170 + .../fetch-testdata/files/v3.15/index.html | 157 + .../fetch-testdata/files/v3.16/index.html | 86 + .../fetch-testdata/files/v3.2/index.html | 132 + .../fetch-testdata/files/v3.3/index.html | 163 + .../fetch-testdata/files/v3.4/index.html | 127 + .../fetch-testdata/files/v3.5/index.html | 111 + .../fetch-testdata/files/v3.6/index.html | 159 + .../fetch-testdata/files/v3.7/index.html | 92 + .../fetch-testdata/files/v3.8/index.html | 105 + .../fetch-testdata/files/v3.9/index.html | 183 + .../linux/utils/util-linux/v2.23/index.html | 45 + .../linux/utils/util-linux/v2.24/index.html | 43 + .../linux/utils/util-linux/v2.25/index.html | 46 + .../linux/utils/util-linux/v2.26/index.html | 42 + .../linux/utils/util-linux/v2.27/index.html | 35 + .../linux/utils/util-linux/v2.28/index.html | 42 + .../linux/utils/util-linux/v2.29/index.html | 42 + .../linux/utils/util-linux/v2.30/index.html | 42 + .../linux/utils/util-linux/v2.31/index.html | 35 + .../linux/utils/util-linux/v2.32/index.html | 35 + .../linux/utils/util-linux/v2.33/index.html | 42 + .../linux/utils/util-linux/v2.34/index.html | 28 + .../linux/utils/util-linux/v2.35/index.html | 18 + .../fetch-testdata/releases/eglibc/index.html | 21 + .../releases/gnu-config/index.html | 9 + .../releases/individual/xserver/index.html | 609 + .../software/pulseaudio/releases/index.html | 383 + poky/bitbake/lib/bb/tests/fetch.py | 2804 ++ poky/bitbake/lib/bb/tests/parse.py | 219 + poky/bitbake/lib/bb/tests/persist_data.py | 129 + .../tests/runqueue-tests/classes/base.bbclass | 262 + .../runqueue-tests/classes/image.bbclass | 5 + .../runqueue-tests/classes/native.bbclass | 2 + .../bb/tests/runqueue-tests/conf/bitbake.conf | 17 + .../runqueue-tests/conf/multiconfig/mc-1.conf | 2 + .../runqueue-tests/conf/multiconfig/mc_2.conf | 2 + .../lib/bb/tests/runqueue-tests/recipes/a1.bb | 0 .../lib/bb/tests/runqueue-tests/recipes/b1.bb | 1 + .../lib/bb/tests/runqueue-tests/recipes/c1.bb | 0 .../lib/bb/tests/runqueue-tests/recipes/d1.bb | 3 + .../lib/bb/tests/runqueue-tests/recipes/e1.bb | 1 + .../lib/bb/tests/runqueue-tests/recipes/f1.bb | 1 + .../recipes/fails-mc/fails-mc1.bb | 5 + .../recipes/fails-mc/fails-mc2.bb | 4 + poky/bitbake/lib/bb/tests/runqueue.py | 401 + poky/bitbake/lib/bb/tests/siggen.py | 91 + .../lib/bb/tests/support/httpserver.py | 65 + poky/bitbake/lib/bb/tests/utils.py | 686 + poky/bitbake/lib/bb/tinfoil.py | 890 + poky/bitbake/lib/bb/ui/__init__.py | 7 + poky/bitbake/lib/bb/ui/buildinfohelper.py | 1982 ++ .../lib/bb/ui/icons/images/images_display.png | Bin 0 -> 6898 bytes .../lib/bb/ui/icons/images/images_hover.png | Bin 0 -> 7051 bytes .../lib/bb/ui/icons/indicators/add-hover.png | Bin 0 -> 1212 bytes .../lib/bb/ui/icons/indicators/add.png | Bin 0 -> 1176 bytes .../lib/bb/ui/icons/indicators/alert.png | Bin 0 -> 3954 bytes .../bb/ui/icons/indicators/confirmation.png | Bin 0 -> 5789 bytes .../lib/bb/ui/icons/indicators/denied.png | Bin 0 -> 3955 bytes .../lib/bb/ui/icons/indicators/error.png | Bin 0 -> 6482 bytes .../lib/bb/ui/icons/indicators/info.png | Bin 0 -> 3311 bytes .../lib/bb/ui/icons/indicators/issues.png | Bin 0 -> 4549 bytes .../lib/bb/ui/icons/indicators/refresh.png | Bin 0 -> 5250 bytes .../bb/ui/icons/indicators/remove-hover.png | Bin 0 -> 2809 bytes .../lib/bb/ui/icons/indicators/remove.png | Bin 0 -> 1971 bytes .../lib/bb/ui/icons/indicators/tick.png | Bin 0 -> 4563 bytes .../lib/bb/ui/icons/info/info_display.png | Bin 0 -> 4117 bytes .../lib/bb/ui/icons/info/info_hover.png | Bin 0 -> 4167 bytes .../lib/bb/ui/icons/layers/layers_display.png | Bin 0 -> 4840 bytes .../lib/bb/ui/icons/layers/layers_hover.png | Bin 0 -> 5257 bytes .../bb/ui/icons/packages/packages_display.png | Bin 0 -> 7011 bytes .../bb/ui/icons/packages/packages_hover.png | Bin 0 -> 7121 bytes .../lib/bb/ui/icons/recipe/recipe_display.png | Bin 0 -> 4723 bytes .../lib/bb/ui/icons/recipe/recipe_hover.png | Bin 0 -> 4866 bytes .../bb/ui/icons/settings/settings_display.png | Bin 0 -> 6076 bytes .../bb/ui/icons/settings/settings_hover.png | Bin 0 -> 6269 bytes .../ui/icons/templates/templates_display.png | Bin 0 -> 5651 bytes .../bb/ui/icons/templates/templates_hover.png | Bin 0 -> 5791 bytes poky/bitbake/lib/bb/ui/knotty.py | 915 + poky/bitbake/lib/bb/ui/ncurses.py | 364 + poky/bitbake/lib/bb/ui/taskexp.py | 341 + poky/bitbake/lib/bb/ui/teamcity.py | 396 + poky/bitbake/lib/bb/ui/toasterui.py | 479 + poky/bitbake/lib/bb/ui/uievent.py | 152 + poky/bitbake/lib/bb/ui/uihelper.py | 69 + poky/bitbake/lib/bb/utils.py | 1800 ++ poky/bitbake/lib/bblayers/__init__.py | 8 + poky/bitbake/lib/bblayers/action.py | 270 + poky/bitbake/lib/bblayers/common.py | 39 + poky/bitbake/lib/bblayers/layerindex.py | 231 + poky/bitbake/lib/bblayers/query.py | 530 + poky/bitbake/lib/bs4/AUTHORS.txt | 43 + poky/bitbake/lib/bs4/COPYING.txt | 26 + poky/bitbake/lib/bs4/NEWS.txt | 1066 + poky/bitbake/lib/bs4/__init__.py | 468 + poky/bitbake/lib/bs4/builder/__init__.py | 324 + poky/bitbake/lib/bs4/builder/_html5lib.py | 338 + poky/bitbake/lib/bs4/builder/_htmlparser.py | 262 + poky/bitbake/lib/bs4/builder/_lxml.py | 248 + poky/bitbake/lib/bs4/dammit.py | 832 + poky/bitbake/lib/bs4/diagnose.py | 216 + poky/bitbake/lib/bs4/element.py | 1724 ++ poky/bitbake/lib/bs4/testing.py | 686 + poky/bitbake/lib/bs4/tests/__init__.py | 1 + .../lib/bs4/tests/test_builder_registry.py | 147 + poky/bitbake/lib/bs4/tests/test_docs.py | 32 + poky/bitbake/lib/bs4/tests/test_html5lib.py | 98 + poky/bitbake/lib/bs4/tests/test_htmlparser.py | 31 + poky/bitbake/lib/bs4/tests/test_lxml.py | 70 + poky/bitbake/lib/bs4/tests/test_soup.py | 479 + poky/bitbake/lib/bs4/tests/test_tree.py | 2004 ++ poky/bitbake/lib/codegen.py | 576 + poky/bitbake/lib/hashserv/__init__.py | 155 + poky/bitbake/lib/hashserv/client.py | 121 + poky/bitbake/lib/hashserv/server.py | 562 + poky/bitbake/lib/hashserv/tests.py | 433 + poky/bitbake/lib/layerindexlib/README | 28 + poky/bitbake/lib/layerindexlib/__init__.py | 1370 + poky/bitbake/lib/layerindexlib/cooker.py | 334 + poky/bitbake/lib/layerindexlib/plugin.py | 46 + poky/bitbake/lib/layerindexlib/restapi.py | 392 + .../lib/layerindexlib/tests/__init__.py | 0 .../bitbake/lib/layerindexlib/tests/common.py | 33 + .../bitbake/lib/layerindexlib/tests/cooker.py | 110 + .../lib/layerindexlib/tests/layerindexobj.py | 210 + .../lib/layerindexlib/tests/restapi.py | 171 + .../lib/layerindexlib/tests/testdata/README | 11 + .../tests/testdata/layer1/conf/layer.conf | 17 + .../tests/testdata/layer2/conf/layer.conf | 20 + .../tests/testdata/layer3/conf/layer.conf | 19 + .../tests/testdata/layer4/conf/layer.conf | 22 + poky/bitbake/lib/ply/__init__.py | 4 + poky/bitbake/lib/ply/lex.py | 1054 + poky/bitbake/lib/ply/yacc.py | 3282 ++ poky/bitbake/lib/progressbar/LICENSE.txt | 52 + poky/bitbake/lib/progressbar/__init__.py | 51 + poky/bitbake/lib/progressbar/compat.py | 46 + poky/bitbake/lib/progressbar/progressbar.py | 317 + poky/bitbake/lib/progressbar/widgets.py | 393 + poky/bitbake/lib/prserv/__init__.py | 20 + poky/bitbake/lib/prserv/client.py | 50 + poky/bitbake/lib/prserv/db.py | 319 + poky/bitbake/lib/prserv/serv.py | 362 + poky/bitbake/lib/pyinotify.py | 2326 ++ poky/bitbake/lib/simplediff/LICENSE | 22 + poky/bitbake/lib/simplediff/__init__.py | 198 + poky/bitbake/lib/toaster/__init__.py | 0 .../lib/toaster/bldcollector/__init__.py | 0 .../bitbake/lib/toaster/bldcollector/admin.py | 37 + poky/bitbake/lib/toaster/bldcollector/urls.py | 16 + .../bitbake/lib/toaster/bldcollector/views.py | 44 + .../lib/toaster/bldcontrol/__init__.py | 0 poky/bitbake/lib/toaster/bldcontrol/admin.py | 11 + .../lib/toaster/bldcontrol/bbcontroller.py | 126 + .../bldcontrol/localhostbecontroller.py | 516 + .../toaster/bldcontrol/management/__init__.py | 0 .../management/commands/__init__.py | 0 .../management/commands/checksettings.py | 170 + .../management/commands/runbuilds.py | 275 + .../bldcontrol/migrations/0001_initial.py | 113 + .../migrations/0002_auto_20160120_1250.py | 19 + .../migrations/0003_add_cancelling_state.py | 19 + .../migrations/0004_auto_20160523_1446.py | 34 + .../0005_reorder_buildrequest_states.py | 19 + .../0006_brlayer_local_source_dir.py | 19 + .../0007_brlayers_optional_gitinfo.py | 29 + .../migrations/0008_models_bigautofield.py | 48 + .../toaster/bldcontrol/migrations/__init__.py | 0 poky/bitbake/lib/toaster/bldcontrol/models.py | 165 + poky/bitbake/lib/toaster/bldcontrol/views.py | 5 + poky/bitbake/lib/toaster/manage.py | 16 + poky/bitbake/lib/toaster/orm/__init__.py | 0 poky/bitbake/lib/toaster/orm/fixtures/README | 30 + .../fixtures/custom_toaster_append.sh_sample | 49 + .../lib/toaster/orm/fixtures/gen_fixtures.py | 445 + .../lib/toaster/orm/fixtures/oe-core.xml | 113 + .../bitbake/lib/toaster/orm/fixtures/poky.xml | 280 + .../lib/toaster/orm/fixtures/settings.xml | 33 + .../lib/toaster/orm/management/__init__.py | 0 .../orm/management/commands/__init__.py | 0 .../orm/management/commands/lsupdates.py | 290 + .../toaster/orm/migrations/0001_initial.py | 504 + .../orm/migrations/0002_customimagerecipe.py | 24 + .../orm/migrations/0003_customimagepackage.py | 24 + .../toaster/orm/migrations/0004_provides.py | 27 + .../migrations/0005_task_field_separation.py | 48 + .../migrations/0006_add_cancelled_state.py | 19 + .../orm/migrations/0007_auto_20160523_1446.py | 89 + .../0008_refactor_artifact_models.py | 39 + .../0009_target_package_manifest_path.py | 19 + .../0010_delete_layer_source_references.py | 118 + .../orm/migrations/0011_delete_layersource.py | 17 + .../0012_use_release_instead_of_up_branch.py | 62 + .../0013_recipe_parse_progress_fields.py | 24 + .../migrations/0014_allow_empty_buildname.py | 19 + .../migrations/0015_layer_local_source_dir.py | 19 + .../orm/migrations/0016_clone_progress.py | 24 + .../orm/migrations/0017_distro_clone.py | 25 + .../orm/migrations/0018_project_specific.py | 28 + .../toaster/orm/migrations/0019_django_2_2.py | 23 + .../migrations/0020_models_bigautofield.py | 173 + .../lib/toaster/orm/migrations/__init__.py | 0 poky/bitbake/lib/toaster/orm/models.py | 1874 ++ poky/bitbake/lib/toaster/tests/__init__.py | 0 poky/bitbake/lib/toaster/tests/browser/README | 74 + .../lib/toaster/tests/browser/__init__.py | 0 .../toaster/tests/browser/selenium_helpers.py | 21 + .../tests/browser/selenium_helpers_base.py | 213 + .../tests/browser/test_all_builds_page.py | 221 + .../tests/browser/test_all_projects_page.py | 205 + .../tests/browser/test_builddashboard_page.py | 335 + .../test_builddashboard_page_artifacts.py | 210 + .../test_builddashboard_page_recipes.py | 54 + .../browser/test_builddashboard_page_tasks.py | 53 + .../tests/browser/test_js_unit_tests.py | 45 + .../tests/browser/test_landing_page.py | 96 + .../tests/browser/test_layerdetails_page.py | 204 + .../browser/test_most_recent_builds_states.py | 199 + .../browser/test_new_custom_image_page.py | 149 + .../tests/browser/test_new_project_page.py | 101 + .../tests/browser/test_project_builds_page.py | 156 + .../tests/browser/test_project_config_page.py | 217 + .../tests/browser/test_project_page.py | 47 + .../lib/toaster/tests/browser/test_sample.py | 29 + .../toaster/tests/browser/test_task_page.py | 64 + .../tests/browser/test_toastertable_ui.py | 148 + poky/bitbake/lib/toaster/tests/builds/README | 14 + .../lib/toaster/tests/builds/__init__.py | 0 .../lib/toaster/tests/builds/buildtest.py | 157 + .../tests/builds/test_core_image_min.py | 373 + .../lib/toaster/tests/commands/__init__.py | 0 .../toaster/tests/commands/test_loaddata.py | 49 + .../toaster/tests/commands/test_lsupdates.py | 33 + .../toaster/tests/commands/test_runbuilds.py | 76 + poky/bitbake/lib/toaster/tests/db/__init__.py | 0 poky/bitbake/lib/toaster/tests/db/test_db.py | 57 + .../lib/toaster/tests/eventreplay/README | 22 + .../lib/toaster/tests/eventreplay/__init__.py | 85 + .../lib/toaster/tests/functional/README | 0 .../lib/toaster/tests/functional/__init__.py | 0 .../tests/functional/functional_helpers.py | 110 + .../tests/functional/test_functional_basic.py | 230 + .../tests/toaster-tests-requirements.txt | 1 + poky/bitbake/lib/toaster/tests/views/README | 4 + .../lib/toaster/tests/views/__init__.py | 0 .../lib/toaster/tests/views/test_views.py | 528 + .../lib/toaster/toastergui/__init__.py | 0 poky/bitbake/lib/toaster/toastergui/api.py | 1212 + .../lib/toaster/toastergui/buildtables.py | 596 + .../fixtures/toastergui-unittest-data.xml | 459 + .../toastergui/static/css/bootstrap.css | 6760 +++++ .../toastergui/static/css/bootstrap.css.map | 1 + .../toastergui/static/css/bootstrap.min.css | 6 + .../static/css/bootstrap.min.css.map | 1 + .../static/css/bootstrap3-transition.css | 238 + .../toaster/toastergui/static/css/default.css | 369 + .../static/css/font-awesome.min.css | 33 + .../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin 0 -> 418 bytes .../ui-bg_diagonals-thick_20_666666_40x40.png | Bin 0 -> 312 bytes .../images/ui-bg_flat_10_000000_40x100.png | Bin 0 -> 205 bytes .../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin 0 -> 348 bytes .../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 207 bytes .../ui-bg_gloss-wave_35_f6a828_500x100.png | Bin 0 -> 5815 bytes .../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin 0 -> 278 bytes .../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin 0 -> 328 bytes .../css/images/ui-icons_222222_256x240.png | Bin 0 -> 6922 bytes .../css/images/ui-icons_228ef1_256x240.png | Bin 0 -> 4549 bytes .../css/images/ui-icons_ef8c08_256x240.png | Bin 0 -> 4549 bytes .../css/images/ui-icons_ffd27a_256x240.png | Bin 0 -> 4549 bytes .../css/images/ui-icons_ffffff_256x240.png | Bin 0 -> 6299 bytes .../toastergui/static/css/jquery-ui.min.css | 7 + .../static/css/jquery-ui.structure.min.css | 5 + .../static/css/jquery-ui.theme.min.css | 5 + .../static/css/jquery.treetable.css | 28 + .../css/jquery.treetable.theme.default.css | 64 + .../css/jquery.treetable.theme.toaster.css | 38 + .../toastergui/static/css/qunit-1.18.0.css | 1 + .../toaster/toastergui/static/css/screen.css | 28 + .../toastergui/static/fonts/FontAwesome.otf | Bin 0 -> 48748 bytes .../static/fonts/fontawesome-webfont.eot | Bin 0 -> 25395 bytes .../static/fonts/fontawesome-webfont.svg | 284 + .../static/fonts/fontawesome-webfont.ttf | Bin 0 -> 55096 bytes .../static/fonts/fontawesome-webfont.woff | Bin 0 -> 29380 bytes .../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes .../fonts/glyphicons-halflings-regular.svg | 288 + .../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes .../static/html/layer_deps_modal.html | 21 + .../toaster/toastergui/static/img/logo.png | Bin 0 -> 3020 bytes .../toastergui/static/img/toaster_bw.png | Bin 0 -> 140514 bytes .../jquery-treetable-license/GPL-LICENSE.txt | 278 + .../jquery-treetable-license/MIT-LICENSE.txt | 20 + .../static/jquery-treetable-license/README.md | 20 + .../static/jquery.treetable.theme.toaster.css | 66 + .../toaster/toastergui/static/js/.jshintrc | 11 + .../toaster/toastergui/static/js/bootstrap.js | 2363 ++ .../toastergui/static/js/bootstrap.min.js | 7 + .../toastergui/static/js/customrecipe.js | 322 + .../toastergui/static/js/filtersnippet.js | 94 + .../toastergui/static/js/highlight.pack.js | 2 + .../toastergui/static/js/importlayer.js | 455 + .../toastergui/static/js/jquery-2.0.3.min.js | 6 + .../toastergui/static/js/jquery-2.0.3.min.map | 1 + .../toastergui/static/js/jquery-ui.min.js | 7 + .../toastergui/static/js/jquery.cookie.js | 117 + .../toastergui/static/js/jquery.treetable.js | 620 + .../toastergui/static/js/jsrender.min.js | 4 + .../toaster/toastergui/static/js/layerBtn.js | 95 + .../toastergui/static/js/layerDepsModal.js | 98 + .../toastergui/static/js/layerdetails.js | 522 + .../toastergui/static/js/libtoaster.js | 841 + .../toastergui/static/js/mrbsection.js | 152 + .../static/js/newcustomimage_modal.js | 206 + .../toastergui/static/js/projectpage.js | 390 + .../toastergui/static/js/projecttopbar.js | 119 + .../toastergui/static/js/qunit-1.18.0.js | 347 + .../toastergui/static/js/recipedetails.js | 51 + .../lib/toaster/toastergui/static/js/table.js | 857 + .../toastergui/static/js/tests/test.js | 177 + .../toastergui/static/js/typeahead.jquery.js | 1551 + .../static/js/ui-bootstrap-tpls-0.11.0.js | 10 + .../static/js/ui-bootstrap-tpls-0.11.0.min.js | 10 + .../lib/toaster/toastergui/tablefilter.py | 279 + poky/bitbake/lib/toaster/toastergui/tables.py | 1613 + .../toaster/toastergui/templates/base.html | 144 + .../toastergui/templates/base_specific.html | 128 + .../templates/basebuilddetailpage.html | 31 + .../toastergui/templates/basebuildpage.html | 234 + .../templates/baseprojectbuildspage.html | 15 + .../toastergui/templates/baseprojectpage.html | 52 + .../templates/baseprojectspecificpage.html | 48 + .../templates/basetable_bottom.html | 94 + .../toastergui/templates/basetable_top.html | 256 + .../templates/basetable_top_layers.html | 5 + .../toaster/toastergui/templates/bfile.html | 24 + .../toastergui/templates/brtargets.html | 20 + .../toastergui/templates/builddashboard.html | 319 + .../templates/buildinfo-toastertable.html | 25 + .../templates/builds-toastertable.html | 52 + .../toastergui/templates/configuration.html | 85 + .../toastergui/templates/configvars.html | 145 + .../toastergui/templates/cpuusage.html | 4 + .../toastergui/templates/customise_btn.html | 19 + .../toastergui/templates/customrecipe.html | 268 + .../templates/detail_pagination_bottom.html | 57 + .../templates/detail_search_header.html | 72 + .../templates/detail_sorted_header.html | 25 + .../toaster/toastergui/templates/dirinfo.html | 245 + .../toaster/toastergui/templates/diskio.html | 4 + .../toastergui/templates/distro_btn.html | 20 + .../templates/editcustomimage_modal.html | 88 + .../toastergui/templates/filtersnippet.html | 72 + .../templates/generic-toastertable-page.html | 17 + .../toaster/toastergui/templates/health.html | 6 + .../toastergui/templates/importlayer.html | 170 + .../toastergui/templates/js-unit-tests.html | 47 + .../toaster/toastergui/templates/landing.html | 67 + .../templates/landing_specific.html | 50 + .../toastergui/templates/layer_btn.html | 26 + .../toastergui/templates/layerdetails.html | 374 + .../toastergui/templates/machine_btn.html | 21 + .../toastergui/templates/mrb_section.html | 301 + .../toastergui/templates/newcustomimage.html | 21 + .../templates/newcustomimage_modal.html | 60 + .../toastergui/templates/newproject.html | 137 + .../templates/newproject_specific.html | 95 + .../templates/package_built_dependencies.html | 99 + .../templates/package_built_detail.html | 65 + .../templates/package_detail_base.html | 169 + .../package_included_dependencies.html | 110 + .../templates/package_included_detail.html | 44 + ...package_included_reverse_dependencies.html | 50 + .../templates/package_included_tabs.html | 33 + .../toastergui/templates/pkg_add_rm_btn.html | 34 + .../toaster/toastergui/templates/project.html | 164 + .../templates/project_specific.html | 162 + .../templates/project_specific_topbar.html | 80 + .../templates/projectbuilds-toastertable.html | 65 + .../toastergui/templates/projectbuilds.html | 118 + .../toastergui/templates/projectconf.html | 1045 + .../templates/projects-toastertable.html | 42 + .../toastergui/templates/projecttopbar.html | 79 + .../toaster/toastergui/templates/recipe.html | 320 + .../toastergui/templates/recipe_add_btn.html | 23 + .../toastergui/templates/recipe_btn.html | 23 + .../toastergui/templates/recipe_packages.html | 135 + .../toastergui/templates/recipedetails.html | 175 + .../templates/snippets/gitrev_popover.html | 8 + .../snippets/pkg_dependencies_popover.html | 38 + .../snippets/pkg_revdependencies_popover.html | 38 + .../toastergui/templates/tablesort.html | 38 + .../toaster/toastergui/templates/target.html | 56 + .../toaster/toastergui/templates/task.html | 348 + .../templates/toastertable-filter.html | 24 + .../templates/toastertable-simple.html | 100 + .../toastergui/templates/toastertable.html | 125 + .../templates/unavailable_artifact.html | 18 + .../toastergui/templatetags/__init__.py | 0 .../templatetags/field_values_filter.py | 22 + .../objects_to_dictionaries_filter.py | 38 + .../templatetags/project_url_tag.py | 38 + .../toastergui/templatetags/projecttags.py | 286 + .../lib/toaster/toastergui/typeaheads.py | 201 + poky/bitbake/lib/toaster/toastergui/urls.py | 256 + poky/bitbake/lib/toaster/toastergui/views.py | 1935 ++ .../bitbake/lib/toaster/toastergui/widgets.py | 575 + .../lib/toaster/toastermain/__init__.py | 0 .../toastermain/management/__init__.py | 0 .../management/commands/__init__.py | 0 .../management/commands/builddelete.py | 60 + .../management/commands/buildimport.py | 579 + .../management/commands/buildslist.py | 16 + .../management/commands/checksocket.py | 57 + .../toastermain/management/commands/perf.py | 62 + .../lib/toaster/toastermain/settings.py | 358 + .../settings_production_example.py | 45 + .../lib/toaster/toastermain/settings_test.py | 28 + poky/bitbake/lib/toaster/toastermain/urls.py | 80 + poky/bitbake/lib/toaster/toastermain/wsgi.py | 36 + poky/bitbake/toaster-requirements.txt | 3 + poky/contrib/artwork/oe.svg | 80 + .../git-hooks/sendemail-validate.sample | 78 + poky/documentation/.gitignore | 7 + poky/documentation/Makefile | 61 + poky/documentation/Pipfile | 14 + poky/documentation/README | 389 + poky/documentation/bitbake.rst | 19 + poky/documentation/boilerplate.rst | 18 + .../figures/bypqs-title.png | Bin 0 -> 14312 bytes .../figures/yocto-project-transp.png | Bin 0 -> 8626 bytes .../brief-yoctoprojectqs/index.rst | 454 + poky/documentation/bsp-guide/bsp.rst | 1509 + .../bsp-guide/figures/bsp-dev-flow.png | Bin 0 -> 52657 bytes .../bsp-guide/figures/bsp-title.png | Bin 0 -> 17388 bytes poky/documentation/bsp-guide/index.rst | 15 + poky/documentation/conf.py | 168 + .../contributor-guide/identify-component.rst | 31 + .../documentation/contributor-guide/index.rst | 26 + .../contributor-guide/recipe-style-guide.rst | 399 + .../contributor-guide/report-defect.rst | 67 + .../contributor-guide/submit-changes.rst | 754 + poky/documentation/dev-manual/bmaptool.rst | 59 + .../dev-manual/build-quality.rst | 409 + poky/documentation/dev-manual/building.rst | 939 + .../dev-manual/custom-distribution.rst | 109 + ...ustom-template-configuration-directory.rst | 72 + .../dev-manual/customizing-images.rst | 223 + poky/documentation/dev-manual/debugging.rst | 1245 + .../dev-manual/development-shell.rst | 82 + .../dev-manual/device-manager.rst | 74 + poky/documentation/dev-manual/disk-space.rst | 61 + .../efficiently-fetching-sources.rst | 68 + .../dev-manual/error-reporting-tool.rst | 84 + .../documentation/dev-manual/external-scm.rst | 67 + .../dev-manual/external-toolchain.rst | 40 + .../dev-manual/figures/bitbake-build-flow.png | Bin 0 -> 50338 bytes .../dev-manual/figures/buildhistory-web.png | Bin 0 -> 49966 bytes .../dev-manual/figures/buildhistory.png | Bin 0 -> 44900 bytes .../figures/cute-files-npm-example.png | Bin 0 -> 26248 bytes .../dev-manual/figures/dev-title.png | Bin 0 -> 15950 bytes .../dev-manual/figures/multiconfig_files.png | Bin 0 -> 18611 bytes .../dev-manual/figures/recipe-workflow.png | Bin 0 -> 48276 bytes .../dev-manual/gobject-introspection.rst | 155 + poky/documentation/dev-manual/index.rst | 51 + .../documentation/dev-manual/init-manager.rst | 162 + poky/documentation/dev-manual/intro.rst | 59 + poky/documentation/dev-manual/layers.rst | 839 + poky/documentation/dev-manual/libraries.rst | 267 + poky/documentation/dev-manual/licenses.rst | 539 + poky/documentation/dev-manual/new-machine.rst | 118 + poky/documentation/dev-manual/new-recipe.rst | 1635 + poky/documentation/dev-manual/packages.rst | 1238 + .../dev-manual/prebuilt-libraries.rst | 209 + .../dev-manual/python-development-shell.rst | 50 + poky/documentation/dev-manual/qemu.rst | 455 + poky/documentation/dev-manual/quilt.rst | 89 + .../dev-manual/read-only-rootfs.rst | 89 + .../dev-manual/runtime-testing.rst | 598 + poky/documentation/dev-manual/sbom.rst | 72 + .../dev-manual/securing-images.rst | 156 + .../dev-manual/speeding-up-build.rst | 109 + poky/documentation/dev-manual/start.rst | 878 + .../dev-manual/temporary-source-code.rst | 66 + .../dev-manual/upgrading-recipes.rst | 397 + .../dev-manual/vulnerabilities.rst | 214 + poky/documentation/dev-manual/wayland.rst | 90 + poky/documentation/dev-manual/wic.rst | 729 + poky/documentation/dev-manual/x32-psabi.rst | 54 + .../figures/yp-how-it-works-new-diagram.png | Bin 0 -> 219234 bytes poky/documentation/genindex.rst | 3 + poky/documentation/index.rst | 53 + poky/documentation/kernel-dev/advanced.rst | 919 + poky/documentation/kernel-dev/common.rst | 1956 ++ .../kernel-dev/concepts-appx.rst | 420 + poky/documentation/kernel-dev/faq.rst | 76 + .../figures/kernel-architecture-overview.png | Bin 0 -> 40748 bytes .../kernel-dev/figures/kernel-dev-flow.png | Bin 0 -> 53197 bytes .../kernel-dev/figures/kernel-dev-title.png | Bin 0 -> 13453 bytes .../figures/kernel-overview-2-generic.png | Bin 0 -> 49230 bytes poky/documentation/kernel-dev/index.rst | 20 + poky/documentation/kernel-dev/intro.rst | 178 + poky/documentation/kernel-dev/maint-appx.rst | 234 + poky/documentation/migration-guides/index.rst | 36 + .../migration-guides/migration-1.3.rst | 194 + .../migration-guides/migration-1.4.rst | 235 + .../migration-guides/migration-1.5.rst | 351 + .../migration-guides/migration-1.6.rst | 413 + .../migration-guides/migration-1.7.rst | 223 + .../migration-guides/migration-1.8.rst | 183 + .../migration-guides/migration-2.0.rst | 278 + .../migration-guides/migration-2.1.rst | 432 + .../migration-guides/migration-2.2.rst | 457 + .../migration-guides/migration-2.3.rst | 516 + .../migration-guides/migration-2.4.rst | 327 + .../migration-guides/migration-2.5.rst | 308 + .../migration-guides/migration-2.6.rst | 451 + .../migration-guides/migration-2.7.rst | 180 + .../migration-guides/migration-3.0.rst | 319 + .../migration-guides/migration-3.1.rst | 275 + .../migration-guides/migration-3.2.rst | 313 + .../migration-guides/migration-3.3.rst | 168 + .../migration-guides/migration-3.4.rst | 273 + .../migration-guides/migration-4.0.rst | 270 + .../migration-guides/migration-general.rst | 72 + .../migration-guides/release-3.4.rst | 12 + .../migration-guides/release-4.0.rst | 21 + .../migration-guides/release-notes-3.4.1.rst | 252 + .../migration-guides/release-notes-3.4.2.rst | 240 + .../migration-guides/release-notes-3.4.3.rst | 197 + .../migration-guides/release-notes-3.4.4.rst | 155 + .../migration-guides/release-notes-3.4.rst | 800 + .../migration-guides/release-notes-4.0.1.rst | 248 + .../migration-guides/release-notes-4.0.10.rst | 180 + .../migration-guides/release-notes-4.0.11.rst | 214 + .../migration-guides/release-notes-4.0.12.rst | 277 + .../migration-guides/release-notes-4.0.2.rst | 296 + .../migration-guides/release-notes-4.0.3.rst | 314 + .../migration-guides/release-notes-4.0.4.rst | 299 + .../migration-guides/release-notes-4.0.5.rst | 196 + .../migration-guides/release-notes-4.0.6.rst | 313 + .../migration-guides/release-notes-4.0.7.rst | 242 + .../migration-guides/release-notes-4.0.8.rst | 217 + .../migration-guides/release-notes-4.0.9.rst | 247 + .../migration-guides/release-notes-4.0.rst | 933 + .../overview-manual/concepts.rst | 2223 ++ .../development-environment.rst | 658 + .../figures/YP-flow-diagram.png | Bin 0 -> 190715 bytes .../analysis-for-package-splitting.png | Bin 0 -> 68434 bytes .../configuration-compile-autoreconf.png | Bin 0 -> 70877 bytes .../figures/cross-development-toolchains.png | Bin 0 -> 82633 bytes .../figures/image-generation.png | Bin 0 -> 123348 bytes .../overview-manual/figures/images.png | Bin 0 -> 32674 bytes .../figures/index-downloads.png | Bin 0 -> 18142 bytes .../figures/key-dev-elements.png | Bin 0 -> 20424 bytes .../overview-manual/figures/layer-input.png | Bin 0 -> 62330 bytes .../figures/overview-manual-title.png | Bin 0 -> 17387 bytes .../overview-manual/figures/package-feeds.png | Bin 0 -> 42239 bytes .../overview-manual/figures/patching.png | Bin 0 -> 57414 bytes .../figures/poky-reference-distribution.png | Bin 0 -> 23784 bytes .../figures/sdk-generation.png | Bin 0 -> 60574 bytes .../overview-manual/figures/sdk.png | Bin 0 -> 49804 bytes .../figures/source-fetching.png | Bin 0 -> 46896 bytes .../overview-manual/figures/source-input.png | Bin 0 -> 51170 bytes .../overview-manual/figures/source-repos.png | Bin 0 -> 298757 bytes .../figures/user-configuration.png | Bin 0 -> 51171 bytes .../overview-manual/figures/yp-download.png | Bin 0 -> 82939 bytes poky/documentation/overview-manual/index.rst | 18 + poky/documentation/overview-manual/intro.rst | 69 + .../overview-manual/svg/git-workflow.svg | 1205 + .../overview-manual/yp-intro.rst | 875 + poky/documentation/poky.yaml.in | 48 + poky/documentation/profile-manual/arch.rst | 29 + .../documentation/profile-manual/examples.rst | 24 + .../figures/kernelshark-all.png | Bin 0 -> 89316 bytes .../figures/kernelshark-choose-events.png | Bin 0 -> 57372 bytes .../figures/kernelshark-i915-display.png | Bin 0 -> 98765 bytes .../figures/kernelshark-output-display.png | Bin 0 -> 204454 bytes .../figures/oprofileui-busybox.png | Bin 0 -> 98334 bytes .../figures/oprofileui-copy-to-user.png | Bin 0 -> 105661 bytes .../figures/oprofileui-downloading.png | Bin 0 -> 37301 bytes .../figures/oprofileui-processes.png | Bin 0 -> 95741 bytes .../figures/perf-probe-do_fork-profile.png | Bin 0 -> 59078 bytes .../figures/perf-report-cycles-u.png | Bin 0 -> 171368 bytes .../figures/perf-systemwide-libc.png | Bin 0 -> 136826 bytes .../figures/perf-systemwide.png | Bin 0 -> 140616 bytes .../perf-wget-busybox-annotate-menu.png | Bin 0 -> 22364 bytes .../perf-wget-busybox-annotate-udhcpc.png | Bin 0 -> 171529 bytes .../figures/perf-wget-busybox-debuginfo.png | Bin 0 -> 174971 bytes .../perf-wget-busybox-dso-zoom-menu.png | Bin 0 -> 23735 bytes .../figures/perf-wget-busybox-dso-zoom.png | Bin 0 -> 101685 bytes .../perf-wget-busybox-expanded-stripped.png | Bin 0 -> 95140 bytes .../figures/perf-wget-flat-stripped.png | Bin 0 -> 178919 bytes ...get-g-copy-from-user-expanded-stripped.png | Bin 0 -> 138550 bytes ...wget-g-copy-to-user-expanded-debuginfo.png | Bin 0 -> 102790 bytes ...er-expanded-stripped-unresolved-hidden.png | Bin 0 -> 110101 bytes ...-wget-g-copy-to-user-expanded-stripped.png | Bin 0 -> 102812 bytes .../profile-manual/figures/profile-title.png | Bin 0 -> 12799 bytes .../figures/pybootchartgui-linux-yocto.png | Bin 0 -> 36366 bytes .../pychart-linux-yocto-rpm-nostrip.png | Bin 0 -> 98053 bytes .../figures/pychart-linux-yocto-rpm.png | Bin 0 -> 81053 bytes .../figures/sched-wakeup-profile.png | Bin 0 -> 123810 bytes .../figures/sysprof-callers.png | Bin 0 -> 145043 bytes .../figures/sysprof-copy-from-user.png | Bin 0 -> 132976 bytes .../figures/sysprof-copy-to-user.png | Bin 0 -> 132074 bytes poky/documentation/profile-manual/index.rst | 18 + poky/documentation/profile-manual/intro.rst | 75 + poky/documentation/profile-manual/usage.rst | 2579 ++ poky/documentation/ref-manual/TODO | 11 + poky/documentation/ref-manual/classes.rst | 3135 ++ .../ref-manual/devtool-reference.rst | 621 + poky/documentation/ref-manual/faq.rst | 458 + poky/documentation/ref-manual/features.rst | 355 + .../figures/build-workspace-directory.png | Bin 0 -> 29627 bytes .../ref-manual/figures/define-generic.png | Bin 0 -> 623 bytes .../ref-manual/figures/poky-title.png | Bin 0 -> 11592 bytes poky/documentation/ref-manual/images.rst | 135 + poky/documentation/ref-manual/index.rst | 29 + poky/documentation/ref-manual/kickstart.rst | 229 + poky/documentation/ref-manual/qa-checks.rst | 808 + .../ref-manual/release-process.rst | 225 + poky/documentation/ref-manual/resources.rst | 195 + poky/documentation/ref-manual/structure.rst | 861 + .../documentation/ref-manual/svg/releases.svg | 1744 ++ .../ref-manual/system-requirements.rst | 444 + poky/documentation/ref-manual/tasks.rst | 794 + poky/documentation/ref-manual/terms.rst | 492 + poky/documentation/ref-manual/variables.rst | 9078 ++++++ poky/documentation/ref-manual/varlocality.rst | 166 + poky/documentation/releases.rst | 245 + .../appendix-customizing-standard.rst | 34 + .../sdk-manual/appendix-customizing.rst | 358 + .../sdk-manual/appendix-obtain.rst | 311 + poky/documentation/sdk-manual/extensible.rst | 1299 + .../sdk-manual/figures/sdk-autotools-flow.png | Bin 0 -> 50443 bytes .../figures/sdk-devtool-add-flow.png | Bin 0 -> 181699 bytes .../figures/sdk-devtool-modify-flow.png | Bin 0 -> 171676 bytes .../figures/sdk-devtool-upgrade-flow.png | Bin 0 -> 138917 bytes .../sdk-manual/figures/sdk-environment.png | Bin 0 -> 42098 bytes ...sdk-installed-extensible-sdk-directory.png | Bin 0 -> 66753 bytes .../sdk-installed-standard-sdk-directory.png | Bin 0 -> 39099 bytes .../sdk-manual/figures/sdk-makefile-flow.png | Bin 0 -> 47197 bytes .../sdk-manual/figures/sdk-title.png | Bin 0 -> 31039 bytes poky/documentation/sdk-manual/index.rst | 21 + poky/documentation/sdk-manual/intro.rst | 208 + poky/documentation/sdk-manual/using.rst | 150 + .../sdk-manual/working-projects.rst | 397 + poky/documentation/set_versions.py | 228 + .../sphinx-static/YoctoProject_Logo_RGB.jpg | Bin 0 -> 49299 bytes .../sphinx-static/switchers.js.in | 250 + .../sphinx-static/theme_overrides.css | 164 + poky/documentation/sphinx/yocto-vars.py | 86 + poky/documentation/standards.md | 103 + poky/documentation/template/Vera.ttf | Bin 0 -> 65932 bytes poky/documentation/template/VeraMoBd.ttf | Bin 0 -> 49052 bytes poky/documentation/template/VeraMono.ttf | Bin 0 -> 49224 bytes poky/documentation/template/draft.png | Bin 0 -> 24847 bytes poky/documentation/template/ohand-color.svg | 150 + .../template/poky-ref-manual.png | Bin 0 -> 32145 bytes poky/documentation/template/poky.svg | 163 + poky/documentation/template/template.svg | 1160 + .../template/yocto-project-qs.png | Bin 0 -> 17829 bytes .../test-manual/figures/ab-test-cluster.png | Bin 0 -> 18684 bytes .../test-manual/figures/test-manual-title.png | Bin 0 -> 15382 bytes poky/documentation/test-manual/index.rst | 19 + poky/documentation/test-manual/intro.rst | 528 + .../test-manual/reproducible-builds.rst | 146 + .../test-manual/test-process.rst | 101 + .../test-manual/understand-autobuilder.rst | 285 + .../test-manual/yocto-project-compatible.rst | 129 + .../toaster-manual/figures/add-variable.png | Bin 0 -> 110712 bytes .../toaster-manual/figures/bash-oecore.png | Bin 0 -> 138198 bytes .../figures/compatible-layers.png | Bin 0 -> 163081 bytes .../toaster-manual/figures/hosted-service.png | Bin 0 -> 13552 bytes .../toaster-manual/figures/import-layer.png | Bin 0 -> 139108 bytes .../toaster-manual/figures/new-project.png | Bin 0 -> 73760 bytes .../toaster-manual/figures/set-variable.png | Bin 0 -> 111430 bytes .../figures/simple-configuration.png | Bin 0 -> 10789 bytes .../toaster-manual/figures/toaster-title.png | Bin 0 -> 9277 bytes .../toaster-manual/figures/variable-added.png | Bin 0 -> 112163 bytes poky/documentation/toaster-manual/index.rst | 18 + poky/documentation/toaster-manual/intro.rst | 101 + .../toaster-manual/reference.rst | 636 + .../toaster-manual/setup-and-use.rst | 634 + poky/documentation/toaster-manual/start.rst | 51 + .../tools/update-documentation-conf | 158 + .../transitioning-to-a-custom-environment.rst | 116 + poky/documentation/what-i-wish-id-known.rst | 225 + poky/meta-poky/README.poky.md | 84 + poky/meta-poky/classes/poky-sanity.bbclass | 46 + poky/meta-poky/conf/bblayers.conf.sample | 12 + poky/meta-poky/conf/conf-notes.txt | 19 + .../conf/distro/include/gcsections.inc | 34 + .../include/poky-distro-alt-test-config.inc | 8 + .../include/poky-floating-revisions.inc | 54 + .../distro/include/poky-world-exclude.inc | 4 + poky/meta-poky/conf/distro/poky-altcfg.conf | 15 + poky/meta-poky/conf/distro/poky-bleeding.conf | 11 + poky/meta-poky/conf/distro/poky-tiny.conf | 124 + poky/meta-poky/conf/distro/poky.conf | 61 + poky/meta-poky/conf/layer.conf | 20 + poky/meta-poky/conf/local.conf.sample | 276 + .../meta-poky/conf/local.conf.sample.extended | 388 + poky/meta-poky/conf/site.conf.sample | 33 + .../busybox/busybox/poky-tiny/defconfig | 1194 + .../recipes-core/busybox/busybox_%.bbappend | 2 + .../psplash/files/psplash-poky-img.h | 914 + .../recipes-core/psplash/psplash_git.bbappend | 2 + .../recipes-core/tiny-init/files/init | 26 + .../tiny-init/files/rc.local.sample | 23 + .../recipes-core/tiny-init/tiny-init.bb | 31 + poky/meta-selftest/README | 3 + .../classes/test-mkimage-wrapper.bbclass | 19 + .../meta-selftest/classes/test_events.bbclass | 16 + poky/meta-selftest/conf/layer.conf | 12 + .../conf/machine/qemux86copy.conf | 3 + .../conf/multiconfig/muslmc.conf | 2 + .../files/signing/key.passphrase | 1 + poky/meta-selftest/files/signing/key.pub | 30 + poky/meta-selftest/files/signing/key.secret | 59 + poky/meta-selftest/files/static-group | 27 + poky/meta-selftest/files/static-passwd | 19 + poky/meta-selftest/lib/devtool/__init__.py | 0 poky/meta-selftest/lib/devtool/bbpath.py | 44 + poky/meta-selftest/lib/devtool/test.py | 11 + .../lib/oeqa/runtime/cases/dnf_runtime.py | 50 + .../lib/oeqa/runtime/cases/selftest.json | 6 + .../lib/oeqa/runtime/cases/selftest.py | 31 + .../lib/oeqa/runtime/cases/virgl.py | 18 + .../lib/oeqa/selftest/cases/external-layer.py | 16 + poky/meta-selftest/lib/pseudo_pyc_test1.py | 1 + poky/meta-selftest/lib/pseudo_pyc_test2.py | 1 + poky/meta-selftest/lib/recipetool/bbpath.py | 41 + .../python/python-async-test.inc | 16 + .../python/python3-async-test_0.6.2.bb | 2 + .../recipes-test/aspell/aspell_0.0.0.1.bb | 34 + .../aspell/aspell_0.60.8.bbappend | 2 + .../base-files/base-files_%.bbappend | 2 + .../container-image-testpkg.bb | 8 + .../container-image/container-test-image.bb | 8 + .../meta-selftest/recipes-test/delay/delay.bb | 12 + .../devtool/devtool-patch-overrides.bb | 8 + .../devtool-patch-overrides/qemuarm/arm.patch | 5 + .../devtool-patch-overrides/qemux86/x86.patch | 5 + .../devtool/devtool-patch-overrides/source | 1 + .../devtool/devtool-test-ignored.bb | 9 + .../devtool-test-ignored.patch | 7 + .../devtool-test-ignored.patch.expected | 16 + .../devtool-test-ignored.tar.gz | Bin 0 -> 205 bytes .../devtool/devtool-test-local/file1 | 1 + .../devtool/devtool-test-local/file2 | 1 + .../devtool/devtool-test-local/file3 | 1 + .../devtool/devtool-test-local_6.03.bb | 18 + .../devtool/devtool-test-localonly.bb | 10 + .../devtool/devtool-test-localonly/file1 | 1 + .../devtool/devtool-test-localonly/file2 | 1 + .../devtool/devtool-test-localonly/file3 | 1 + .../devtool/devtool-test-long-filename.bb | 9 + ...nly-if-devtool-lets-me-to-do-it-corr.patch | 7 + ...vtool-lets-me-to-do-it-corr.patch.expected | 16 + .../devtool-test-long-filename.tar.gz | Bin 0 -> 180 bytes .../devtool/devtool-test-patch-gz.bb | 18 + .../devtool-test-patch-gz/readme.patch.gz | Bin 0 -> 449 bytes .../devtool/devtool-test-subdir.bb | 9 + .../devtool-test-subdir.tar.gz | Bin 0 -> 181 bytes .../devtool/devtool-test-subdir/testfile | 1 + ...d-a-note-line-to-the-quick-reference.patch | 25 + .../backported.patch | 37 + .../devtool/devtool-upgrade-test1_1.5.3.bb | 22 + .../devtool-upgrade-test1_1.5.3.bb.upgraded | 19 + .../devtool/devtool-upgrade-test2_git.bb | 22 + .../devtool-upgrade-test2_git.bb.upgraded | 21 + .../recipes-test/emptytest/emptytest.bb | 7 + .../meta-selftest/recipes-test/error/error.bb | 10 + .../recipes-test/fortran/files/hello.f95 | 5 + .../fortran/fortran-helloworld.bb | 24 + .../git-submodule-test/git-submodule-test.bb | 24 + .../recipes-test/gitrepotest/gitrepotest.bb | 16 + .../gitrepotest/0001-testpatch.patch | 9 + .../gitunpackoffline/gitunpackoffline-fail.bb | 16 + .../gitunpackoffline/gitunpackoffline.bb | 5 + .../recipes-test/images/error-image.bb | 8 + .../recipes-test/images/oe-selftest-image.bb | 10 + .../recipes-test/images/test-empty-image.bb | 6 + .../recipes-test/images/wic-image-minimal.bb | 18 + .../recipes-test/images/wic-image-minimal.wks | 10 + .../license/incompatible-license-alias.bb | 5 + .../license/incompatible-license.bb | 5 + .../license/incompatible-licenses.bb | 5 + .../license/incompatible-nonspdx-license.bb | 5 + .../recipes-test/logging-test/logging-test.bb | 34 + .../recipes-test/m4/m4_%.bbappend | 2 + .../man-db/files/0001-Test-patch-here.patch | 22 + .../recipes-test/man-db/man-db_%.bbappend | 2 + .../multiconfig-image-packager_0.1.bb | 28 + .../multiconfig/multiconfig-test-parse.bb | 11 + .../nopackages/selftest-nopackages.bb | 6 + .../overlayfs-user/overlayfs-user.bb | 17 + .../recipes-test/poison/poison.bb | 16 + .../recipes-test/postinst/postinst_1.0.bb | 72 + .../pseudo-pyc-test/pseudo-pyc-test.bb | 15 + .../recipetool/files/add-file.patch | 8 + .../recipes-test/recipetool/files/file1 | 2 + .../recipetool/files/installscript.sh | 3 + .../files/selftest-replaceme-inst-func | 1 + .../files/selftest-replaceme-inst-globfile | 1 + .../selftest-replaceme-inst-todir-globfile | 1 + .../recipetool/files/selftest-replaceme-orig | 1 + .../recipetool/files/selftest-replaceme-todir | 1 + .../recipetool/files/subdir/fileinsubdir | 1 + .../selftest-recipetool-appendfile.bb | 42 + .../recipeutils/recipeutils-test.inc | 5 + .../recipeutils/recipeutils-test/anotherfile | 0 .../recipeutils/recipeutils-test/somefile | 0 .../recipeutils/recipeutils-test_1.2.bb | 13 + .../selftest-chown/selftest-chown.bb | 30 + .../selftest-ed/selftest-ed_0.5.bb | 24 + .../selftest-ed/selftest-ed_1.14.1.bb | 38 + .../selftest-hardlink/selftest-hardlink.bb | 30 + .../selftest-hardlink/gdb.sh | 8 + .../selftest-hardlink/hello.c | 5 + .../sysroot-test/sysroot-test-arch1_1.0.bb | 14 + .../sysroot-test/sysroot-test-arch2_1.0.bb | 14 + .../sysroot-test/sysroot-test_1.0.bb | 6 + .../systemd-machine-units_%.bbappend | 2 + .../xcursor-transparent-theme_%.bbappend | 2 + poky/meta-selftest/wic/overlayfs_etc.wks.in | 4 + .../wic/test_biosplusefi_plugin.wks | 6 + poky/meta-selftest/wic/test_efi_plugin.wks | 6 + poky/meta-selftest/wic/test_empty_plugin.wks | 4 + .../wic/test_rawcopy_plugin.wks.in | 6 + poky/meta-selftest/wic/wictestdisk.wks | 7 + poky/meta-skeleton/README.skeleton | 4 + poky/meta-skeleton/conf/layer.conf | 17 + poky/meta-skeleton/conf/multilib-example.conf | 13 + .../meta-skeleton/conf/multilib-example2.conf | 13 + .../baremetal-helloworld_git.bb | 53 + .../busybox/busybox/no_rfkill.cfg | 1 + .../recipes-core/busybox/busybox_%.bbappend | 13 + .../recipes-kernel/hello-mod/files/COPYING | 340 + .../recipes-kernel/hello-mod/files/Makefile | 14 + .../recipes-kernel/hello-mod/files/hello.c | 35 + .../recipes-kernel/hello-mod/hello-mod_0.1.bb | 18 + .../linux/linux-yocto-custom.bb | 71 + .../0001-linux-version-tweak.patch | 29 + .../linux/linux-yocto-custom/feature.scc | 1 + .../linux/linux-yocto-custom/smp.cfg | 1 + .../images/core-image-multilib-example.bb | 12 + .../hello-autotools/hello_2.10.bb | 9 + .../hello-single/files/helloworld.c | 8 + .../hello-single/hello_1.0.bb | 17 + .../recipes-skeleton/libxpm/libxpm_3.5.6.bb | 14 + .../service/service/COPYRIGHT | 15 + .../recipes-skeleton/service/service/skeleton | 193 + .../service/service/skeleton_test.c | 12 + .../recipes-skeleton/service/service_0.1.bb | 32 + .../useradd/useradd-example.bb | 77 + .../useradd/useradd-example/file1 | 0 .../useradd/useradd-example/file2 | 0 .../useradd/useradd-example/file3 | 0 .../useradd/useradd-example/file4 | 0 poky/meta-stargazer/COPYING.MIT | 17 + poky/meta-stargazer/README | 41 + poky/meta-stargazer/conf/layer.conf | 13 + .../files/wpa_supplicant-nl80211-wlan0.conf | 4 + .../wpa-supplicant/wpa-supplicant_%.bbappend | 14 + .../libraries/files/libflutter_pty.so | Bin 0 -> 24032 bytes .../libraries/files/libperiphery_arm.so | Bin 0 -> 66052 bytes .../libraries/files/libperiphery_arm64.so | Bin 0 -> 81168 bytes .../libraries/flutter-libraries_1.00.bb | 18 + .../systemd-conf/files/en.network | 10 + .../systemd-conf/files/eth.network | 10 + .../systemd-conf/files/wlan.network | 10 + .../systemd-conf/systemd-conf_%.bbappend | 20 + .../systemd/files/flutter.service | 13 + .../systemd/flutter-service_1.00.bb | 13 + .../recipes-core/systemd/systemd_%.bbappend | 2 + .../recipes-example/example/example_0.1.bb | 13 + poky/meta-yocto-bsp/README.hardware.md | 265 + poky/meta-yocto-bsp/conf/layer.conf | 12 + .../conf/machine/beaglebone-yocto.conf | 60 + .../conf/machine/edgerouter.conf | 26 + .../conf/machine/genericx86-64.conf | 11 + .../conf/machine/genericx86.conf | 11 + .../machine/include/genericx86-common.inc | 27 + .../lib/oeqa/controllers/__init__.py | 0 .../lib/oeqa/controllers/beaglebonetarget.py | 97 + .../lib/oeqa/controllers/edgeroutertarget.py | 89 + .../lib/oeqa/controllers/grubtarget.py | 70 + .../lib/oeqa/selftest/cases/systemd_boot.py | 71 + .../formfactor/beaglebone-yocto/machconfig | 3 + .../formfactor/genericx86-64/machconfig | 6 + .../formfactor/genericx86/machconfig | 6 + .../formfactor/formfactor_0.0.bbappend | 1 + .../gma500-gfx-check/gma500-gfx-check.conf | 2 + .../gma500-gfx-check/gma500-gfx-check.sh | 15 + .../gma500-gfx-check/gma500-gfx-check_1.0.bb | 18 + .../beaglebone-yocto/xorg.conf | 21 + .../genericx86-64/xorg.conf | 0 .../xserver-xf86-config/genericx86/xorg.conf | 0 .../xserver-xf86-config_0.1.bbappend | 1 + .../linux/linux-yocto-dev.bbappend | 13 + .../linux/linux-yocto_5.10.bbappend | 23 + .../linux/linux-yocto_5.15.bbappend | 23 + poky/meta-yocto-bsp/wic/beaglebone-yocto.wks | 7 + poky/meta-yocto-bsp/wic/edgerouter.wks | 4 + poky/meta-yocto-bsp/wic/genericx86.wks.in | 7 + poky/meta/COPYING.MIT | 17 + poky/meta/classes/allarch.bbclass | 65 + poky/meta/classes/archiver.bbclass | 617 + poky/meta/classes/autotools-brokensep.bbclass | 5 + poky/meta/classes/autotools.bbclass | 254 + poky/meta/classes/baremetal-image.bbclass | 133 + poky/meta/classes/base.bbclass | 785 + poky/meta/classes/bash-completion.bbclass | 7 + poky/meta/classes/bin_package.bbclass | 40 + poky/meta/classes/binconfig-disabled.bbclass | 30 + poky/meta/classes/binconfig.bbclass | 54 + poky/meta/classes/buildhistory.bbclass | 1024 + poky/meta/classes/buildstats-summary.bbclass | 40 + poky/meta/classes/buildstats.bbclass | 295 + poky/meta/classes/cargo.bbclass | 89 + poky/meta/classes/cargo_common.bbclass | 128 + poky/meta/classes/ccache.bbclass | 70 + poky/meta/classes/ccmake.bbclass | 97 + poky/meta/classes/chrpath.bbclass | 134 + poky/meta/classes/cmake.bbclass | 222 + poky/meta/classes/cml1.bbclass | 101 + poky/meta/classes/compress_doc.bbclass | 263 + poky/meta/classes/copyleft_compliance.bbclass | 64 + poky/meta/classes/copyleft_filter.bbclass | 79 + poky/meta/classes/core-image.bbclass | 83 + poky/meta/classes/cpan-base.bbclass | 27 + poky/meta/classes/cpan.bbclass | 65 + poky/meta/classes/cpan_build.bbclass | 41 + poky/meta/classes/create-spdx.bbclass | 1024 + poky/meta/classes/cross-canadian.bbclass | 196 + poky/meta/classes/cross.bbclass | 97 + poky/meta/classes/crosssdk.bbclass | 51 + poky/meta/classes/cve-check.bbclass | 592 + poky/meta/classes/debian.bbclass | 150 + poky/meta/classes/deploy.bbclass | 12 + poky/meta/classes/devicetree.bbclass | 148 + poky/meta/classes/devshell.bbclass | 158 + poky/meta/classes/devtool-source.bbclass | 235 + poky/meta/classes/devupstream.bbclass | 55 + .../classes/distro_features_check.bbclass | 7 + poky/meta/classes/distrooverrides.bbclass | 32 + poky/meta/classes/dos2unix.bbclass | 14 + poky/meta/classes/externalsrc.bbclass | 270 + poky/meta/classes/extrausers.bbclass | 71 + poky/meta/classes/features_check.bbclass | 54 + poky/meta/classes/fontcache.bbclass | 58 + poky/meta/classes/fs-uuid.bbclass | 24 + poky/meta/classes/gconf.bbclass | 71 + poky/meta/classes/gettext.bbclass | 22 + poky/meta/classes/gi-docgen.bbclass | 24 + poky/meta/classes/gio-module-cache.bbclass | 38 + poky/meta/classes/glide.bbclass | 9 + poky/meta/classes/gnomebase.bbclass | 31 + poky/meta/classes/go-mod.bbclass | 20 + poky/meta/classes/go-ptest.bbclass | 54 + poky/meta/classes/go.bbclass | 160 + poky/meta/classes/goarch.bbclass | 116 + .../gobject-introspection-data.bbclass | 12 + .../classes/gobject-introspection.bbclass | 55 + poky/meta/classes/grub-efi-cfg.bbclass | 123 + poky/meta/classes/grub-efi.bbclass | 8 + poky/meta/classes/gsettings.bbclass | 42 + poky/meta/classes/gtk-doc.bbclass | 83 + poky/meta/classes/gtk-icon-cache.bbclass | 89 + poky/meta/classes/gtk-immodules-cache.bbclass | 76 + poky/meta/classes/icecc.bbclass | 454 + .../meta/classes/image-artifact-names.bbclass | 22 + poky/meta/classes/image-buildinfo.bbclass | 85 + poky/meta/classes/image-combined-dbg.bbclass | 9 + poky/meta/classes/image-container.bbclass | 21 + poky/meta/classes/image-live.bbclass | 264 + .../classes/image-postinst-intercepts.bbclass | 23 + poky/meta/classes/image.bbclass | 678 + poky/meta/classes/image_types.bbclass | 346 + poky/meta/classes/image_types_wic.bbclass | 184 + poky/meta/classes/insane.bbclass | 1442 + poky/meta/classes/kernel-arch.bbclass | 68 + .../classes/kernel-artifact-names.bbclass | 31 + poky/meta/classes/kernel-devicetree.bbclass | 125 + poky/meta/classes/kernel-fitimage.bbclass | 820 + poky/meta/classes/kernel-grub.bbclass | 105 + poky/meta/classes/kernel-module-split.bbclass | 191 + poky/meta/classes/kernel-uboot.bbclass | 43 + poky/meta/classes/kernel-uimage.bbclass | 35 + poky/meta/classes/kernel-yocto.bbclass | 726 + poky/meta/classes/kernel.bbclass | 839 + poky/meta/classes/kernelsrc.bbclass | 10 + poky/meta/classes/lib_package.bbclass | 7 + poky/meta/classes/libc-package.bbclass | 385 + poky/meta/classes/license.bbclass | 420 + poky/meta/classes/license_image.bbclass | 289 + poky/meta/classes/linux-dummy.bbclass | 26 + poky/meta/classes/linux-kernel-base.bbclass | 45 + poky/meta/classes/linuxloader.bbclass | 76 + poky/meta/classes/live-vm-common.bbclass | 94 + poky/meta/classes/logging.bbclass | 101 + poky/meta/classes/manpages.bbclass | 45 + poky/meta/classes/mcextend.bbclass | 16 + poky/meta/classes/meson-routines.bbclass | 51 + poky/meta/classes/meson.bbclass | 184 + poky/meta/classes/metadata_scm.bbclass | 44 + poky/meta/classes/migrate_localcount.bbclass | 46 + poky/meta/classes/mime-xdg.bbclass | 74 + poky/meta/classes/mime.bbclass | 70 + poky/meta/classes/mirrors.bbclass | 89 + poky/meta/classes/module-base.bbclass | 21 + poky/meta/classes/module.bbclass | 74 + poky/meta/classes/multilib.bbclass | 238 + poky/meta/classes/multilib_global.bbclass | 223 + poky/meta/classes/multilib_header.bbclass | 52 + poky/meta/classes/multilib_script.bbclass | 34 + poky/meta/classes/native.bbclass | 228 + poky/meta/classes/nativesdk.bbclass | 118 + poky/meta/classes/nopackages.bbclass | 13 + poky/meta/classes/npm.bbclass | 340 + poky/meta/classes/oelint.bbclass | 84 + poky/meta/classes/overlayfs-etc.bbclass | 79 + poky/meta/classes/overlayfs.bbclass | 135 + poky/meta/classes/own-mirrors.bbclass | 15 + poky/meta/classes/package.bbclass | 2574 ++ poky/meta/classes/package_deb.bbclass | 327 + poky/meta/classes/package_ipk.bbclass | 286 + poky/meta/classes/package_pkgdata.bbclass | 167 + poky/meta/classes/package_rpm.bbclass | 749 + poky/meta/classes/package_tar.bbclass | 71 + poky/meta/classes/packagedata.bbclass | 34 + poky/meta/classes/packagegroup.bbclass | 61 + poky/meta/classes/patch.bbclass | 169 + poky/meta/classes/perl-version.bbclass | 66 + poky/meta/classes/perlnative.bbclass | 3 + poky/meta/classes/pixbufcache.bbclass | 63 + poky/meta/classes/pkgconfig.bbclass | 2 + poky/meta/classes/populate_sdk.bbclass | 7 + poky/meta/classes/populate_sdk_base.bbclass | 365 + poky/meta/classes/populate_sdk_ext.bbclass | 838 + poky/meta/classes/prexport.bbclass | 59 + poky/meta/classes/primport.bbclass | 21 + poky/meta/classes/ptest-gnome.bbclass | 8 + poky/meta/classes/ptest-perl.bbclass | 30 + poky/meta/classes/ptest.bbclass | 132 + poky/meta/classes/pypi.bbclass | 28 + poky/meta/classes/python3-dir.bbclass | 5 + poky/meta/classes/python3native.bbclass | 24 + poky/meta/classes/python3targetconfig.bbclass | 29 + poky/meta/classes/python_flit_core.bbclass | 5 + poky/meta/classes/python_pep517.bbclass | 56 + poky/meta/classes/python_poetry_core.bbclass | 5 + poky/meta/classes/python_pyo3.bbclass | 30 + .../classes/python_setuptools3_rust.bbclass | 11 + .../python_setuptools_build_meta.bbclass | 5 + poky/meta/classes/qemu.bbclass | 71 + poky/meta/classes/qemuboot.bbclass | 166 + poky/meta/classes/recipe_sanity.bbclass | 149 + poky/meta/classes/relative_symlinks.bbclass | 5 + poky/meta/classes/relocatable.bbclass | 20 + poky/meta/classes/remove-libtool.bbclass | 11 + poky/meta/classes/report-error.bbclass | 122 + poky/meta/classes/rm_work.bbclass | 188 + .../classes/rm_work_and_downloads.bbclass | 33 + poky/meta/classes/rootfs-postcommands.bbclass | 428 + poky/meta/classes/rootfs_deb.bbclass | 39 + poky/meta/classes/rootfs_ipk.bbclass | 38 + poky/meta/classes/rootfs_rpm.bbclass | 39 + poky/meta/classes/rootfsdebugfiles.bbclass | 41 + poky/meta/classes/rust-bin.bbclass | 149 + poky/meta/classes/rust-common.bbclass | 189 + poky/meta/classes/rust.bbclass | 45 + poky/meta/classes/sanity.bbclass | 1024 + poky/meta/classes/scons.bbclass | 34 + poky/meta/classes/setuptools3-base.bbclass | 31 + poky/meta/classes/setuptools3.bbclass | 33 + poky/meta/classes/setuptools3_legacy.bbclass | 78 + poky/meta/classes/sign_ipk.bbclass | 52 + poky/meta/classes/sign_package_feed.bbclass | 47 + poky/meta/classes/sign_rpm.bbclass | 72 + poky/meta/classes/siteconfig.bbclass | 33 + poky/meta/classes/siteinfo.bbclass | 226 + poky/meta/classes/sstate.bbclass | 1352 + poky/meta/classes/staging.bbclass | 688 + poky/meta/classes/syslinux.bbclass | 194 + poky/meta/classes/systemd-boot-cfg.bbclass | 71 + poky/meta/classes/systemd-boot.bbclass | 35 + poky/meta/classes/systemd.bbclass | 234 + poky/meta/classes/terminal.bbclass | 109 + poky/meta/classes/testexport.bbclass | 182 + poky/meta/classes/testimage.bbclass | 505 + poky/meta/classes/testsdk.bbclass | 52 + poky/meta/classes/texinfo.bbclass | 18 + poky/meta/classes/toaster.bbclass | 388 + .../classes/toolchain-scripts-base.bbclass | 11 + poky/meta/classes/toolchain-scripts.bbclass | 208 + poky/meta/classes/typecheck.bbclass | 12 + poky/meta/classes/uboot-config.bbclass | 129 + .../classes/uboot-extlinux-config.bbclass | 158 + poky/meta/classes/uboot-sign.bbclass | 499 + poky/meta/classes/uninative.bbclass | 173 + poky/meta/classes/update-alternatives.bbclass | 327 + poky/meta/classes/update-rc.d.bbclass | 123 + .../classes/upstream-version-is-even.bbclass | 5 + poky/meta/classes/useradd-staticids.bbclass | 307 + poky/meta/classes/useradd.bbclass | 259 + poky/meta/classes/useradd_base.bbclass | 165 + poky/meta/classes/utility-tasks.bbclass | 54 + poky/meta/classes/utils.bbclass | 327 + poky/meta/classes/vala.bbclass | 24 + poky/meta/classes/waf.bbclass | 75 + poky/meta/classes/xmlcatalog.bbclass | 26 + poky/meta/classes/yocto-check-layer.bbclass | 16 + poky/meta/conf/abi_version.conf | 15 + poky/meta/conf/bitbake.conf | 966 + poky/meta/conf/ccache.conf | 2 + poky/meta/conf/conf-notes.txt | 19 + poky/meta/conf/distro/defaultsetup.conf | 21 + .../distro/include/cve-extra-exclusions.inc | 118 + .../distro/include/default-distrovars.inc | 55 + .../conf/distro/include/default-providers.inc | 61 + .../conf/distro/include/default-versions.inc | 3 + .../meta/conf/distro/include/distro_alias.inc | 387 + .../include/init-manager-mdev-busybox.inc | 7 + .../conf/distro/include/init-manager-none.inc | 3 + .../distro/include/init-manager-systemd.inc | 7 + .../distro/include/init-manager-sysvinit.inc | 6 + poky/meta/conf/distro/include/lto.inc | 51 + poky/meta/conf/distro/include/maintainers.inc | 874 + .../conf/distro/include/no-static-libs.inc | 30 + .../distro/include/ptest-packagelists.inc | 130 + .../distro/include/rust_security_flags.inc | 7 + .../conf/distro/include/security_flags.inc | 71 + .../conf/distro/include/tclibc-baremetal.inc | 39 + .../meta/conf/distro/include/tclibc-glibc.inc | 30 + poky/meta/conf/distro/include/tclibc-musl.inc | 31 + .../conf/distro/include/tclibc-newlib.inc | 47 + .../conf/distro/include/tcmode-default.inc | 96 + .../conf/distro/include/uninative-flags.inc | 7 + .../conf/distro/include/yocto-uninative.inc | 15 + poky/meta/conf/documentation.conf | 467 + poky/meta/conf/image-uefi.conf | 21 + poky/meta/conf/layer.conf | 125 + poky/meta/conf/licenses.conf | 189 + poky/meta/conf/machine-sdk/aarch64.conf | 2 + poky/meta/conf/machine-sdk/i586.conf | 4 + poky/meta/conf/machine-sdk/i686.conf | 3 + poky/meta/conf/machine-sdk/ppc64.conf | 2 + poky/meta/conf/machine-sdk/ppc64le.conf | 2 + poky/meta/conf/machine-sdk/x86_64.conf | 3 + poky/meta/conf/machine/include/README | 100 + poky/meta/conf/machine/include/arm/README | 40 + .../conf/machine/include/arm/arch-arm.inc | 20 + .../conf/machine/include/arm/arch-arm64.inc | 44 + .../conf/machine/include/arm/arch-armv4.inc | 34 + .../machine/include/arm/arch-armv5-dsp.inc | 53 + .../conf/machine/include/arm/arch-armv5.inc | 57 + .../conf/machine/include/arm/arch-armv6.inc | 50 + .../conf/machine/include/arm/arch-armv6m.inc | 19 + .../conf/machine/include/arm/arch-armv7a.inc | 167 + .../conf/machine/include/arm/arch-armv7em.inc | 17 + .../conf/machine/include/arm/arch-armv7m.inc | 17 + .../conf/machine/include/arm/arch-armv7r.inc | 22 + .../conf/machine/include/arm/arch-armv7ve.inc | 164 + .../include/arm/arch-armv8-1m-main.inc | 18 + .../machine/include/arm/arch-armv8-2a.inc | 19 + .../machine/include/arm/arch-armv8-5a.inc | 19 + .../conf/machine/include/arm/arch-armv8a.inc | 28 + .../machine/include/arm/arch-armv8m-base.inc | 17 + .../machine/include/arm/arch-armv8m-main.inc | 28 + .../conf/machine/include/arm/arch-armv8r.inc | 37 + .../conf/machine/include/arm/arch-armv9a.inc | 28 + .../include/arm/armv4/tune-arm920t.inc | 13 + .../include/arm/armv4/tune-arm9tdmi.inc | 13 + .../machine/include/arm/armv4/tune-ep9312.inc | 12 + .../include/arm/armv4/tune-strongarm1100.inc | 12 + .../include/arm/armv5/tune-arm926ejs.inc | 13 + .../machine/include/arm/armv5/tune-iwmmxt.inc | 15 + .../machine/include/arm/armv5/tune-xscale.inc | 19 + .../include/arm/armv6/tune-arm1136jf-s.inc | 16 + .../include/arm/armv6/tune-arm1176jz-s.inc | 17 + .../include/arm/armv6m/tune-cortexm0.inc | 11 + .../include/arm/armv6m/tune-cortexm0plus.inc | 11 + .../include/arm/armv6m/tune-cortexm1.inc | 14 + .../include/arm/armv7a/tune-cortexa15.inc | 51 + .../include/arm/armv7a/tune-cortexa17.inc | 51 + .../include/arm/armv7a/tune-cortexa5.inc | 51 + .../include/arm/armv7a/tune-cortexa7.inc | 51 + .../include/arm/armv7a/tune-cortexa8.inc | 39 + .../include/arm/armv7a/tune-cortexa9.inc | 55 + .../include/arm/armv7m/tune-cortexm3.inc | 14 + .../include/arm/armv7m/tune-cortexm4.inc | 14 + .../include/arm/armv7m/tune-cortexm7.inc | 14 + .../include/arm/armv7r/tune-cortexr4.inc | 14 + .../include/arm/armv7r/tune-cortexr4f.inc | 14 + .../include/arm/armv7r/tune-cortexr5.inc | 14 + .../include/arm/armv7r/tune-cortexr7.inc | 14 + .../include/arm/armv7r/tune-cortexr8.inc | 14 + .../include/arm/armv8-1m/tune-cortexm55.inc | 14 + .../include/arm/armv8-2a/tune-cortexa55.inc | 13 + .../include/arm/armv8-2a/tune-cortexa65.inc | 16 + .../include/arm/armv8-2a/tune-cortexa65ae.inc | 16 + .../arm/armv8-2a/tune-cortexa75-cortexa55.inc | 20 + .../include/arm/armv8-2a/tune-cortexa75.inc | 16 + .../arm/armv8-2a/tune-cortexa76-cortexa55.inc | 20 + .../include/arm/armv8-2a/tune-cortexa76.inc | 16 + .../include/arm/armv8-2a/tune-cortexa76ae.inc | 16 + .../include/arm/armv8-2a/tune-cortexa77.inc | 16 + .../include/arm/armv8-2a/tune-neoversee1.inc | 16 + .../include/arm/armv8-2a/tune-neoversen1.inc | 17 + .../include/arm/armv8-2a/tune-octeontx2.inc | 13 + .../include/arm/armv8-m/tune-cortexm23.inc | 14 + .../include/arm/armv8-m/tune-cortexm33.inc | 17 + .../include/arm/armv8-m/tune-cortexm35p.inc | 17 + .../include/arm/armv8a/tune-cortexa32.inc | 17 + .../include/arm/armv8a/tune-cortexa34.inc | 20 + .../include/arm/armv8a/tune-cortexa35.inc | 17 + .../include/arm/armv8a/tune-cortexa53.inc | 17 + .../arm/armv8a/tune-cortexa57-cortexa53.inc | 14 + .../include/arm/armv8a/tune-cortexa57.inc | 17 + .../arm/armv8a/tune-cortexa72-cortexa53.inc | 19 + .../include/arm/armv8a/tune-cortexa72.inc | 17 + .../arm/armv8a/tune-cortexa73-cortexa35.inc | 21 + .../arm/armv8a/tune-cortexa73-cortexa53.inc | 19 + .../include/arm/armv8a/tune-cortexa73.inc | 20 + .../include/arm/armv8a/tune-thunderx.inc | 19 + .../include/arm/armv8r/tune-cortexr52.inc | 14 + .../include/arm/armv9a/tune-neoversen2.inc | 20 + .../machine/include/arm/feature-arm-crc.inc | 4 + .../include/arm/feature-arm-crypto.inc | 5 + .../machine/include/arm/feature-arm-dsp.inc | 3 + .../machine/include/arm/feature-arm-idiv.inc | 2 + .../machine/include/arm/feature-arm-neon.inc | 26 + .../machine/include/arm/feature-arm-simd.inc | 5 + .../machine/include/arm/feature-arm-thumb.inc | 33 + .../machine/include/arm/feature-arm-vfp.inc | 15 + .../conf/machine/include/m68k/arch-m68k.inc | 8 + .../machine/include/m68k/tune-mcf5441x.inc | 13 + .../include/microblaze/arch-microblaze.inc | 62 + .../microblaze/feature-microblaze-math.inc | 33 + .../feature-microblaze-versions.inc | 69 + .../include/microblaze/tune-microblaze.inc | 8 + poky/meta/conf/machine/include/mips/README | 56 + .../conf/machine/include/mips/arch-mips.inc | 151 + .../include/mips/feature-mips-mips16e.inc | 17 + .../machine/include/mips/qemuboot-mips.inc | 8 + .../machine/include/mips/tune-mips-24k.inc | 51 + .../machine/include/mips/tune-mips-74k.inc | 37 + .../conf/machine/include/mips/tune-mips32.inc | 29 + .../machine/include/mips/tune-mips32r2.inc | 29 + .../machine/include/mips/tune-mips32r6.inc | 29 + .../conf/machine/include/mips/tune-mips64.inc | 3 + .../machine/include/mips/tune-mips64r2.inc | 84 + .../machine/include/mips/tune-mips64r6.inc | 58 + .../conf/machine/include/mips/tune-octeon.inc | 32 + poky/meta/conf/machine/include/powerpc/README | 17 + .../machine/include/powerpc/arch-powerpc.inc | 51 + .../include/powerpc/arch-powerpc64.inc | 23 + .../machine/include/powerpc/tune-power5.inc | 24 + .../machine/include/powerpc/tune-power6.inc | 24 + .../machine/include/powerpc/tune-power7.inc | 24 + .../machine/include/powerpc/tune-power9.inc | 31 + .../machine/include/powerpc/tune-ppc476.inc | 14 + .../machine/include/powerpc/tune-ppc603e.inc | 11 + .../machine/include/powerpc/tune-ppc7400.inc | 11 + .../include/powerpc/tune-ppce300c2.inc | 11 + .../include/powerpc/tune-ppce300c3.inc | 20 + .../machine/include/powerpc/tune-ppce500.inc | 20 + .../include/powerpc/tune-ppce500mc.inc | 14 + .../include/powerpc/tune-ppce500v2.inc | 20 + .../machine/include/powerpc/tune-ppce5500.inc | 20 + .../machine/include/powerpc/tune-ppce6500.inc | 20 + poky/meta/conf/machine/include/qemu.inc | 31 + .../conf/machine/include/riscv/arch-riscv.inc | 13 + .../conf/machine/include/riscv/qemuriscv.inc | 39 + .../conf/machine/include/riscv/tune-riscv.inc | 33 + poky/meta/conf/machine/include/sh/README | 11 + poky/meta/conf/machine/include/sh/arch-sh.inc | 9 + .../meta/conf/machine/include/sh/tune-sh3.inc | 17 + .../meta/conf/machine/include/sh/tune-sh4.inc | 34 + poky/meta/conf/machine/include/soc-family.inc | 3 + poky/meta/conf/machine/include/x86/README | 24 + .../conf/machine/include/x86/arch-x86.inc | 54 + .../conf/machine/include/x86/qemuboot-x86.inc | 14 + .../conf/machine/include/x86/tune-atom.inc | 2 + .../meta/conf/machine/include/x86/tune-c3.inc | 12 + .../conf/machine/include/x86/tune-core2.inc | 38 + .../conf/machine/include/x86/tune-corei7.inc | 38 + .../machine/include/x86/tune-i586-nlp.inc | 19 + .../conf/machine/include/x86/tune-i586.inc | 14 + .../conf/machine/include/x86/tune-i686.inc | 27 + .../conf/machine/include/x86/x86-base.inc | 46 + poky/meta/conf/machine/qemuarm.conf | 34 + poky/meta/conf/machine/qemuarm64.conf | 31 + poky/meta/conf/machine/qemuarmv5.conf | 21 + poky/meta/conf/machine/qemumips.conf | 18 + poky/meta/conf/machine/qemumips64.conf | 18 + poky/meta/conf/machine/qemuppc.conf | 20 + poky/meta/conf/machine/qemuppc64.conf | 22 + poky/meta/conf/machine/qemuriscv32.conf | 16 + poky/meta/conf/machine/qemuriscv64.conf | 11 + poky/meta/conf/machine/qemux86-64.conf | 45 + poky/meta/conf/machine/qemux86.conf | 42 + poky/meta/conf/migrate_localcount.conf | 1 + poky/meta/conf/multiconfig/default.conf | 0 poky/meta/conf/multilib.conf | 35 + poky/meta/conf/prexport.conf | 1 + poky/meta/conf/primport.conf | 1 + poky/meta/conf/sanity.conf | 16 + poky/meta/files/common-licenses/0BSD | 5 + poky/meta/files/common-licenses/AAL | 51 + poky/meta/files/common-licenses/ADSL | 1 + poky/meta/files/common-licenses/AFL-1.1 | 27 + poky/meta/files/common-licenses/AFL-1.2 | 123 + poky/meta/files/common-licenses/AFL-2.0 | 48 + poky/meta/files/common-licenses/AFL-2.1 | 50 + poky/meta/files/common-licenses/AFL-3.0 | 27 + poky/meta/files/common-licenses/AGPL-1.0-only | 86 + .../files/common-licenses/AGPL-1.0-or-later | 86 + poky/meta/files/common-licenses/AGPL-3.0-only | 661 + .../files/common-licenses/AGPL-3.0-or-later | 613 + poky/meta/files/common-licenses/AMDPLPA | 20 + poky/meta/files/common-licenses/AML | 9 + poky/meta/files/common-licenses/AMPAS | 13 + poky/meta/files/common-licenses/ANTLR-PD | 32 + .../files/common-licenses/ANTLR-PD-fallback | 7 + poky/meta/files/common-licenses/APAFML | 3 + poky/meta/files/common-licenses/APL-1.0 | 218 + poky/meta/files/common-licenses/APSL-1.0 | 372 + poky/meta/files/common-licenses/APSL-1.1 | 374 + poky/meta/files/common-licenses/APSL-1.2 | 105 + poky/meta/files/common-licenses/APSL-2.0 | 102 + poky/meta/files/common-licenses/Abstyles | 11 + poky/meta/files/common-licenses/Adobe | 14 + poky/meta/files/common-licenses/Adobe-2006 | 12 + poky/meta/files/common-licenses/Adobe-Glyph | 10 + poky/meta/files/common-licenses/Afmparse | 10 + poky/meta/files/common-licenses/Aladdin | 62 + poky/meta/files/common-licenses/Apache-1.0 | 61 + poky/meta/files/common-licenses/Apache-1.1 | 60 + poky/meta/files/common-licenses/Apache-2.0 | 204 + .../Apache-2.0-with-LLVM-exception | 219 + poky/meta/files/common-licenses/Artistic-1.0 | 50 + .../files/common-licenses/Artistic-1.0-Perl | 51 + .../files/common-licenses/Artistic-1.0-cl8 | 51 + poky/meta/files/common-licenses/Artistic-2.0 | 203 + poky/meta/files/common-licenses/BSD-1-Clause | 9 + poky/meta/files/common-licenses/BSD-2-Clause | 10 + .../files/common-licenses/BSD-2-Clause-Patent | 47 + .../files/common-licenses/BSD-2-Clause-Views | 11 + poky/meta/files/common-licenses/BSD-3-Clause | 11 + .../common-licenses/BSD-3-Clause-Attribution | 11 + .../files/common-licenses/BSD-3-Clause-Clear | 32 + .../files/common-licenses/BSD-3-Clause-LBNL | 12 + .../common-licenses/BSD-3-Clause-Modification | 35 + .../BSD-3-Clause-No-Military-License | 16 + .../BSD-3-Clause-No-Nuclear-License | 14 + .../BSD-3-Clause-No-Nuclear-License-2014 | 16 + .../BSD-3-Clause-No-Nuclear-Warranty | 14 + .../common-licenses/BSD-3-Clause-Open-MPI | 34 + poky/meta/files/common-licenses/BSD-4-Clause | 29 + .../common-licenses/BSD-4-Clause-Shortened | 13 + .../files/common-licenses/BSD-4-Clause-UC | 15 + .../meta/files/common-licenses/BSD-Protection | 53 + .../files/common-licenses/BSD-Source-Code | 10 + poky/meta/files/common-licenses/BSL-1.0 | 25 + poky/meta/files/common-licenses/BUSL-1.1 | 72 + poky/meta/files/common-licenses/Bahyph | 11 + poky/meta/files/common-licenses/Barr | 1 + poky/meta/files/common-licenses/Beerware | 1 + .../meta/files/common-licenses/BitTorrent-1.0 | 330 + .../meta/files/common-licenses/BitTorrent-1.1 | 137 + poky/meta/files/common-licenses/BitstreamVera | 160 + poky/meta/files/common-licenses/BlueOak-1.0.0 | 55 + poky/meta/files/common-licenses/Borceux | 19 + poky/meta/files/common-licenses/C-UDA-1.0 | 47 + poky/meta/files/common-licenses/CAL-1.0 | 354 + .../CAL-1.0-Combined-Work-Exception | 354 + poky/meta/files/common-licenses/CATOSL-1.1 | 116 + poky/meta/files/common-licenses/CC-BY-1.0 | 60 + poky/meta/files/common-licenses/CC-BY-2.0 | 63 + poky/meta/files/common-licenses/CC-BY-2.5 | 63 + poky/meta/files/common-licenses/CC-BY-2.5-AU | 112 + poky/meta/files/common-licenses/CC-BY-3.0 | 70 + poky/meta/files/common-licenses/CC-BY-3.0-AT | 111 + poky/meta/files/common-licenses/CC-BY-3.0-DE | 109 + poky/meta/files/common-licenses/CC-BY-3.0-NL | 97 + poky/meta/files/common-licenses/CC-BY-3.0-US | 83 + poky/meta/files/common-licenses/CC-BY-4.0 | 156 + poky/meta/files/common-licenses/CC-BY-NC-1.0 | 63 + poky/meta/files/common-licenses/CC-BY-NC-2.0 | 66 + poky/meta/files/common-licenses/CC-BY-NC-2.5 | 66 + poky/meta/files/common-licenses/CC-BY-NC-3.0 | 72 + .../files/common-licenses/CC-BY-NC-3.0-DE | 110 + poky/meta/files/common-licenses/CC-BY-NC-4.0 | 158 + .../files/common-licenses/CC-BY-NC-ND-1.0 | 5 + .../files/common-licenses/CC-BY-NC-ND-2.0 | 63 + .../files/common-licenses/CC-BY-NC-ND-2.5 | 63 + .../files/common-licenses/CC-BY-NC-ND-3.0 | 69 + .../files/common-licenses/CC-BY-NC-ND-3.0-DE | 101 + .../files/common-licenses/CC-BY-NC-ND-3.0-IGO | 99 + .../files/common-licenses/CC-BY-NC-ND-4.0 | 155 + .../files/common-licenses/CC-BY-NC-SA-1.0 | 64 + .../files/common-licenses/CC-BY-NC-SA-2.0 | 68 + .../files/common-licenses/CC-BY-NC-SA-2.0-FR | 93 + .../files/common-licenses/CC-BY-NC-SA-2.0-UK | 149 + .../files/common-licenses/CC-BY-NC-SA-2.5 | 68 + .../files/common-licenses/CC-BY-NC-SA-3.0 | 74 + .../files/common-licenses/CC-BY-NC-SA-3.0-DE | 126 + .../files/common-licenses/CC-BY-NC-SA-3.0-IGO | 105 + .../files/common-licenses/CC-BY-NC-SA-4.0 | 170 + poky/meta/files/common-licenses/CC-BY-ND-1.0 | 59 + poky/meta/files/common-licenses/CC-BY-ND-2.0 | 62 + poky/meta/files/common-licenses/CC-BY-ND-2.5 | 62 + poky/meta/files/common-licenses/CC-BY-ND-3.0 | 68 + .../files/common-licenses/CC-BY-ND-3.0-DE | 101 + poky/meta/files/common-licenses/CC-BY-ND-4.0 | 154 + poky/meta/files/common-licenses/CC-BY-SA-1.0 | 63 + poky/meta/files/common-licenses/CC-BY-SA-2.0 | 67 + .../files/common-licenses/CC-BY-SA-2.0-UK | 147 + .../files/common-licenses/CC-BY-SA-2.1-JP | 83 + poky/meta/files/common-licenses/CC-BY-SA-2.5 | 67 + poky/meta/files/common-licenses/CC-BY-SA-3.0 | 74 + .../files/common-licenses/CC-BY-SA-3.0-AT | 139 + .../files/common-licenses/CC-BY-SA-3.0-DE | 136 + poky/meta/files/common-licenses/CC-BY-SA-4.0 | 428 + poky/meta/files/common-licenses/CC-PDDC | 8 + poky/meta/files/common-licenses/CC0-1.0 | 32 + poky/meta/files/common-licenses/CDDL-1.0 | 131 + poky/meta/files/common-licenses/CDDL-1.1 | 123 + poky/meta/files/common-licenses/CDL-1.0 | 53 + .../files/common-licenses/CDLA-Permissive-1.0 | 85 + .../files/common-licenses/CDLA-Permissive-2.0 | 35 + .../files/common-licenses/CDLA-Sharing-1.0 | 89 + poky/meta/files/common-licenses/CECILL-1.0 | 242 + poky/meta/files/common-licenses/CECILL-1.1 | 229 + poky/meta/files/common-licenses/CECILL-2.0 | 243 + poky/meta/files/common-licenses/CECILL-2.1 | 518 + poky/meta/files/common-licenses/CECILL-B | 247 + poky/meta/files/common-licenses/CECILL-C | 241 + poky/meta/files/common-licenses/CERN-OHL-1.1 | 47 + poky/meta/files/common-licenses/CERN-OHL-1.2 | 49 + .../meta/files/common-licenses/CERN-OHL-P-2.0 | 199 + .../meta/files/common-licenses/CERN-OHL-S-2.0 | 289 + .../meta/files/common-licenses/CERN-OHL-W-2.0 | 310 + poky/meta/files/common-licenses/CNRI-Jython | 12 + poky/meta/files/common-licenses/CNRI-Python | 25 + .../CNRI-Python-GPL-Compatible | 23 + poky/meta/files/common-licenses/CPAL-1.0 | 109 + poky/meta/files/common-licenses/CPL-1.0 | 215 + poky/meta/files/common-licenses/CPOL-1.02 | 98 + poky/meta/files/common-licenses/CUA-OPL-1.0 | 471 + poky/meta/files/common-licenses/Caldera | 25 + poky/meta/files/common-licenses/ClArtistic | 138 + poky/meta/files/common-licenses/Condor-1.1 | 40 + poky/meta/files/common-licenses/Crossword | 5 + .../meta/files/common-licenses/CrystalStacker | 7 + poky/meta/files/common-licenses/Cube | 17 + poky/meta/files/common-licenses/D-FSL-1.0 | 147 + poky/meta/files/common-licenses/DOC | 15 + poky/meta/files/common-licenses/DRL-1.0 | 12 + poky/meta/files/common-licenses/DSDP | 18 + poky/meta/files/common-licenses/DSSSL | 49 + poky/meta/files/common-licenses/Dotseqn | 5 + poky/meta/files/common-licenses/ECL-1.0 | 55 + poky/meta/files/common-licenses/ECL-2.0 | 99 + poky/meta/files/common-licenses/EDL-1.0 | 13 + poky/meta/files/common-licenses/EFL-1.0 | 25 + poky/meta/files/common-licenses/EFL-2.0 | 12 + poky/meta/files/common-licenses/EPICS | 32 + poky/meta/files/common-licenses/EPL-1.0 | 72 + poky/meta/files/common-licenses/EPL-2.0 | 277 + poky/meta/files/common-licenses/EUDatagrid | 29 + poky/meta/files/common-licenses/EUPL-1.0 | 184 + poky/meta/files/common-licenses/EUPL-1.1 | 204 + poky/meta/files/common-licenses/EUPL-1.2 | 190 + poky/meta/files/common-licenses/Entessa | 20 + poky/meta/files/common-licenses/ErlPL-1.1 | 288 + poky/meta/files/common-licenses/Eurosym | 18 + poky/meta/files/common-licenses/FSF-Unlimited | 4 + poky/meta/files/common-licenses/FSFAP | 1 + poky/meta/files/common-licenses/FSFUL | 3 + poky/meta/files/common-licenses/FSFULLR | 3 + poky/meta/files/common-licenses/FTL | 79 + poky/meta/files/common-licenses/Fair | 11 + poky/meta/files/common-licenses/Frameworx-1.0 | 69 + poky/meta/files/common-licenses/FreeBSD-DOC | 23 + poky/meta/files/common-licenses/FreeImage | 117 + poky/meta/files/common-licenses/GD | 24 + poky/meta/files/common-licenses/GFDL-1.1 | 355 + .../common-licenses/GFDL-1.1-invariants-only | 119 + .../GFDL-1.1-invariants-or-later | 119 + .../GFDL-1.1-no-invariants-only | 119 + .../GFDL-1.1-no-invariants-or-later | 119 + poky/meta/files/common-licenses/GFDL-1.1-only | 119 + .../files/common-licenses/GFDL-1.1-or-later | 119 + poky/meta/files/common-licenses/GFDL-1.2 | 399 + .../common-licenses/GFDL-1.2-invariants-only | 130 + .../GFDL-1.2-invariants-or-later | 130 + .../GFDL-1.2-no-invariants-only | 130 + .../GFDL-1.2-no-invariants-or-later | 130 + poky/meta/files/common-licenses/GFDL-1.2-only | 130 + .../files/common-licenses/GFDL-1.2-or-later | 130 + poky/meta/files/common-licenses/GFDL-1.3 | 453 + .../common-licenses/GFDL-1.3-invariants-only | 149 + .../GFDL-1.3-invariants-or-later | 149 + .../GFDL-1.3-no-invariants-only | 149 + .../GFDL-1.3-no-invariants-or-later | 149 + poky/meta/files/common-licenses/GFDL-1.3-only | 149 + .../files/common-licenses/GFDL-1.3-or-later | 149 + poky/meta/files/common-licenses/GL2PS | 13 + poky/meta/files/common-licenses/GLWTPL | 25 + poky/meta/files/common-licenses/GPL-1.0-only | 252 + .../files/common-licenses/GPL-1.0-or-later | 232 + .../GPL-2-with-bison-exception | 7 + poky/meta/files/common-licenses/GPL-2.0-only | 132 + .../files/common-licenses/GPL-2.0-or-later | 319 + .../GPL-2.0-with-GCC-exception | 17 + .../GPL-2.0-with-OpenSSL-exception | 285 + .../GPL-2.0-with-autoconf-exception | 6 + .../GPL-2.0-with-classpath-exception | 7 + .../GPL-2.0-with-font-exception | 18 + .../GPL-3-with-bison-exception | 7 + poky/meta/files/common-licenses/GPL-3.0-only | 225 + .../files/common-licenses/GPL-3.0-or-later | 625 + .../GPL-3.0-with-GCC-exception | 27 + .../GPL-3.0-with-autoconf-exception | 28 + poky/meta/files/common-licenses/Giftware | 9 + poky/meta/files/common-licenses/Glide | 95 + poky/meta/files/common-licenses/Glulxe | 3 + poky/meta/files/common-licenses/HPND | 11 + .../files/common-licenses/HPND-sell-variant | 19 + poky/meta/files/common-licenses/HTMLTIDY | 13 + poky/meta/files/common-licenses/HaskellReport | 6 + .../files/common-licenses/Hippocratic-2.1 | 33 + poky/meta/files/common-licenses/IBM-pibs | 8 + poky/meta/files/common-licenses/ICU | 13 + poky/meta/files/common-licenses/IJG | 38 + poky/meta/files/common-licenses/IPA | 95 + poky/meta/files/common-licenses/IPL-1.0 | 213 + poky/meta/files/common-licenses/ISC | 10 + poky/meta/files/common-licenses/ImageMagick | 98 + poky/meta/files/common-licenses/Imlib2 | 9 + poky/meta/files/common-licenses/Info-ZIP | 16 + poky/meta/files/common-licenses/Intel | 105 + poky/meta/files/common-licenses/Intel-ACPI | 34 + poky/meta/files/common-licenses/Interbase-1.0 | 199 + poky/meta/files/common-licenses/JPNIC | 40 + poky/meta/files/common-licenses/JSON | 11 + poky/meta/files/common-licenses/JasPer-2.0 | 17 + poky/meta/files/common-licenses/LAL-1.2 | 67 + poky/meta/files/common-licenses/LAL-1.3 | 88 + poky/meta/files/common-licenses/LGPL-2.0-only | 342 + .../files/common-licenses/LGPL-2.0-or-later | 446 + poky/meta/files/common-licenses/LGPL-2.1-only | 176 + .../files/common-licenses/LGPL-2.1-or-later | 468 + poky/meta/files/common-licenses/LGPL-3.0-only | 65 + .../files/common-licenses/LGPL-3.0-or-later | 163 + poky/meta/files/common-licenses/LGPLLR | 89 + poky/meta/files/common-licenses/LPL-1.0 | 81 + poky/meta/files/common-licenses/LPL-1.02 | 76 + poky/meta/files/common-licenses/LPPL-1.0 | 213 + poky/meta/files/common-licenses/LPPL-1.1 | 316 + poky/meta/files/common-licenses/LPPL-1.2 | 320 + poky/meta/files/common-licenses/LPPL-1.3a | 175 + poky/meta/files/common-licenses/LPPL-1.3c | 418 + poky/meta/files/common-licenses/Latex2e | 9 + poky/meta/files/common-licenses/Leptonica | 9 + poky/meta/files/common-licenses/LiLiQ-P-1.1 | 70 + poky/meta/files/common-licenses/LiLiQ-R-1.1 | 94 + .../files/common-licenses/LiLiQ-Rplus-1.1 | 88 + poky/meta/files/common-licenses/Libpng | 134 + poky/meta/files/common-licenses/Linux-OpenIB | 18 + poky/meta/files/common-licenses/MIT | 23 + poky/meta/files/common-licenses/MIT-0 | 16 + poky/meta/files/common-licenses/MIT-CMU | 7 + .../files/common-licenses/MIT-Modern-Variant | 17 + .../files/common-licenses/MIT-advertising | 7 + poky/meta/files/common-licenses/MIT-enna | 9 + poky/meta/files/common-licenses/MIT-feh | 5 + .../meta/files/common-licenses/MIT-open-group | 23 + poky/meta/files/common-licenses/MITNFA | 7 + poky/meta/files/common-licenses/MPL-1.0 | 109 + poky/meta/files/common-licenses/MPL-1.1 | 185 + poky/meta/files/common-licenses/MPL-2.0 | 373 + .../MPL-2.0-no-copyleft-exception | 144 + poky/meta/files/common-licenses/MS-PL | 19 + poky/meta/files/common-licenses/MS-RL | 23 + poky/meta/files/common-licenses/MTLL | 24 + poky/meta/files/common-licenses/MakeIndex | 19 + poky/meta/files/common-licenses/MirOS | 58 + poky/meta/files/common-licenses/Motosoto | 422 + poky/meta/files/common-licenses/MulanPSL-1.0 | 116 + poky/meta/files/common-licenses/MulanPSL-2.0 | 131 + poky/meta/files/common-licenses/Multics | 40 + poky/meta/files/common-licenses/Mup | 13 + poky/meta/files/common-licenses/NAIST-2003 | 70 + poky/meta/files/common-licenses/NASA-1.3 | 79 + poky/meta/files/common-licenses/NBPL-1.0 | 59 + poky/meta/files/common-licenses/NCGL-UK-2.0 | 67 + poky/meta/files/common-licenses/NCSA | 34 + poky/meta/files/common-licenses/NGPL | 45 + poky/meta/files/common-licenses/NIST-PD | 15 + .../files/common-licenses/NIST-PD-fallback | 5 + poky/meta/files/common-licenses/NLOD-1.0 | 79 + poky/meta/files/common-licenses/NLOD-2.0 | 80 + poky/meta/files/common-licenses/NLPL | 14 + poky/meta/files/common-licenses/NOSL | 150 + poky/meta/files/common-licenses/NPL-1.0 | 102 + poky/meta/files/common-licenses/NPL-1.1 | 186 + poky/meta/files/common-licenses/NPOSL-3.0 | 61 + poky/meta/files/common-licenses/NRL | 28 + poky/meta/files/common-licenses/NTP | 7 + poky/meta/files/common-licenses/NTP-0 | 5 + poky/meta/files/common-licenses/Naumen | 21 + poky/meta/files/common-licenses/Net-SNMP | 107 + poky/meta/files/common-licenses/NetCDF | 7 + poky/meta/files/common-licenses/Newsletr | 7 + poky/meta/files/common-licenses/Nokia | 423 + poky/meta/files/common-licenses/Noweb | 9 + poky/meta/files/common-licenses/O-UDA-1.0 | 47 + poky/meta/files/common-licenses/OASIS | 13 + poky/meta/files/common-licenses/OCCT-PL | 112 + poky/meta/files/common-licenses/OCLC-2.0 | 78 + poky/meta/files/common-licenses/ODC-By-1.0 | 195 + poky/meta/files/common-licenses/ODbL-1.0 | 543 + poky/meta/files/common-licenses/OFL-1.0 | 49 + poky/meta/files/common-licenses/OFL-1.0-RFN | 49 + .../meta/files/common-licenses/OFL-1.0-no-RFN | 49 + poky/meta/files/common-licenses/OFL-1.1 | 88 + poky/meta/files/common-licenses/OFL-1.1-RFN | 43 + .../meta/files/common-licenses/OFL-1.1-no-RFN | 43 + poky/meta/files/common-licenses/OGC-1.0 | 17 + .../files/common-licenses/OGDL-Taiwan-1.0 | 141 + .../meta/files/common-licenses/OGL-Canada-2.0 | 51 + poky/meta/files/common-licenses/OGL-UK-1.0 | 69 + poky/meta/files/common-licenses/OGL-UK-2.0 | 72 + poky/meta/files/common-licenses/OGL-UK-3.0 | 69 + poky/meta/files/common-licenses/OGTSL | 120 + poky/meta/files/common-licenses/OLDAP-1.1 | 60 + poky/meta/files/common-licenses/OLDAP-1.2 | 60 + poky/meta/files/common-licenses/OLDAP-1.3 | 62 + poky/meta/files/common-licenses/OLDAP-1.4 | 62 + poky/meta/files/common-licenses/OLDAP-2.0 | 18 + poky/meta/files/common-licenses/OLDAP-2.0.1 | 18 + poky/meta/files/common-licenses/OLDAP-2.1 | 20 + poky/meta/files/common-licenses/OLDAP-2.2 | 22 + poky/meta/files/common-licenses/OLDAP-2.2.1 | 22 + poky/meta/files/common-licenses/OLDAP-2.2.2 | 24 + poky/meta/files/common-licenses/OLDAP-2.3 | 24 + poky/meta/files/common-licenses/OLDAP-2.4 | 22 + poky/meta/files/common-licenses/OLDAP-2.5 | 22 + poky/meta/files/common-licenses/OLDAP-2.6 | 20 + poky/meta/files/common-licenses/OLDAP-2.7 | 20 + poky/meta/files/common-licenses/OLDAP-2.8 | 49 + poky/meta/files/common-licenses/OML | 5 + poky/meta/files/common-licenses/OPL-1.0 | 136 + poky/meta/files/common-licenses/OPUBL-1.0 | 78 + poky/meta/files/common-licenses/OSET-PL-2.1 | 161 + poky/meta/files/common-licenses/OSL-1.0 | 164 + poky/meta/files/common-licenses/OSL-1.1 | 47 + poky/meta/files/common-licenses/OSL-2.0 | 48 + poky/meta/files/common-licenses/OSL-2.1 | 47 + poky/meta/files/common-licenses/OSL-3.0 | 27 + poky/meta/files/common-licenses/OpenSSL | 107 + poky/meta/files/common-licenses/PD | 1 + poky/meta/files/common-licenses/PDDL-1.0 | 136 + poky/meta/files/common-licenses/PHP-3.0 | 70 + poky/meta/files/common-licenses/PHP-3.01 | 27 + poky/meta/files/common-licenses/PSF-2.0 | 49 + .../files/common-licenses/ParaTypeFFL-1.3 | 44 + poky/meta/files/common-licenses/Parity-6.0.0 | 44 + poky/meta/files/common-licenses/Parity-7.0.0 | 71 + poky/meta/files/common-licenses/Plexus | 15 + .../PolyForm-Noncommercial-1.0.0 | 131 + .../PolyForm-Small-Business-1.0.0 | 121 + poky/meta/files/common-licenses/PostgreSQL | 14 + poky/meta/files/common-licenses/Proprietary | 1 + poky/meta/files/common-licenses/Python-2.0 | 192 + poky/meta/files/common-licenses/QPL-1.0 | 48 + poky/meta/files/common-licenses/Qhull | 17 + poky/meta/files/common-licenses/RHeCos-1 | 401 + poky/meta/files/common-licenses/RHeCos-1.1 | 151 + poky/meta/files/common-licenses/RPL-1.1 | 177 + poky/meta/files/common-licenses/RPL-1.5 | 546 + poky/meta/files/common-licenses/RPSL-1.0 | 182 + poky/meta/files/common-licenses/RSA-MD | 9 + poky/meta/files/common-licenses/RSCPL | 193 + poky/meta/files/common-licenses/Rdisc | 13 + poky/meta/files/common-licenses/Ruby | 60 + poky/meta/files/common-licenses/SAX-PD | 33 + poky/meta/files/common-licenses/SCEA | 60 + poky/meta/files/common-licenses/SGI-1 | 36 + poky/meta/files/common-licenses/SGI-B-1.0 | 82 + poky/meta/files/common-licenses/SGI-B-1.1 | 84 + poky/meta/files/common-licenses/SGI-B-2.0 | 12 + poky/meta/files/common-licenses/SHL-0.5 | 64 + poky/meta/files/common-licenses/SHL-0.51 | 65 + poky/meta/files/common-licenses/SISSL | 116 + poky/meta/files/common-licenses/SISSL-1.2 | 114 + poky/meta/files/common-licenses/SMAIL_GPL | 164 + poky/meta/files/common-licenses/SMLNJ | 7 + poky/meta/files/common-licenses/SMPPL | 29 + poky/meta/files/common-licenses/SNIA | 122 + poky/meta/files/common-licenses/SPL-1.0 | 507 + poky/meta/files/common-licenses/SSH-OpenSSH | 67 + poky/meta/files/common-licenses/SSH-short | 5 + poky/meta/files/common-licenses/SSPL-1.0 | 557 + poky/meta/files/common-licenses/SWL | 7 + poky/meta/files/common-licenses/Saxpath | 19 + poky/meta/files/common-licenses/Sendmail | 36 + poky/meta/files/common-licenses/Sendmail-8.23 | 36 + poky/meta/files/common-licenses/SimPL-2.0 | 37 + poky/meta/files/common-licenses/Simple-2.0 | 27 + poky/meta/files/common-licenses/Sleepycat | 90 + poky/meta/files/common-licenses/Spencer-86 | 11 + poky/meta/files/common-licenses/Spencer-94 | 12 + poky/meta/files/common-licenses/Spencer-99 | 9 + poky/meta/files/common-licenses/SugarCRM-1 | 431 + .../meta/files/common-licenses/SugarCRM-1.1.3 | 160 + poky/meta/files/common-licenses/TAPR-OHL-1.0 | 266 + poky/meta/files/common-licenses/TCL | 9 + poky/meta/files/common-licenses/TCP-wrappers | 7 + poky/meta/files/common-licenses/TMate | 21 + poky/meta/files/common-licenses/TORQUE-1.1 | 25 + poky/meta/files/common-licenses/TOSL | 9 + poky/meta/files/common-licenses/TU-Berlin-1.0 | 10 + poky/meta/files/common-licenses/TU-Berlin-2.0 | 20 + poky/meta/files/common-licenses/UCB | 26 + poky/meta/files/common-licenses/UCL-1.0 | 48 + poky/meta/files/common-licenses/UPL-1.0 | 17 + .../files/common-licenses/Unicode-DFS-2015 | 19 + .../files/common-licenses/Unicode-DFS-2016 | 22 + poky/meta/files/common-licenses/Unicode-TOU | 51 + poky/meta/files/common-licenses/Unlicense | 24 + poky/meta/files/common-licenses/VOSTROM | 27 + poky/meta/files/common-licenses/VSL-1.0 | 49 + poky/meta/files/common-licenses/Vim | 30 + poky/meta/files/common-licenses/W3C | 17 + poky/meta/files/common-licenses/W3C-19980720 | 23 + poky/meta/files/common-licenses/W3C-20150513 | 17 + poky/meta/files/common-licenses/WTFPL | 11 + poky/meta/files/common-licenses/WXwindows | 55 + poky/meta/files/common-licenses/Watcom-1.0 | 140 + poky/meta/files/common-licenses/Wsuipa | 5 + poky/meta/files/common-licenses/X11 | 13 + poky/meta/files/common-licenses/XFree86-1.0 | 22 + poky/meta/files/common-licenses/XFree86-1.1 | 18 + poky/meta/files/common-licenses/XSL | 48 + poky/meta/files/common-licenses/XSkat | 10 + poky/meta/files/common-licenses/Xerox | 5 + poky/meta/files/common-licenses/Xnet | 27 + poky/meta/files/common-licenses/YPL-1.0 | 47 + poky/meta/files/common-licenses/YPL-1.1 | 30 + poky/meta/files/common-licenses/ZPL-1.1 | 28 + poky/meta/files/common-licenses/ZPL-2.0 | 61 + poky/meta/files/common-licenses/ZPL-2.1 | 18 + poky/meta/files/common-licenses/Zed | 3 + poky/meta/files/common-licenses/Zend-2.0 | 18 + poky/meta/files/common-licenses/Zimbra-1.3 | 30 + poky/meta/files/common-licenses/Zimbra-1.4 | 47 + poky/meta/files/common-licenses/Zlib | 21 + poky/meta/files/common-licenses/blessing | 5 + poky/meta/files/common-licenses/bzip2-1.0.4 | 43 + poky/meta/files/common-licenses/bzip2-1.0.5 | 18 + poky/meta/files/common-licenses/bzip2-1.0.6 | 41 + .../files/common-licenses/copyleft-next-0.3.0 | 219 + .../files/common-licenses/copyleft-next-0.3.1 | 220 + poky/meta/files/common-licenses/curl | 10 + poky/meta/files/common-licenses/diffmark | 2 + poky/meta/files/common-licenses/dvipdfm | 1 + poky/meta/files/common-licenses/eCos-2.0 | 18 + poky/meta/files/common-licenses/eGenix | 40 + poky/meta/files/common-licenses/etalab-2.0 | 179 + poky/meta/files/common-licenses/gSOAP-1 | 380 + poky/meta/files/common-licenses/gSOAP-1.3b | 157 + poky/meta/files/common-licenses/gnuplot | 14 + poky/meta/files/common-licenses/iMatix | 39 + poky/meta/files/common-licenses/libpng-2.0 | 33 + .../meta/files/common-licenses/libselinux-1.0 | 21 + poky/meta/files/common-licenses/libtiff | 8 + poky/meta/files/common-licenses/mpich2 | 18 + poky/meta/files/common-licenses/pkgconf | 10 + poky/meta/files/common-licenses/psfrag | 5 + poky/meta/files/common-licenses/psutils | 29 + poky/meta/files/common-licenses/unfs3 | 24 + poky/meta/files/common-licenses/xinetd | 25 + poky/meta/files/common-licenses/xpp | 21 + .../common-licenses/zlib-acknowledgement | 15 + poky/meta/files/device_table-minimal.txt | 35 + poky/meta/files/ext-sdk-prepare.py | 91 + poky/meta/files/fs-perms-persistent-log.txt | 66 + poky/meta/files/fs-perms.txt | 67 + .../files/overlayfs-all-overlays.service.in | 12 + .../files/overlayfs-create-dirs.service.in | 15 + poky/meta/files/overlayfs-etc-preinit.sh.in | 50 + poky/meta/files/overlayfs-unit.mount.in | 13 + poky/meta/files/ptest-perl/run-ptest | 16 + poky/meta/files/spdx-licenses.json | 5937 ++++ poky/meta/files/toolchain-shar-extract.sh | 298 + poky/meta/files/toolchain-shar-relocate.sh | 82 + poky/meta/lib/bblayers/create.py | 79 + poky/meta/lib/bblayers/templates/README | 41 + poky/meta/lib/bblayers/templates/example.bb | 13 + poky/meta/lib/bblayers/templates/layer.conf | 13 + poky/meta/lib/buildstats.py | 161 + poky/meta/lib/oe/__init__.py | 6 + poky/meta/lib/oe/buildhistory_analysis.py | 723 + poky/meta/lib/oe/cachedpath.py | 235 + poky/meta/lib/oe/classextend.py | 156 + poky/meta/lib/oe/classutils.py | 47 + poky/meta/lib/oe/copy_buildsystem.py | 291 + poky/meta/lib/oe/cve_check.py | 214 + poky/meta/lib/oe/data.py | 51 + poky/meta/lib/oe/distro_check.py | 312 + poky/meta/lib/oe/elf.py | 141 + poky/meta/lib/oe/gpg_sign.py | 151 + poky/meta/lib/oe/license.py | 259 + poky/meta/lib/oe/lsb.py | 121 + poky/meta/lib/oe/maketype.py | 105 + poky/meta/lib/oe/manifest.py | 204 + poky/meta/lib/oe/npm_registry.py | 169 + poky/meta/lib/oe/overlayfs.py | 52 + poky/meta/lib/oe/package.py | 292 + poky/meta/lib/oe/package_manager/__init__.py | 559 + .../lib/oe/package_manager/deb/__init__.py | 516 + .../lib/oe/package_manager/deb/manifest.py | 26 + .../meta/lib/oe/package_manager/deb/rootfs.py | 210 + poky/meta/lib/oe/package_manager/deb/sdk.py | 100 + .../lib/oe/package_manager/ipk/__init__.py | 506 + .../lib/oe/package_manager/ipk/manifest.py | 74 + .../meta/lib/oe/package_manager/ipk/rootfs.py | 350 + poky/meta/lib/oe/package_manager/ipk/sdk.py | 102 + .../lib/oe/package_manager/rpm/__init__.py | 419 + .../lib/oe/package_manager/rpm/manifest.py | 54 + .../meta/lib/oe/package_manager/rpm/rootfs.py | 148 + poky/meta/lib/oe/package_manager/rpm/sdk.py | 115 + poky/meta/lib/oe/packagedata.py | 110 + poky/meta/lib/oe/packagegroup.py | 34 + poky/meta/lib/oe/patch.py | 922 + poky/meta/lib/oe/path.py | 343 + poky/meta/lib/oe/prservice.py | 127 + poky/meta/lib/oe/qa.py | 219 + poky/meta/lib/oe/recipeutils.py | 1150 + poky/meta/lib/oe/reproducible.py | 192 + poky/meta/lib/oe/rootfs.py | 415 + poky/meta/lib/oe/rust.py | 5 + poky/meta/lib/oe/sbom.py | 78 + poky/meta/lib/oe/sdk.py | 158 + poky/meta/lib/oe/spdx.py | 342 + poky/meta/lib/oe/sstatesig.py | 672 + poky/meta/lib/oe/terminal.py | 330 + poky/meta/lib/oe/types.py | 186 + poky/meta/lib/oe/useradd.py | 69 + poky/meta/lib/oe/utils.py | 586 + poky/meta/lib/oeqa/buildperf/__init__.py | 13 + poky/meta/lib/oeqa/buildperf/base.py | 504 + poky/meta/lib/oeqa/buildperf/test_basic.py | 120 + poky/meta/lib/oeqa/controllers/__init__.py | 6 + .../lib/oeqa/controllers/controllerimage.py | 199 + .../lib/oeqa/controllers/testtargetloader.py | 72 + poky/meta/lib/oeqa/core/README | 76 + poky/meta/lib/oeqa/core/__init__.py | 0 poky/meta/lib/oeqa/core/case.py | 105 + poky/meta/lib/oeqa/core/cases/__init__.py | 0 .../lib/oeqa/core/cases/example/data.json | 1 + .../lib/oeqa/core/cases/example/test_basic.py | 22 + poky/meta/lib/oeqa/core/context.py | 246 + poky/meta/lib/oeqa/core/decorator/__init__.py | 74 + poky/meta/lib/oeqa/core/decorator/data.py | 196 + poky/meta/lib/oeqa/core/decorator/depends.py | 98 + .../meta/lib/oeqa/core/decorator/oetimeout.py | 29 + poky/meta/lib/oeqa/core/exception.py | 26 + poky/meta/lib/oeqa/core/loader.py | 342 + poky/meta/lib/oeqa/core/runner.py | 353 + poky/meta/lib/oeqa/core/target/__init__.py | 36 + poky/meta/lib/oeqa/core/target/qemu.py | 105 + poky/meta/lib/oeqa/core/target/ssh.py | 323 + poky/meta/lib/oeqa/core/tests/__init__.py | 0 poky/meta/lib/oeqa/core/tests/cases/data.py | 23 + .../meta/lib/oeqa/core/tests/cases/depends.py | 41 + .../core/tests/cases/loader/valid/another.py | 12 + poky/meta/lib/oeqa/core/tests/cases/oetag.py | 38 + .../meta/lib/oeqa/core/tests/cases/timeout.py | 34 + poky/meta/lib/oeqa/core/tests/common.py | 38 + poky/meta/lib/oeqa/core/tests/test_data.py | 55 + .../lib/oeqa/core/tests/test_decorators.py | 143 + poky/meta/lib/oeqa/core/tests/test_loader.py | 63 + poky/meta/lib/oeqa/core/tests/test_runner.py | 40 + poky/meta/lib/oeqa/core/utils/__init__.py | 0 .../lib/oeqa/core/utils/concurrencytest.py | 333 + poky/meta/lib/oeqa/core/utils/path.py | 22 + poky/meta/lib/oeqa/core/utils/test.py | 89 + .../lib/oeqa/files/buildhistory_filelist1.txt | 9214 ++++++ .../lib/oeqa/files/buildhistory_filelist2.txt | 9217 ++++++ poky/meta/lib/oeqa/files/test.c | 26 + poky/meta/lib/oeqa/files/test.cpp | 3 + .../oeqa/files/testresults/testresults.json | 40 + poky/meta/lib/oeqa/manual/abat.patch | 64 + poky/meta/lib/oeqa/manual/bsp-hw.json | 626 + .../meta/lib/oeqa/manual/build-appliance.json | 96 + poky/meta/lib/oeqa/manual/crops.json | 294 + poky/meta/lib/oeqa/manual/eclipse-plugin.json | 322 + poky/meta/lib/oeqa/manual/kernel-dev.json | 200 + poky/meta/lib/oeqa/manual/oe-core.json | 158 + poky/meta/lib/oeqa/manual/sdk.json | 32 + .../lib/oeqa/manual/toaster-managed-mode.json | 2572 ++ .../oeqa/manual/toaster-unmanaged-mode.json | 1170 + poky/meta/lib/oeqa/oetest.py | 618 + poky/meta/lib/oeqa/runexported.py | 153 + poky/meta/lib/oeqa/runtime/case.py | 20 + poky/meta/lib/oeqa/runtime/cases/_qemutiny.py | 12 + poky/meta/lib/oeqa/runtime/cases/apt.py | 77 + poky/meta/lib/oeqa/runtime/cases/boot.py | 33 + poky/meta/lib/oeqa/runtime/cases/buildcpio.py | 33 + .../lib/oeqa/runtime/cases/buildgalculator.py | 32 + poky/meta/lib/oeqa/runtime/cases/buildlzip.py | 34 + poky/meta/lib/oeqa/runtime/cases/connman.py | 31 + poky/meta/lib/oeqa/runtime/cases/date.py | 41 + poky/meta/lib/oeqa/runtime/cases/df.py | 19 + poky/meta/lib/oeqa/runtime/cases/dnf.py | 191 + .../oeqa/runtime/cases/ethernet_ip_connman.py | 37 + poky/meta/lib/oeqa/runtime/cases/gcc.py | 69 + poky/meta/lib/oeqa/runtime/cases/gi.py | 19 + poky/meta/lib/oeqa/runtime/cases/go.py | 19 + poky/meta/lib/oeqa/runtime/cases/gstreamer.py | 18 + .../lib/oeqa/runtime/cases/kernelmodule.py | 46 + poky/meta/lib/oeqa/runtime/cases/ksample.py | 231 + poky/meta/lib/oeqa/runtime/cases/ldd.py | 26 + poky/meta/lib/oeqa/runtime/cases/logrotate.py | 71 + poky/meta/lib/oeqa/runtime/cases/ltp.py | 119 + .../lib/oeqa/runtime/cases/ltp_compliance.py | 97 + .../meta/lib/oeqa/runtime/cases/ltp_stress.py | 97 + poky/meta/lib/oeqa/runtime/cases/multilib.py | 47 + poky/meta/lib/oeqa/runtime/cases/oe_syslog.py | 136 + poky/meta/lib/oeqa/runtime/cases/opkg.py | 58 + poky/meta/lib/oeqa/runtime/cases/pam.py | 38 + poky/meta/lib/oeqa/runtime/cases/parselogs.py | 389 + poky/meta/lib/oeqa/runtime/cases/perl.py | 17 + poky/meta/lib/oeqa/runtime/cases/ping.py | 30 + poky/meta/lib/oeqa/runtime/cases/ptest.py | 112 + poky/meta/lib/oeqa/runtime/cases/python.py | 19 + poky/meta/lib/oeqa/runtime/cases/rpm.py | 143 + poky/meta/lib/oeqa/runtime/cases/rt.py | 17 + poky/meta/lib/oeqa/runtime/cases/rtc.py | 40 + poky/meta/lib/oeqa/runtime/cases/runlevel.py | 22 + poky/meta/lib/oeqa/runtime/cases/rust.py | 19 + poky/meta/lib/oeqa/runtime/cases/scons.py | 37 + poky/meta/lib/oeqa/runtime/cases/scp.py | 37 + .../lib/oeqa/runtime/cases/skeletoninit.py | 35 + poky/meta/lib/oeqa/runtime/cases/ssh.py | 19 + poky/meta/lib/oeqa/runtime/cases/stap.py | 32 + poky/meta/lib/oeqa/runtime/cases/storage.py | 149 + poky/meta/lib/oeqa/runtime/cases/suspend.py | 33 + poky/meta/lib/oeqa/runtime/cases/systemd.py | 194 + poky/meta/lib/oeqa/runtime/cases/terminal.py | 21 + poky/meta/lib/oeqa/runtime/cases/usb_hid.py | 22 + poky/meta/lib/oeqa/runtime/cases/weston.py | 79 + poky/meta/lib/oeqa/runtime/cases/x32lib.py | 26 + poky/meta/lib/oeqa/runtime/cases/xorg.py | 21 + poky/meta/lib/oeqa/runtime/context.py | 226 + .../lib/oeqa/runtime/decorator/package.py | 89 + poky/meta/lib/oeqa/runtime/files/SConstruct | 1 + poky/meta/lib/oeqa/runtime/files/hello.c | 5 + poky/meta/lib/oeqa/runtime/files/hellomod.c | 19 + .../lib/oeqa/runtime/files/hellomod_makefile | 8 + poky/meta/lib/oeqa/runtime/files/testmakefile | 5 + poky/meta/lib/oeqa/runtime/loader.py | 19 + poky/meta/lib/oeqa/runtime/utils/__init__.py | 0 .../oeqa/runtime/utils/targetbuildproject.py | 44 + poky/meta/lib/oeqa/sdk/__init__.py | 0 .../meta/lib/oeqa/sdk/buildtools-cases/README | 2 + .../lib/oeqa/sdk/buildtools-cases/build.py | 30 + .../meta/lib/oeqa/sdk/buildtools-cases/gcc.py | 29 + .../lib/oeqa/sdk/buildtools-cases/https.py | 20 + .../lib/oeqa/sdk/buildtools-cases/sanity.py | 22 + .../lib/oeqa/sdk/buildtools-docs-cases/README | 2 + .../oeqa/sdk/buildtools-docs-cases/build.py | 17 + poky/meta/lib/oeqa/sdk/case.py | 54 + poky/meta/lib/oeqa/sdk/cases/assimp.py | 40 + poky/meta/lib/oeqa/sdk/cases/buildcpio.py | 36 + poky/meta/lib/oeqa/sdk/cases/buildepoxy.py | 41 + .../lib/oeqa/sdk/cases/buildgalculator.py | 43 + poky/meta/lib/oeqa/sdk/cases/buildlzip.py | 37 + poky/meta/lib/oeqa/sdk/cases/gcc.py | 50 + poky/meta/lib/oeqa/sdk/cases/perl.py | 20 + poky/meta/lib/oeqa/sdk/cases/python.py | 20 + poky/meta/lib/oeqa/sdk/context.py | 153 + poky/meta/lib/oeqa/sdk/files/testsdkmakefile | 5 + poky/meta/lib/oeqa/sdk/testsdk.py | 145 + poky/meta/lib/oeqa/sdk/utils/__init__.py | 0 .../lib/oeqa/sdk/utils/sdkbuildproject.py | 53 + poky/meta/lib/oeqa/sdkext/__init__.py | 0 poky/meta/lib/oeqa/sdkext/case.py | 24 + poky/meta/lib/oeqa/sdkext/cases/devtool.py | 126 + poky/meta/lib/oeqa/sdkext/context.py | 32 + .../meta/lib/oeqa/sdkext/files/myapp/Makefile | 10 + poky/meta/lib/oeqa/sdkext/files/myapp/myapp.c | 9 + .../sdkext/files/myapp_cmake/CMakeLists.txt | 11 + .../lib/oeqa/sdkext/files/myapp_cmake/myapp.c | 9 + poky/meta/lib/oeqa/sdkext/testsdk.py | 107 + poky/meta/lib/oeqa/selftest/case.py | 262 + .../selftest/cases/_sstatetests_noauto.py | 96 + poky/meta/lib/oeqa/selftest/cases/archiver.py | 311 + poky/meta/lib/oeqa/selftest/cases/bblayers.py | 123 + .../meta/lib/oeqa/selftest/cases/bblogging.py | 186 + poky/meta/lib/oeqa/selftest/cases/bbtests.py | 361 + poky/meta/lib/oeqa/selftest/cases/binutils.py | 47 + .../lib/oeqa/selftest/cases/buildhistory.py | 50 + .../lib/oeqa/selftest/cases/buildoptions.py | 234 + .../lib/oeqa/selftest/cases/containerimage.py | 87 + .../meta/lib/oeqa/selftest/cases/cve_check.py | 220 + poky/meta/lib/oeqa/selftest/cases/devtool.py | 2065 ++ .../oeqa/selftest/cases/diffoscope/A/file.txt | 1 + .../oeqa/selftest/cases/diffoscope/B/file.txt | 1 + .../lib/oeqa/selftest/cases/distrodata.py | 151 + poky/meta/lib/oeqa/selftest/cases/eSDK.py | 120 + .../oeqa/selftest/cases/efibootpartition.py | 46 + .../lib/oeqa/selftest/cases/externalsrc.py | 44 + poky/meta/lib/oeqa/selftest/cases/fetch.py | 106 + poky/meta/lib/oeqa/selftest/cases/fitimage.py | 841 + poky/meta/lib/oeqa/selftest/cases/gcc.py | 159 + poky/meta/lib/oeqa/selftest/cases/glibc.py | 90 + .../lib/oeqa/selftest/cases/gotoolchain.py | 72 + .../lib/oeqa/selftest/cases/image_typedep.py | 58 + .../lib/oeqa/selftest/cases/imagefeatures.py | 297 + .../oeqa/selftest/cases/incompatible_lic.py | 157 + .../meta/lib/oeqa/selftest/cases/intercept.py | 15 + .../oeqa/selftest/cases/kerneldevelopment.py | 67 + .../lib/oeqa/selftest/cases/layerappend.py | 97 + poky/meta/lib/oeqa/selftest/cases/liboe.py | 102 + .../lib/oeqa/selftest/cases/lic_checksum.py | 57 + poky/meta/lib/oeqa/selftest/cases/locales.py | 45 + poky/meta/lib/oeqa/selftest/cases/manifest.py | 164 + poky/meta/lib/oeqa/selftest/cases/meta_ide.py | 51 + .../lib/oeqa/selftest/cases/minidebuginfo.py | 49 + .../lib/oeqa/selftest/cases/multiconfig.py | 85 + poky/meta/lib/oeqa/selftest/cases/newlib.py | 11 + .../lib/oeqa/selftest/cases/oelib/__init__.py | 0 .../oeqa/selftest/cases/oelib/buildhistory.py | 145 + .../meta/lib/oeqa/selftest/cases/oelib/elf.py | 26 + .../lib/oeqa/selftest/cases/oelib/license.py | 103 + .../lib/oeqa/selftest/cases/oelib/path.py | 89 + .../lib/oeqa/selftest/cases/oelib/types.py | 54 + .../lib/oeqa/selftest/cases/oelib/utils.py | 102 + .../meta/lib/oeqa/selftest/cases/oescripts.py | 184 + .../meta/lib/oeqa/selftest/cases/overlayfs.py | 445 + poky/meta/lib/oeqa/selftest/cases/package.py | 173 + poky/meta/lib/oeqa/selftest/cases/pkgdata.py | 226 + .../meta/lib/oeqa/selftest/cases/prservice.py | 125 + poky/meta/lib/oeqa/selftest/cases/pseudo.py | 27 + .../lib/oeqa/selftest/cases/recipetool.py | 859 + .../lib/oeqa/selftest/cases/recipeutils.py | 136 + .../lib/oeqa/selftest/cases/reproducible.py | 322 + .../oeqa/selftest/cases/resulttooltests.py | 98 + poky/meta/lib/oeqa/selftest/cases/runcmd.py | 122 + poky/meta/lib/oeqa/selftest/cases/runqemu.py | 212 + .../lib/oeqa/selftest/cases/runtime_test.py | 476 + poky/meta/lib/oeqa/selftest/cases/selftest.py | 52 + poky/meta/lib/oeqa/selftest/cases/signing.py | 226 + poky/meta/lib/oeqa/selftest/cases/sstate.py | 64 + .../lib/oeqa/selftest/cases/sstatetests.py | 625 + poky/meta/lib/oeqa/selftest/cases/sysroot.py | 37 + poky/meta/lib/oeqa/selftest/cases/tinfoil.py | 227 + poky/meta/lib/oeqa/selftest/cases/wic.py | 1514 + poky/meta/lib/oeqa/selftest/context.py | 412 + poky/meta/lib/oeqa/targetcontrol.py | 243 + poky/meta/lib/oeqa/utils/__init__.py | 90 + poky/meta/lib/oeqa/utils/buildproject.py | 66 + poky/meta/lib/oeqa/utils/commands.py | 374 + poky/meta/lib/oeqa/utils/decorators.py | 297 + poky/meta/lib/oeqa/utils/dump.py | 157 + poky/meta/lib/oeqa/utils/ftools.py | 50 + poky/meta/lib/oeqa/utils/git.py | 80 + poky/meta/lib/oeqa/utils/gitarchive.py | 237 + poky/meta/lib/oeqa/utils/httpserver.py | 67 + poky/meta/lib/oeqa/utils/logparser.py | 161 + poky/meta/lib/oeqa/utils/metadata.py | 124 + poky/meta/lib/oeqa/utils/network.py | 12 + poky/meta/lib/oeqa/utils/nfs.py | 39 + poky/meta/lib/oeqa/utils/package_manager.py | 219 + poky/meta/lib/oeqa/utils/qemurunner.py | 816 + poky/meta/lib/oeqa/utils/qemutinyrunner.py | 182 + poky/meta/lib/oeqa/utils/sshcontrol.py | 243 + poky/meta/lib/oeqa/utils/subprocesstweak.py | 22 + poky/meta/lib/oeqa/utils/targetbuild.py | 144 + poky/meta/lib/oeqa/utils/testexport.py | 265 + poky/meta/lib/rootfspostcommands.py | 67 + poky/meta/recipes-bsp/acpid/acpid.inc | 38 + .../recipes-bsp/acpid/acpid/acpid.service | 10 + poky/meta/recipes-bsp/acpid/acpid/init | 31 + poky/meta/recipes-bsp/acpid/acpid_2.0.33.bb | 6 + .../meta/recipes-bsp/alsa-state/alsa-state.bb | 71 + .../alsa-state/alsa-state/alsa-state-init | 38 + .../alsa-state/alsa-state/asound.conf | 1 + .../alsa-state/alsa-state/asound.state | 1 + poky/meta/recipes-bsp/apmd/apmd/apmd.service | 7 + poky/meta/recipes-bsp/apmd/apmd/apmd_proxy | 91 + .../recipes-bsp/apmd/apmd/apmd_proxy.conf | 16 + poky/meta/recipes-bsp/apmd/apmd/default | 8 + poky/meta/recipes-bsp/apmd/apmd/init | 51 + poky/meta/recipes-bsp/apmd/apmd/legacy.patch | 133 + poky/meta/recipes-bsp/apmd/apmd/libtool.patch | 41 + poky/meta/recipes-bsp/apmd/apmd/linkage.patch | 53 + poky/meta/recipes-bsp/apmd/apmd/unlinux.patch | 25 + .../recipes-bsp/apmd/apmd/wexitcode.patch | 26 + poky/meta/recipes-bsp/apmd/apmd_3.2.2-15.bb | 85 + .../efibootmgr/0001-remove-extra-decl.patch | 31 + ...1-src-make-compatible-with-efivar-38.patch | 47 + ...8ae0bce776a36ea2001dea63d376be8274ac.patch | 83 + .../recipes-bsp/efibootmgr/efibootmgr_17.bb | 37 + .../0001-Fix-invalid-free-in-main.patch | 30 + ...ve-deprecated-add-needed-linker-flag.patch | 45 + ...1-docs-do-not-build-efisecdb-manpage.patch | 26 + ...uild-util.c-separately-for-makeguids.patch | 38 + ...002-Add-T-workaround-for-GNU-ld-2.36.patch | 33 + ...LL-C-to-force-English-output-from-ld.patch | 33 + ...on-and-remove-not-needed-workarounds.patch | 45 + ...mp-efi_well_known_-variable-handling.patch | 262 + .../efisecdb-fix-build-with-musl-libc.patch | 184 + poky/meta/recipes-bsp/efivar/efivar_38.bb | 41 + poky/meta/recipes-bsp/formfactor/files/config | 50 + .../recipes-bsp/formfactor/files/machconfig | 0 .../formfactor/files/qemuarm/machconfig | 10 + .../formfactor/files/qemuarmv6/machconfig | 10 + .../formfactor/files/qemuarmv7/machconfig | 10 + .../formfactor/files/qemumips/machconfig | 10 + .../formfactor/files/qemumips64/machconfig | 10 + .../formfactor/files/qemuppc/machconfig | 10 + .../formfactor/files/qemuppc64/machconfig | 10 + .../formfactor/files/qemux86-64/machconfig | 10 + .../formfactor/files/qemux86/machconfig | 10 + .../recipes-bsp/formfactor/formfactor_0.0.bb | 23 + .../gnu-efi-3.0.9-fix-clang-build.patch | 24 + .../lib-Makefile-fix-parallel-issue.patch | 38 + .../gnu-efi/parallel-make-archives.patch | 38 + .../recipes-bsp/gnu-efi/gnu-efi_3.0.14.bb | 70 + ...ath-sse-as-well-when-SSE-is-disabled.patch | 43 + ...1-RISC-V-Restore-the-typcast-to-long.patch | 39 + ...-_zicsr_zifencei-extentions-on-riscv.patch | 47 + ...erflow-in-grub_font_get_glyph_intern.patch | 115 + ...b.d-10_linux.in-add-oe-s-kernel-name.patch | 54 + ...g-Drop-greyscale-support-to-fix-heap.patch | 179 + ...ng-Avoid-heap-OOB-R-W-inserting-huff.patch | 50 + ...peg-Block-int-underflow-wild-pointer.patch | 84 + ...onfig-Restore-umask-for-the-grub.cfg.patch | 49 + .../grub/files/CVE-2022-2601.patch | 85 + ...3-net-ip-Do-IP-fragment-maths-safely.patch | 63 + ...or-out-on-headers-with-LF-without-CR.patch | 58 + ...Fix-OOB-write-for-split-http-headers.patch | 56 + ...ct-non-kernel-files-in-the-shim_lock.patch | 111 + ...i-chainloader-Use-grub_loader_set_ex.patch | 86 + .../grub/files/CVE-2022-3775.patch | 95 + .../grub/files/autogen.sh-exclude-pc.patch | 36 + poky/meta/recipes-bsp/grub/files/cfg | 2 + ...ot-Add-API-to-pass-context-to-loader.patch | 168 + .../recipes-bsp/grub/files/determinism.patch | 68 + ...icitly-keeps-symbole-.module_license.patch | 59 + ...hainloader-Simplify-the-loader-state.patch | 129 + .../video-Remove-trailing-whitespaces.patch | 693 + ...eg-Abort-sooner-if-a-read-operation-.patch | 264 + ...eg-Refuse-to-handle-multiple-start-o.patch | 53 + .../recipes-bsp/grub/grub-bootconf_1.00.bb | 32 + poky/meta/recipes-bsp/grub/grub-efi_2.06.bb | 105 + poky/meta/recipes-bsp/grub/grub2.inc | 97 + poky/meta/recipes-bsp/grub/grub_2.06.bb | 41 + poky/meta/recipes-bsp/keymaps/files/keymap.sh | 19 + poky/meta/recipes-bsp/keymaps/keymaps_1.0.bb | 49 + ...1-libacpi-Fix-build-witth-fno-commom.patch | 68 + .../recipes-bsp/libacpi/files/ldflags.patch | 41 + .../libacpi/files/libacpi_fix_for_x32.patch | 37 + .../libacpi/files/makefile-fix.patch | 47 + ...e_correct_strip_in_cross_environment.patch | 23 + poky/meta/recipes-bsp/libacpi/libacpi_0.2.bb | 34 + ...mpilation-using-autoconf-detected-AR.patch | 36 + .../lrzsz-0.12.20/autotools-update.patch | 5749 ++++ .../lrzsz/lrzsz-0.12.20/autotools.patch | 39 + .../lrzsz/lrzsz-0.12.20/cve-2018-10195.patch | 28 + .../lrzsz/lrzsz-0.12.20/include.patch | 25 + .../lrzsz-0.12.20/lrzsz-check-locale.h.patch | 32 + .../lrzsz/lrzsz-0.12.20/makefile.patch | 22 + poky/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 49 + .../recipes-bsp/opensbi/opensbi-payloads.inc | 36 + poky/meta/recipes-bsp/opensbi/opensbi_1.0.bb | 48 + .../pciutils/pciutils/configure.patch | 81 + .../recipes-bsp/pciutils/pciutils_3.7.0.bb | 62 + .../recipes-bsp/pm-utils/pm-utils_1.4.1.bb | 30 + .../setserial/setserial/add_stdlib.patch | 18 + .../setserial/setserial/ldflags.patch | 24 + .../recipes-bsp/setserial/setserial_2.17.bb | 29 + ...s-squashfs-Use-kcalloc-when-relevant.patch | 64 + ..._read-Prevent-arbitrary-code-executi.patch | 80 + ...ffer-overflow-vulnerability-in-i2c-m.patch | 126 + ...e-minimum-IP-fragmented-datagram-siz.patch | 207 + ...1-riscv-fix-build-with-binutils-2.38.patch | 40 + ...iscv32-Use-double-float-ABI-for-rv32.patch | 44 + .../recipes-bsp/u-boot/libubootenv_0.3.2.bb | 26 + .../meta/recipes-bsp/u-boot/u-boot-common.inc | 24 + .../recipes-bsp/u-boot/u-boot-configure.inc | 39 + poky/meta/recipes-bsp/u-boot/u-boot-tools.inc | 81 + .../u-boot/u-boot-tools_2022.01.bb | 2 + poky/meta/recipes-bsp/u-boot/u-boot.inc | 336 + .../meta/recipes-bsp/u-boot/u-boot_2022.01.bb | 13 + poky/meta/recipes-bsp/usbinit/usbinit.bb | 25 + .../recipes-bsp/usbinit/usbinit/COPYING.GPL | 339 + .../recipes-bsp/usbinit/usbinit/usb-gether | 23 + .../meta/recipes-bsp/usbutils/usbutils_014.bb | 32 + .../v86d/Support-for-cross-compilation.patch | 34 + .../v86d/v86d/Update-x86emu-from-X.org.patch | 21766 +++++++++++++ .../recipes-bsp/v86d/v86d/ar-from-env.patch | 33 + poky/meta/recipes-bsp/v86d/v86d_0.1.10.bb | 35 + .../recipes-connectivity/avahi/avahi_0.8.bb | 191 + ...01-Fix-opening-etc-resolv.conf-error.patch | 45 + .../avahi/files/00avahi-autoipd | 10 + .../avahi/files/99avahi-autoipd | 10 + .../avahi/files/handle-hup.patch | 41 + .../avahi/files/initscript.patch | 47 + .../avahi/files/local-ping.patch | 153 + ...1-avoid-start-failure-with-bind-user.patch | 27 + ...d-V-and-start-log-hide-build-options.patch | 35 + ...ching-for-json-headers-searches-sysr.patch | 47 + .../meta/recipes-connectivity/bind/bind/bind9 | 2 + .../recipes-connectivity/bind/bind/conf.patch | 330 + .../bind/bind/generate-rndc-key.sh | 8 + ...t.d-add-support-for-read-only-rootfs.patch | 65 + .../bind/make-etc-initd-bind-stop-work.patch | 42 + .../bind/bind/named.service | 22 + .../recipes-connectivity/bind/bind_9.18.19.bb | 114 + .../recipes-connectivity/bluez5/bluez5.inc | 158 + ...d-without-systemd-in-the-user-sessio.patch | 56 + .../0001-test-gatt-Fix-hung-issue.patch | 43 + ...et-for-building-tests-without-runnin.patch | 28 + .../recipes-connectivity/bluez5/bluez5/init | 61 + .../bluez5/bluez5/run-ptest | 31 + .../bluez5/bluez5_5.65.bb | 70 + .../connman/connman-conf.bb | 22 + .../connman/connman-conf/main.conf | 2 + .../connman-gnome/0001-Port-to-Gtk3.patch | 277 + ...icon-from-connman-gnome-about-applet.patch | 35 + ...onnman-gnome-fix-dbus-interface-name.patch | 187 + .../images/connman-signal-01.png | Bin 0 -> 490 bytes .../images/connman-signal-02.png | Bin 0 -> 496 bytes .../images/connman-signal-03.png | Bin 0 -> 492 bytes .../images/connman-signal-04.png | Bin 0 -> 470 bytes .../images/connman-signal-05.png | Bin 0 -> 419 bytes .../null_check_for_ipv4_config.patch | 36 + .../connman/connman-gnome_0.7.bb | 30 + .../recipes-connectivity/connman/connman.inc | 218 + ...stop-systemd-resolved-when-we-use-co.patch | 29 + ...visibility-to-default-for-debug-symb.patch | 35 + ...ve-musl-does-not-implement-res_ninit.patch | 83 + .../connman/connman/CVE-2022-32292.patch | 37 + .../connman/connman/CVE-2022-32293_p1.patch | 141 + .../connman/connman/CVE-2022-32293_p2.patch | 174 + .../connman/connman/CVE-2023-28488.patch | 60 + .../connman/connman/connman | 82 + .../connman/connman/no-version-scripts.patch | 27 + .../connman/connman_1.41.bb | 19 + .../dhcpcd/dhcpcd_9.4.1.bb | 64 + ...mprove-the-sitation-of-working-with-.patch | 82 + ...-conflict-error-when-enable-multilib.patch | 46 + ...low-getrandom-sysctl-for-newer-glibc.patch | 30 + ...x-SECCOMP_AUDIT_ARCH-missing-ppc64le.patch | 34 + ...e-INCLUDEDIR-to-prevent-build-issues.patch | 45 + ...sep-Allow-newfstatat-syscall-as-well.patch | 31 + .../dhcpcd/files/dhcpcd.service | 11 + .../dhcpcd/files/dhcpcd@.service | 16 + ...tpd-rcp-rlogin-rsh-rshd-uucpd-fix-ch.patch | 280 + ...-multiple-definitions-of-errcatch-an.patch | 58 + ...03-Indent-changes-in-previous-commit.patch | 254 + .../inetutils/inetutils/CVE-2022-39028.patch | 54 + .../inetutils/fix-buffer-fortify-tfpt.patch | 25 + .../inetutils/fix-disable-ipv6.patch | 85 + ...rse-pull-in-features.h-for-__GLIBC__.patch | 27 + .../inetutils/inetutils-1.8-0003-wchar.patch | 25 + .../inetutils-1.9-PATH_PROCNET_DEV.patch | 37 + ...ly-check-pam_appl.h-when-pam-enabled.patch | 49 + .../inetutils/rexec.xinetd.inetutils | 20 + .../inetutils/rlogin.xinetd.inetutils | 23 + .../inetutils/inetutils/rsh.xinetd.inetutils | 21 + .../inetutils/telnet.xinetd.inetutils | 13 + .../inetutils/tftpd.xinetd.inetutils | 19 + .../inetutils/inetutils_2.2.bb | 214 + .../iproute2/iproute2.inc | 91 + ...01-libc-compat.h-add-musl-workaround.patch | 39 + .../iproute2/iproute2_5.17.0.bb | 11 + ...on-t-use-git-describe-for-versioning.patch | 41 + .../iw/iw/separate-objdir.patch | 50 + poky/meta/recipes-connectivity/iw/iw_5.16.bb | 31 + ...er_unittest_support.cc-do-not-write-.patch | 28 + .../kea/files/fix-multilib-conflict.patch | 58 + .../kea/files/fix_pid_keactrl.patch | 29 + .../kea/files/kea-dhcp-ddns-server | 46 + .../kea/files/kea-dhcp-ddns.service | 13 + .../kea/files/kea-dhcp4-server | 46 + .../kea/files/kea-dhcp4.service | 13 + .../kea/files/kea-dhcp6-server | 47 + .../kea/files/kea-dhcp6.service | 13 + .../recipes-connectivity/kea/kea_2.0.2.bb | 77 + .../libnss-mdns/libnss-mdns_0.15.1.bb | 39 + .../libpcap/libpcap_1.10.1.bb | 43 + .../libuv/libuv_1.44.2.bb | 21 + .../mobile-broadband-provider-info_git.bb | 17 + ...Add-header-dependency-to-nciattach.o.patch | 35 + .../Makefile.am-do-not-ship-version.h.patch | 36 + .../Makefile.am-fix-parallel-issue.patch | 30 + .../recipes-connectivity/neard/neard/neard.in | 54 + .../recipes-connectivity/neard/neard_0.16.bb | 51 + ...-fix-undefined-function-for-libnsm.a.patch | 299 + .../bugfix-adjust-statd-service-name.patch | 39 + .../nfs-utils/nfs-utils/clang-warnings.patch | 36 + .../nfs-utils/nfs-utils/nfs-mountd.service | 17 + .../nfs-utils/nfs-utils/nfs-server.service | 23 + .../nfs-utils/nfs-utils/nfs-statd.service | 14 + .../nfs-utils-debianize-start-statd.patch | 42 + .../nfs-utils/nfs-utils/nfs-utils.conf | 35 + .../nfs-utils/nfs-utils/nfscommon | 63 + .../nfs-utils/nfs-utils/nfsserver | 130 + .../nfs-utils/nfs-utils/proc-fs-nfsd.mount | 8 + .../nfs-utils/nfs-utils_2.6.1.bb | 145 + ...tional-TEMP_FAILURE_RETRY-macro-copy.patch | 36 + ...ith-ell-0.39-by-restoring-unlikely-m.patch | 28 + .../recipes-connectivity/ofono/ofono/ofono | 42 + .../recipes-connectivity/ofono/ofono_1.34.bb | 55 + ...t-using-sandbox-when-cross-compiling.patch | 33 + ...-destination-constraints-for-smartca.patch | 35 + ...401bdd77ca54be6867a154cc01e0d72612e0.patch | 984 + .../openssh/openssh/CVE-2023-38408-0001.patch | 585 + .../openssh/openssh/CVE-2023-38408-0002.patch | 173 + .../openssh/openssh/CVE-2023-38408-0003.patch | 36 + .../openssh/openssh/CVE-2023-38408-0004.patch | 114 + .../add-test-support-for-busybox.patch | 47 + ...467179428a0e3ea9e4aa9738ac12ff02822d.patch | 35 + ...igned-overflow-in-pointer-arithmatic.patch | 111 + .../recipes-connectivity/openssh/openssh/init | 90 + .../openssh/openssh/run-ptest | 45 + .../openssh/openssh/ssh_config | 48 + .../recipes-connectivity/openssh/openssh/sshd | 10 + .../openssh/openssh/sshd.socket | 11 + .../openssh/openssh/sshd@.service | 10 + .../openssh/openssh/sshd_check_keys | 79 + .../openssh/openssh/sshd_config | 118 + .../openssh/openssh/sshdgenkeys.service | 9 + .../openssh/openssh/volatiles.99_sshd | 2 + .../openssh/openssh_8.9p1.bb | 188 + .../openssl/files/environment.d-openssl.sh | 5 + ...1-Configure-do-not-tweak-mips-cflags.patch | 36 + ...sysroot-and-debug-prefix-map-from-co.patch | 78 + .../openssl/openssl/afalg.patch | 31 + .../openssl/openssl/run-ptest | 12 + .../openssl/openssl_3.0.11.bb | 260 + .../ppp-dialin/files/host-peer | 11 + .../ppp-dialin/files/ppp-dialin | 3 + .../ppp-dialin/ppp-dialin_0.1.bb | 28 + ...1-ppp-fix-build-against-5.15-headers.patch | 36 + .../recipes-connectivity/ppp/ppp/08setupdns | 12 + .../recipes-connectivity/ppp/ppp/92removedns | 5 + .../ppp/ppp/CVE-2022-4603.patch | 48 + poky/meta/recipes-connectivity/ppp/ppp/init | 57 + .../meta/recipes-connectivity/ppp/ppp/ip-down | 43 + poky/meta/recipes-connectivity/ppp/ppp/ip-up | 44 + .../ppp/ppp/makefix.patch | 40 + poky/meta/recipes-connectivity/ppp/ppp/pap | 22 + poky/meta/recipes-connectivity/ppp/ppp/poff | 26 + poky/meta/recipes-connectivity/ppp/ppp/pon | 9 + .../recipes-connectivity/ppp/ppp/ppp@.service | 9 + .../recipes-connectivity/ppp/ppp/ppp_on_boot | 21 + .../recipes-connectivity/ppp/ppp/provider | 35 + .../recipes-connectivity/ppp/ppp_2.4.9.bb | 100 + ...01-avoid-using-m-option-for-readlink.patch | 37 + .../resolvconf/resolvconf/99_resolvconf | 4 + .../resolvconf/resolvconf_1.91.bb | 68 + .../socat/socat_1.7.4.4.bb | 51 + .../ssh-pregen-hostkeys/dropbear_rsa_host_key | Bin 0 -> 805 bytes .../openssh/ssh_host_ecdsa_key | 9 + .../openssh/ssh_host_ecdsa_key.pub | 1 + .../openssh/ssh_host_ed25519_key | 7 + .../openssh/ssh_host_ed25519_key.pub | 1 + .../openssh/ssh_host_rsa_key | 38 + .../openssh/ssh_host_rsa_key.pub | 1 + .../ssh-pregen-hostkeys_1.0.bb | 19 + .../wpa-supplicant/99_wpa_supplicant | 1 + .../wpa-supplicant/wpa-supplicant/defconfig | 552 + .../wpa-supplicant/wpa-supplicant.sh | 86 + .../wpa-supplicant/wpa_supplicant.conf | 690 + .../wpa-supplicant/wpa_supplicant.conf-sane | 7 + .../wpa-supplicant/wpa-supplicant_2.10.bb | 108 + .../recipes-core/base-files/base-files/fstab | 11 + .../base-files/base-files/host.conf | 2 + .../recipes-core/base-files/base-files/hosts | 8 + .../recipes-core/base-files/base-files/issue | 0 .../base-files/base-files/issue.net | 0 .../base-files/base-files/licenses/GPL-2 | 340 + .../recipes-core/base-files/base-files/motd | 0 .../base-files/base-files/nsswitch.conf | 19 + .../base-files/base-files/profile | 66 + .../base-files/base-files/rotation | 1 + .../base-files/base-files/share/dot.bashrc | 16 + .../base-files/base-files/share/dot.profile | 11 + .../recipes-core/base-files/base-files/shells | 2 + .../base-files/base-files_3.0.14.bb | 186 + .../base-passwd/add_shutdown.patch | 19 + .../base-passwd/disable-docs.patch | 24 + .../base-passwd/disable-shell.patch | 57 + .../base-passwd/base-passwd/input.patch | 22 + .../base-passwd/base-passwd/kvm.patch | 23 + .../base-passwd/base-passwd/nobash.patch | 15 + .../base-passwd/base-passwd/noshadow.patch | 14 + .../base-passwd/base-passwd_3.5.29.bb | 118 + .../busybox/busybox-inittab_1.35.0.bb | 85 + poky/meta/recipes-core/busybox/busybox.inc | 516 + ...001-depmod-Ignore-.debug-directories.patch | 32 + .../0001-devmem-add-128-bit-width.patch | 128 + ...-works-fix-to-use-145-instead-of-144.patch | 32 + ...tr-ensure-only-printable-characters-.patch | 41 + ...O-of-stable_secret-below-proc-sys-ne.patch | 40 + ...suite-check-uudecode-before-using-it.patch | 45 + ...-www.example.org-for-wget-test-cases.patch | 62 + ...e-all-printed-strings-with-printable.patch | 69 + .../busybox/busybox/CVE-2022-30065.patch | 29 + .../busybox/busybox/CVE-2022-48174.patch | 80 + .../busybox/busybox-cross-menuconfig.patch | 71 + .../busybox/busybox-udhcpc-no_deconfig.patch | 87 + .../recipes-core/busybox/busybox/defconfig | 1217 + .../busybox/busybox/fail_on_no_media.patch | 40 + .../recipes-core/busybox/busybox/getopts.cfg | 3 + .../recipes-core/busybox/busybox/init.cfg | 8 + .../busybox/busybox/login-utilities.cfg | 13 + .../recipes-core/busybox/busybox/longopts.cfg | 15 + .../busybox/busybox/makefile-libbb-race.patch | 34 + .../recipes-core/busybox/busybox/mdev.cfg | 13 + .../busybox/busybox/mount-via-label.cfg | 11 + .../recipes-core/busybox/busybox/musl.cfg | 11 + .../recipes-core/busybox/busybox/pgrep.cfg | 1 + .../busybox/busybox/recognize_connmand.patch | 21 + .../recipes-core/busybox/busybox/resize.cfg | 2 + .../meta/recipes-core/busybox/busybox/rev.cfg | 1 + .../recipes-core/busybox/busybox/sha1sum.cfg | 1 + .../busybox/busybox/sha256sum.cfg | 1 + .../recipes-core/busybox/busybox/syslog.cfg | 11 + .../recipes-core/busybox/busybox/unicode.cfg | 10 + .../recipes-core/busybox/busybox_1.35.0.bb | 58 + .../recipes-core/busybox/files/busybox-cron | 39 + .../recipes-core/busybox/files/busybox-httpd | 44 + .../busybox/files/busybox-klogd.service.in | 8 + .../busybox/files/busybox-syslog.default | 25 + .../busybox/files/busybox-syslog.service.in | 13 + .../recipes-core/busybox/files/busybox-udhcpd | 43 + .../recipes-core/busybox/files/default.script | 4 + .../busybox/files/find-touchscreen.sh | 6 + .../recipes-core/busybox/files/hwclock.sh | 83 + poky/meta/recipes-core/busybox/files/inetd | 33 + .../recipes-core/busybox/files/inetd.conf | 20 + poky/meta/recipes-core/busybox/files/inittab | 28 + poky/meta/recipes-core/busybox/files/mdev | 43 + .../recipes-core/busybox/files/mdev-mount.sh | 63 + .../meta/recipes-core/busybox/files/mdev.conf | 44 + poky/meta/recipes-core/busybox/files/rcK | 26 + poky/meta/recipes-core/busybox/files/rcS | 27 + .../recipes-core/busybox/files/rcS.default | 31 + .../meta/recipes-core/busybox/files/run-ptest | 9 + .../recipes-core/busybox/files/simple.script | 88 + poky/meta/recipes-core/busybox/files/syslog | 97 + .../busybox/files/syslog-startup.conf | 13 + .../recipes-core/busybox/files/syslog.conf | 1 + ...local.mk-fix-cross-compiling-problem.patch | 26 + ...ort-processor-and-hardware-correctly.patch | 64 + ...6ebd536e82b15542a00c888109471936bfda.patch | 93 + .../coreutils/fix-selinux-flask.patch | 37 + .../remove-usr-local-lib-from-m4.patch | 42 + .../coreutils/coreutils/run-ptest | 17 + .../recipes-core/coreutils/coreutils_9.0.bb | 215 + .../recipes-core/dbus-wait/dbus-wait_git.bb | 19 + .../dbus/dbus-glib/no-examples.patch | 17 + .../dbus-glib/test-install-makefile.patch | 57 + .../meta/recipes-core/dbus/dbus-glib_0.112.bb | 39 + poky/meta/recipes-core/dbus/dbus/dbus-1.init | 123 + poky/meta/recipes-core/dbus/dbus/run-ptest | 3 + poky/meta/recipes-core/dbus/dbus/tmpdir.patch | 44 + poky/meta/recipes-core/dbus/dbus_1.14.8.bb | 187 + poky/meta/recipes-core/dropbear/dropbear.inc | 134 + ...1-urandom-xauth-changes-to-options.h.patch | 23 + .../dropbear/0005-dropbear-enable-pam.patch | 42 + .../0006-dropbear-configuration-file.patch | 33 + .../dropbear/dropbear/CVE-2021-36369.patch | 145 + .../dropbear/dropbear/CVE-2023-36328.patch | 144 + .../recipes-core/dropbear/dropbear/dropbear | 4 + .../dropbear-disable-weak-ciphers.patch | 35 + .../dropbear/dropbear/dropbear.default | 2 + .../dropbear/dropbear/dropbear.socket | 10 + .../dropbear/dropbear/dropbear@.service | 12 + .../dropbear/dropbear/dropbearkey.service | 14 + poky/meta/recipes-core/dropbear/dropbear/init | 79 + .../recipes-core/dropbear/dropbear_2020.81.bb | 3 + poky/meta/recipes-core/ell/ell_0.50.bb | 23 + poky/meta/recipes-core/expat/expat/run-ptest | 9 + poky/meta/recipes-core/expat/expat_2.5.0.bb | 31 + poky/meta/recipes-core/fts/fts_1.2.7.bb | 22 + ...t-env.in-do-not-add-C-CXX-parameters.patch | 29 + ...-builds-with-automake-1.16.4-and-new.patch | 29 + ...rge-29-Add-executable-file-mode-bits.patch | 23 + ...01-tests-autopoint-3-unset-MAKEFLAGS.patch | 26 + .../gettext/gettext-0.21/mingw.patch | 28 + .../gettext/gettext-0.21/parallel.patch | 32 + .../gettext/gettext-0.21/run-ptest | 6 + .../gettext-0.21/serial-tests-config.patch | 56 + .../gettext/gettext-0.21/use-pkgconfig.patch | 699 + .../gettext/gettext-minimal-0.21/COPYING | 4 + .../gettext-minimal-0.21/Makefile.in.in | 510 + .../gettext-minimal-0.21/aclocal/gettext.m4 | 386 + .../aclocal/host-cpu-c-abi.m4 | 675 + .../gettext-minimal-0.21/aclocal/iconv.m4 | 288 + .../aclocal/intlmacosx.m4 | 65 + .../gettext-minimal-0.21/aclocal/lib-ld.m4 | 168 + .../gettext-minimal-0.21/aclocal/lib-link.m4 | 800 + .../aclocal/lib-prefix.m4 | 320 + .../gettext-minimal-0.21/aclocal/nls.m4 | 32 + .../gettext-minimal-0.21/aclocal/po.m4 | 450 + .../gettext-minimal-0.21/aclocal/progtest.m4 | 91 + .../gettext/gettext-minimal-0.21/config.rpath | 684 + .../gettext-minimal-0.21/remove-potcdate.sin | 25 + .../gettext/gettext-minimal-native_0.21.bb | 30 + .../meta/recipes-core/gettext/gettext_0.21.bb | 218 + ...-Do-not-ignore-return-value-of-write.patch | 39 + ...t-write-bindir-into-pkg-config-files.patch | 61 + ...0001-Fix-DATADIRNAME-on-uclibc-Linux.patch | 31 + ...-gio-querymodules-as-libexec_PROGRAM.patch | 27 + ...ng-about-deprecated-paths-in-schemas.patch | 40 + ...-correctly-when-building-with-mingw3.patch | 97 + ...-info-don-t-assume-million-in-one-ev.patch | 51 + ...ces.c-comment-out-a-build-host-only-.patch | 28 + ...on-Run-atomics-test-on-clang-as-well.patch | 29 + ...dcode-python-path-into-various-tools.patch | 44 + .../glib-2.0/glib-2.0/CVE-2023-29499.patch | 291 + .../glib-2.0/CVE-2023-32611-0001.patch | 97 + .../glib-2.0/CVE-2023-32611-0002.patch | 282 + .../glib-2.0/glib-2.0/CVE-2023-32636.patch | 50 + .../glib-2.0/glib-2.0/CVE-2023-32643.patch | 155 + .../glib-2.0/CVE-2023-32665-0001.patch | 104 + .../glib-2.0/CVE-2023-32665-0002.patch | 211 + .../glib-2.0/CVE-2023-32665-0003.patch | 418 + .../glib-2.0/CVE-2023-32665-0004.patch | 114 + .../glib-2.0/CVE-2023-32665-0005.patch | 81 + .../glib-2.0/CVE-2023-32665-0006.patch | 397 + .../glib-2.0/CVE-2023-32665-0007.patch | 50 + .../glib-2.0/CVE-2023-32665-0008.patch | 395 + .../glib-2.0/CVE-2023-32665-0009.patch | 98 + ...ble-more-tests-while-cross-compiling.patch | 123 + .../glib-2.0/glib-2.0/meson.cross.d/common | 3 + .../glib-2.0/meson.cross.d/common-glibc | 5 + .../glib-2.0/meson.cross.d/common-linux | 5 + .../glib-2.0/meson.cross.d/common-mingw | 6 + .../glib-2.0/meson.cross.d/common-musl | 6 + .../glib-2.0/glib-2.0/relocate-modules.patch | 50 + .../recipes-core/glib-2.0/glib-2.0/run-ptest | 9 + .../recipes-core/glib-2.0/glib-2.0_2.72.3.bb | 68 + poky/meta/recipes-core/glib-2.0/glib.inc | 198 + .../glib-networking/glib-networking/run-ptest | 3 + .../glib-networking/glib-networking_2.72.2.bb | 38 + .../glibc/cross-localedef-native_2.35.bb | 54 + .../recipes-core/glibc/glibc-collateral.inc | 12 + poky/meta/recipes-core/glibc/glibc-common.inc | 25 + poky/meta/recipes-core/glibc/glibc-ld.inc | 20 + poky/meta/recipes-core/glibc/glibc-locale.inc | 97 + .../recipes-core/glibc/glibc-locale_2.35.bb | 1 + poky/meta/recipes-core/glibc/glibc-mtrace.inc | 16 + .../recipes-core/glibc/glibc-mtrace_2.35.bb | 1 + .../meta/recipes-core/glibc/glibc-package.inc | 292 + .../meta/recipes-core/glibc/glibc-scripts.inc | 23 + .../recipes-core/glibc/glibc-scripts_2.35.bb | 1 + poky/meta/recipes-core/glibc/glibc-tests.inc | 32 + .../recipes-core/glibc/glibc-tests_2.35.bb | 120 + .../glibc/glibc-testsuite_2.35.bb | 35 + .../meta/recipes-core/glibc/glibc-version.inc | 8 + poky/meta/recipes-core/glibc/glibc.inc | 58 + ...lement-a-useful-version-of-_startup_.patch | 128 + ...dd-hardlink-resolver-from-util-linux.patch | 1130 + ...-fix-ups-hardlink-to-make-it-compile.patch | 238 + ...Look-for-host-system-ld.so.cache-as-.patch | 65 + ...Fix-buffer-overrun-with-a-relocated-.patch | 46 + ...Raise-the-size-of-arrays-containing-.patch | 153 + ...k-glibc-Allow-64-bit-atomics-for-x86.patch | 43 + ...Make-relocatable-install-for-locales.patch | 100 + ...Fall-back-to-faccessat-on-faccess2-r.patch | 32 + ...the-path-sets-wrong-config-variables.patch | 260 + ...ss-building-and-testing-instructions.patch | 616 + ...glibc-Help-bootstrap-cross-toolchain.patch | 97 + ...eglibc-Resolve-__fpscr_values-on-SH4.patch | 53 + ...port-cross-locale-generation-support.patch | 560 + ...-archive-uses-a-hard-coded-locale-pa.patch | 80 + ...aybe-uninitialized-errors-with-Os-BZ.patch | 53 + ...RE_KNOWN_INTERPRETER_NAMES-to-known-.patch | 29 + ...y-the-header-between-arm-and-aarch64.patch | 70 + ...Do-not-ask-compiler-for-finding-arch.patch | 48 + ...h-printf-builtin-in-nscd-init-script.patch | 79 + ...igure.ac-Set-libc_cv_rootsbindir-onl.patch | 39 + ...ell-interpreter-overridable-in-tzsel.patch | 47 + ...d-failed-in-unprivileged-process-BZ-.patch | 88 + .../glibc/glibc/check-test-wrapper | 80 + .../recipes-core/glibc/glibc/etc/ld.so.conf | 1 + .../glibc/glibc/generate-supported.mk | 11 + poky/meta/recipes-core/glibc/glibc/makedbs.sh | 177 + .../glibc/glibc/reproducible-paths.patch | 23 + poky/meta/recipes-core/glibc/glibc/run-ptest | 37 + poky/meta/recipes-core/glibc/glibc_2.35.bb | 128 + .../ldconfig-native-2.12.1/32and64bit.patch | 331 + .../glibc/ldconfig-native-2.12.1/README | 8 + .../add-64-bit-flag-for-ELF64-entries.patch | 116 + .../add-riscv-support.patch | 79 + .../endian-ness_handling.patch | 454 + .../endian-ness_handling_fix.patch | 47 + .../endianess-header.patch | 113 + .../ldconfig-native-2.12.1/flag_fix.patch | 24 + ...dconfig-default-to-all-multilib-dirs.patch | 37 + .../ldconfig-native-2.12.1.tar.bz2 | Bin 0 -> 21491 bytes .../ldconfig-native-2.12.1/ldconfig.patch | 471 + .../ldconfig_aux-cache_path_fix.patch | 36 + .../ldconfig-native-2.12.1/no-aux-cache.patch | 19 + .../glibc/ldconfig-native_2.12.1.bb | 36 + .../0001-Define-FNM_EXTMATCH-for-musl.patch | 47 + ...not-use-dpkg-for-determining-OS-type.patch | 23 + .../0001-ifupdown-skip-wrong-test-case.patch | 32 + .../recipes-core/ifupdown/files/99_network | 1 + ...t-rely-on-dpkg-architecture-to-set-a.patch | 57 + .../recipes-core/ifupdown/files/run-ptest | 4 + .../ifupdown/files/tweak-ptest-script.patch | 54 + .../recipes-core/ifupdown/ifupdown_0.8.39.bb | 57 + .../README_VirtualBox_Guest_Additions.txt | 75 + .../README_VirtualBox_Toaster.txt | 78 + .../Yocto_Build_Appliance.vmx | 46 + .../Yocto_Build_Appliance.vmxf | 8 + .../images/build-appliance-image_15.0.0.bb | 139 + .../recipes-core/images/core-image-base.bb | 8 + .../images/core-image-minimal-dev.bb | 7 + .../images/core-image-minimal-initramfs.bb | 32 + .../images/core-image-minimal-mtdutils.bb | 7 + .../recipes-core/images/core-image-minimal.bb | 12 + .../images/core-image-ptest-all.bb | 25 + .../images/core-image-ptest-fast.bb | 24 + .../images/core-image-tiny-initramfs.bb | 44 + .../init-ifupdown/init-ifupdown-1.0/copyright | 11 + .../init-ifupdown/init-ifupdown-1.0/init | 90 + .../init-ifupdown-1.0/interfaces | 31 + .../init-ifupdown/init-ifupdown-1.0/nfsroot | 39 + .../init-ifupdown-1.0/qemuall/interfaces | 5 + .../init-ifupdown/init-ifupdown_1.0.bb | 41 + .../initrdscripts/files/init-boot.sh | 10 + .../files/init-install-efi-testfs.sh | 199 + .../initrdscripts/files/init-install-efi.sh | 304 + .../files/init-install-testfs.sh | 220 + .../initrdscripts/files/init-install.sh | 343 + .../initrdscripts/files/init-live.sh | 235 + .../initrdscripts/initramfs-boot_1.0.bb | 21 + .../initrdscripts/initramfs-framework/debug | 82 + .../initrdscripts/initramfs-framework/e2fs | 28 + .../initrdscripts/initramfs-framework/exec | 29 + .../initrdscripts/initramfs-framework/finish | 48 + .../initrdscripts/initramfs-framework/init | 163 + .../initrdscripts/initramfs-framework/lvm | 13 + .../initrdscripts/initramfs-framework/mdev | 30 + .../initramfs-framework/nfsrootfs | 48 + .../initramfs-framework/overlayroot | 112 + .../initrdscripts/initramfs-framework/rootfs | 66 + .../initramfs-framework/setup-live | 64 + .../initrdscripts/initramfs-framework/udev | 50 + .../initrdscripts/initramfs-framework_1.0.bb | 118 + .../initramfs-live-boot-tiny_1.0.bb | 21 + .../initrdscripts/initramfs-live-boot_1.0.bb | 21 + .../initramfs-live-install-efi-testfs_1.0.bb | 16 + .../initramfs-live-install-efi_1.0.bb | 25 + .../initramfs-live-install-testfs_1.0.bb | 16 + .../initramfs-live-install_1.0.bb | 25 + .../initramfs-module-install-efi_1.0.bb | 18 + .../initramfs-module-install_1.0.bb | 23 + .../initramfs-module-setup-live_1.0.bb | 20 + .../initscripts/init-system-helpers_1.62.bb | 41 + .../initscripts/initscripts-1.0/alignment.sh | 17 + .../initscripts/initscripts-1.0/banner.sh | 28 + .../initscripts/initscripts-1.0/bootmisc.sh | 88 + .../initscripts/initscripts-1.0/checkfs.sh | 54 + .../initscripts/initscripts-1.0/checkroot.sh | 152 + .../initscripts/initscripts-1.0/devpts | 5 + .../initscripts/initscripts-1.0/devpts.sh | 32 + .../initscripts/initscripts-1.0/dmesg.sh | 21 + .../initscripts/initscripts-1.0/functions | 94 + .../initscripts/initscripts-1.0/halt | 33 + .../initscripts/initscripts-1.0/hostname.sh | 26 + .../initscripts-1.0/logrotate-dmesg.conf | 9 + .../initscripts/initscripts-1.0/mountall.sh | 49 + .../initscripts/initscripts-1.0/mountnfs.sh | 95 + .../initscripts-1.0/populate-volatile.sh | 277 + .../initscripts-1.0/read-only-rootfs-hook.sh | 46 + .../initscripts/initscripts-1.0/reboot | 19 + .../initscripts/initscripts-1.0/rmnologin.sh | 24 + .../initscripts/initscripts-1.0/save-rtc.sh | 21 + .../initscripts/initscripts-1.0/sendsigs | 25 + .../initscripts/initscripts-1.0/single | 28 + .../initscripts/initscripts-1.0/sushell | 8 + .../initscripts/initscripts-1.0/sysfs.sh | 39 + .../initscripts/initscripts-1.0/umountfs | 28 + .../initscripts/initscripts-1.0/umountnfs.sh | 37 + .../initscripts/initscripts-1.0/urandom | 53 + .../initscripts/initscripts-1.0/volatiles | 37 + .../initscripts/initscripts_1.0.bb | 188 + poky/meta/recipes-core/kbd/kbd_2.4.0.bb | 46 + .../recipes-core/libcgroup/libcgroup_2.0.2.bb | 33 + ...ommon.pm-compatible-with-latest-perl.patch | 50 + ...ve-smartmatch-usage-from-gen-crypt-h.patch | 62 + .../libxcrypt/files/fix_cflags_handling.patch | 33 + .../libxcrypt/libxcrypt-compat_4.4.33.bb | 18 + .../meta/recipes-core/libxcrypt/libxcrypt.inc | 32 + .../libxcrypt/libxcrypt_4.4.33.bb | 2 + ...he-python-tests-if-python-is-enabled.patch | 86 + .../0001-Port-gentest.py-to-Python-3.patch | 814 + .../libxml/libxml2/CVE-2022-40303.patch | 624 + .../libxml/libxml2/CVE-2022-40304.patch | 106 + .../libxml/libxml2/CVE-2023-28484.patch | 79 + .../libxml/libxml2/CVE-2023-29469.patch | 42 + .../libxml/libxml2/CVE-2023-39615-0001.patch | 37 + .../libxml/libxml2/CVE-2023-39615-0002.patch | 72 + .../libxml2/fix-execution-of-ptests.patch | 33 + .../libxml/libxml2/libxml-64bit.patch | 28 + .../libxml2/libxml-m4-use-pkgconfig.patch | 230 + .../libxml2/python-sitepackages-dir.patch | 35 + .../libxml2/remove-fuzz-from-ptests.patch | 44 + .../recipes-core/libxml/libxml2/run-ptest | 4 + .../recipes-core/libxml/libxml2/runtest.patch | 849 + .../recipes-core/libxml/libxml2_2.9.14.bb | 131 + poky/meta/recipes-core/meta/build-sysroots.bb | 43 + .../meta/buildtools-docs-tarball.bb | 18 + .../meta/buildtools-extended-tarball.bb | 49 + .../recipes-core/meta/buildtools-tarball.bb | 123 + .../recipes-core/meta/cve-update-db-native.bb | 291 + .../meta/cve-update-nvd2-native.bb | 342 + .../recipes-core/meta/dummy-sdk-package.inc | 31 + .../meta/meta-environment-extsdk.bb | 12 + .../recipes-core/meta/meta-environment.bb | 83 + .../meta/meta-extsdk-toolchain.bb | 29 + .../recipes-core/meta/meta-go-toolchain.bb | 12 + .../recipes-core/meta/meta-ide-support.bb | 21 + poky/meta/recipes-core/meta/meta-toolchain.bb | 6 + .../recipes-core/meta/meta-world-pkgdata.bb | 53 + .../meta/nativesdk-buildtools-perl-dummy.bb | 43 + .../meta/nativesdk-sdk-provides-dummy.bb | 17 + poky/meta/recipes-core/meta/package-index.bb | 26 + poky/meta/recipes-core/meta/signing-keys.bb | 81 + .../meta/target-sdk-provides-dummy.bb | 61 + .../recipes-core/meta/testexport-tarball.bb | 69 + .../recipes-core/meta/uninative-tarball.bb | 71 + poky/meta/recipes-core/meta/wic-tools.bb | 28 + poky/meta/recipes-core/musl/bsd-headers.bb | 31 + .../recipes-core/musl/bsd-headers/sys-cdefs.h | 26 + .../recipes-core/musl/bsd-headers/sys-queue.h | 846 + .../recipes-core/musl/bsd-headers/sys-tree.h | 761 + ...Static-PIE-does-not-work-on-musl-ppc.patch | 30 + poky/meta/recipes-core/musl/gcompat_git.bb | 57 + .../recipes-core/musl/libssp-nonshared.bb | 35 + .../musl/libssp-nonshared/stack_chk.c | 40 + .../meta/recipes-core/musl/libucontext_1.2.bb | 52 + poky/meta/recipes-core/musl/musl-obstack.bb | 22 + poky/meta/recipes-core/musl/musl-utils.bb | 27 + poky/meta/recipes-core/musl/musl.inc | 31 + ...ic-linker-a-relative-symlink-to-libc.patch | 69 + ...ir-and-libdir-as-default-pathes-to-l.patch | 54 + poky/meta/recipes-core/musl/musl_git.bb | 87 + .../ncurses/files/0001-tic-hang.patch | 43 + .../files/0002-configure-reproducible.patch | 33 + ...-Do-not-include-LDFLAGS-in-generated.patch | 30 + .../ncurses/files/CVE-2023-29491.patch | 464 + poky/meta/recipes-core/ncurses/ncurses.inc | 327 + .../ncurses/ncurses_6.3+20220423.bb | 15 + .../recipes-core/ncurses/site_config/headers | 5 + poky/meta/recipes-core/netbase/netbase_6.3.bb | 23 + .../newlib/libgloss/fix-rs6000-crt0.patch | 41 + .../libgloss/fix_makefile_include_arm_h.patch | 30 + .../recipes-core/newlib/libgloss_4.2.0.bb | 33 + poky/meta/recipes-core/newlib/newlib.inc | 60 + poky/meta/recipes-core/newlib/newlib_4.2.0.bb | 20 + .../recipes-core/os-release/os-release.bb | 60 + .../recipes-core/ovmf/ovmf-shell-image.bb | 21 + .../0001-BaseTools-fix-gcc12-warning-1.patch | 51 + .../0001-BaseTools-fix-gcc12-warning.patch | 49 + ...ovmf-update-path-to-native-BaseTools.patch | 33 + ...ile-adjust-to-build-in-under-bitbake.patch | 71 + .../ovmf/0003-ovmf-Update-to-latest.patch | 45 + .../ovmf/ovmf/0005-debug-prefix-map.patch | 104 + .../ovmf/ovmf/0006-reproducible.patch | 180 + .../ovmf/ovmf/ovmf-shell-image.wks | 4 + poky/meta/recipes-core/ovmf/ovmf_git.bb | 268 + .../nativesdk-packagegroup-sdk-host.bb | 39 + .../packagegroups/packagegroup-base.bb | 345 + .../packagegroups/packagegroup-core-boot.bb | 41 + .../packagegroup-core-buildessential.bb | 31 + .../packagegroup-core-eclipse-debug.bb | 9 + .../packagegroups/packagegroup-core-nfs.bb | 19 + .../packagegroups/packagegroup-core-sdk.bb | 81 + .../packagegroup-core-ssh-dropbear.bb | 7 + .../packagegroup-core-ssh-openssh.bb | 6 + ...packagegroup-core-standalone-sdk-target.bb | 21 + .../packagegroup-core-tools-debug.bb | 24 + .../packagegroup-core-tools-profile.bb | 72 + .../packagegroup-core-tools-testapps.bb | 63 + .../packagegroup-cross-canadian.bb | 24 + .../packagegroup-go-cross-canadian.bb | 12 + .../packagegroup-go-sdk-target.bb | 12 + .../packagegroup-rust-cross-canadian.bb | 18 + .../packagegroups/packagegroup-self-hosted.bb | 195 + .../recipes-core/psplash/files/psplash-init | 40 + .../psplash/files/psplash-poky-img.h | 1259 + .../psplash/files/psplash-start.service | 13 + .../psplash/files/psplash-systemd.service | 14 + poky/meta/recipes-core/psplash/psplash_git.bb | 129 + poky/meta/recipes-core/readline/files/inputrc | 61 + .../recipes-core/readline/files/rl-native.map | 12 + poky/meta/recipes-core/readline/readline.inc | 57 + .../readline/readline/configure-fix.patch | 35 + .../readline/readline/norpath.patch | 21 + .../recipes-core/readline/readline_8.1.2.bb | 7 + poky/meta/recipes-core/seatd/seatd/init | 45 + poky/meta/recipes-core/seatd/seatd_0.6.4.bb | 35 + .../obsolete_automake_macros.patch | 15 + .../sysfsutils-2.1.0/separatebuild.patch | 65 + .../sysfsutils-2.0.0-class-dup.patch | 23 + .../sysfsutils/sysfsutils_2.1.0.bb | 27 + .../systemd/systemd-boot_250.5.bb | 73 + .../systemd/systemd-bootconf_1.00.bb | 32 + .../systemd/systemd-compat-units.bb | 49 + .../systemd/systemd-conf/journald.conf | 3 + .../systemd/systemd-conf/logind.conf | 2 + .../systemd/systemd-conf/system.conf | 2 + .../systemd/systemd-conf/system.conf-qemuall | 3 + .../systemd/systemd-conf/wired.network | 13 + .../recipes-core/systemd/systemd-conf_1.0.bb | 43 + .../systemd/systemd-machine-units_1.0.bb | 13 + .../systemd/systemd-serialgetty.bb | 52 + .../systemd-serialgetty/serial-getty@.service | 45 + .../systemd/systemd-systemctl-native.bb | 17 + .../systemd/systemd-systemctl/systemctl | 350 + poky/meta/recipes-core/systemd/systemd.inc | 21 + .../systemd/systemd/00-create-volatile.conf | 8 + .../systemd/00-hostnamed-network-user.conf | 6 + .../0001-Adjust-for-musl-headers.patch | 525 + ...sysctl.d-binfmt.d-modules-load.d-to-.patch | 73 + ...tall-dependency-links-at-install-tim.patch | 81 + ...nly-managed-configs-on-reconfigure-o.patch | 358 + ...-host-root-can-write-to-the-uidmappe.patch | 216 + ...ass-correct-parameters-to-getdents64.patch | 51 + ...e-Use-sockaddr-pointer-type-for-bind.patch | 46 + ...w-json_variant_dump-to-return-an-err.patch | 60 + .../0002-Add-sys-stat.h-for-S_IFDIR.patch | 27 + ...implment-systemd-sysv-install-for-OE.patch | 41 + ...3-missing_type.h-add-comparison_fn_t.patch | 61 + ...k-parse_printf_format-implementation.patch | 433 + ...missing.h-check-for-missing-strndupa.patch | 709 + ...OB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch | 153 + ...008-add-missing-FTW_-macros-for-musl.patch | 74 + ..._register_atfork-for-non-glibc-build.patch | 46 + ...10-Use-uintmax_t-for-handling-rlim_t.patch | 104 + ...sable-tests-for-missing-typedefs-in-.patch | 39 + ...T_SYMLINK_NOFOLLOW-flag-to-faccessat.patch | 97 + ...patible-basename-for-non-glibc-syste.patch | 32 + ...uffering-when-writing-to-oom_score_a.patch | 39 + ...compliant-strerror_r-from-GNU-specif.patch | 60 + ...definition-of-prctl_mm_map-structure.patch | 30 + .../0021-test-json.c-define-M_PIl.patch | 35 + ...-not-disable-buffer-in-writing-files.patch | 467 + .../0025-Handle-__cpu_mask-usage.patch | 58 + .../systemd/0026-Handle-missing-gshadow.patch | 171 + ...l.h-Define-MIPS-ABI-defines-for-musl.patch | 47 + .../systemd/systemd/99-default.preset | 1 + .../systemd/systemd/CVE-2022-3821.patch | 45 + .../systemd/systemd/CVE-2022-4415-1.patch | 109 + .../systemd/systemd/CVE-2022-4415-2.patch | 391 + .../systemd/systemd/CVE-2022-45873.patch | 124 + poky/meta/recipes-core/systemd/systemd/init | 104 + .../org.freedesktop.hostname1_no_polkit.conf | 11 + .../systemd/systemd/systemd-pager.sh | 7 + .../systemd/systemd/touchscreen.rules | 18 + .../recipes-core/systemd/systemd_250.5.bb | 800 + .../sysvinit/sysvinit-inittab/inittab | 30 + .../sysvinit/sysvinit-inittab/start_getty | 20 + .../sysvinit/sysvinit-inittab_2.88dsf.bb | 93 + ...acros.h-for-major-minor-defines-in-g.patch | 50 + .../sysvinit/sysvinit/01_bootlogd | 1 + .../sysvinit/sysvinit/bootlogd.init | 98 + .../sysvinit/sysvinit/crypt-lib.patch | 38 + .../sysvinit/sysvinit/install.patch | 97 + .../sysvinit/pidof-add-m-option.patch | 191 + poky/meta/recipes-core/sysvinit/sysvinit/rc | 182 + poky/meta/recipes-core/sysvinit/sysvinit/rcS | 34 + .../sysvinit/sysvinit/rcS-default | 36 + .../sysvinit/sysvinit/realpath.patch | 59 + .../recipes-core/sysvinit/sysvinit_3.01.bb | 117 + ...-rules-remove-firmware-loading-rules.patch | 28 + ...ve-userspace-firmware-loading-suppor.patch | 364 + .../recipes-core/udev/eudev/devfs-udev.rules | 108 + poky/meta/recipes-core/udev/eudev/init | 93 + poky/meta/recipes-core/udev/eudev/links.conf | 21 + poky/meta/recipes-core/udev/eudev/local.rules | 19 + .../recipes-core/udev/eudev/permissions.rules | 131 + poky/meta/recipes-core/udev/eudev/run.rules | 14 + poky/meta/recipes-core/udev/eudev/udev.rules | 116 + poky/meta/recipes-core/udev/eudev_3.2.10.bb | 93 + .../udev/udev-extraconf/automount.rules | 19 + .../udev/udev-extraconf/autonet.rules | 19 + .../udev/udev-extraconf/localextra.rules | 23 + .../udev/udev-extraconf/mount.ignorelist | 5 + .../recipes-core/udev/udev-extraconf/mount.sh | 207 + .../udev/udev-extraconf/network.sh | 54 + .../recipes-core/udev/udev-extraconf_1.1.bb | 58 + .../update-rc.d/update-rc.d_0.8.bb | 26 + .../util-linux/util-linux-libuuid_2.37.4.bb | 16 + .../recipes-core/util-linux/util-linux.inc | 40 + .../util-linux/avoid_parallel_tests.patch | 29 + .../util-linux/configure-sbindir.patch | 23 + .../display_testname_for_subtest.patch | 25 + .../util-linux/util-linux/ptest.patch | 24 + .../util-linux/util-linux/run-ptest | 24 + .../util-linux/util-linux/runuser-l.pamd | 3 + .../util-linux/util-linux/runuser.pamd | 4 + .../util-linux/util-linux_2.37.4.bb | 323 + .../volatile-binds/files/COPYING.MIT | 17 + .../volatile-binds/files/mount-copybind | 83 + .../files/volatile-binds.service.in | 19 + .../volatile-binds/volatile-binds.bb | 85 + .../recipes-core/zlib/site_config/headers | 1 + ...configure-Pass-LDFLAGS-to-link-tests.patch | 79 + .../zlib/zlib/CVE-2018-25032.patch | 347 + .../zlib/zlib/CVE-2022-37434.patch | 44 + .../zlib/zlib/ldflags-tests.patch | 45 + poky/meta/recipes-core/zlib/zlib/run-ptest | 7 + poky/meta/recipes-core/zlib/zlib_1.2.11.bb | 55 + ...void-changing-install-paths-based-on.patch | 29 + ...e-documentation-directory-altogether.patch | 27 + ...-init-tables-from-dpkg-configuration.patch | 29 + .../apt/apt/0001-Fix-musl-build.patch | 28 + ...atat64-and-prlimit64-defines-on-musl.patch | 48 + ...n-dpkg-configure-a-at-the-end-of-our.patch | 48 + .../0001-aptwebserver.cc-Include-array.patch | 30 + .../0001-cmake-Do-not-build-po-files.patch | 37 + poky/meta/recipes-devtools/apt/apt/triehash | 728 + poky/meta/recipes-devtools/apt/apt_2.4.5.bb | 137 + .../autoconf-archive_2022.02.11.bb | 17 + ...ilers-that-moan-about-K-R-func-decls.patch | 138 + .../autoconf/autoreconf-exclude.patch | 123 + .../autotest-automake-result-format.patch | 129 + .../autoconf/autoconf/man-host-perl.patch | 24 + .../autoconf/autoconf/no-man.patch | 21 + .../autoconf/autoconf/preferbash.patch | 38 + .../autoconf/autoconf/program_prefix.patch | 27 + .../remove-usr-local-lib-from-m4.patch | 34 + .../autoconf/autoconf_2.71.bb | 82 + .../recipes-devtools/automake/automake.inc | 21 + ...ke-Add-default-libtool_tag-to-cppasm.patch | 27 + ...date-for-python.m4-to-respect-libdir.patch | 83 + ...01-build-fix-race-in-parallel-builds.patch | 65 + .../automake/automake/buildtest.patch | 47 + .../new_rt_path_for_test-driver.patch | 48 + .../automake/automake/performance.patch | 82 + .../automake/automake_1.16.5.bb | 42 + .../binutils/binutils-2.38.inc | 63 + .../binutils/binutils-cross-canadian.inc | 30 + .../binutils/binutils-cross-canadian_2.38.bb | 3 + .../binutils/binutils-cross-testsuite_2.38.bb | 81 + .../binutils/binutils-cross.inc | 38 + .../binutils/binutils-cross_2.38.bb | 3 + .../binutils/binutils-crosssdk_2.38.bb | 13 + .../recipes-devtools/binutils/binutils.inc | 184 + ...s-crosssdk-Generate-relocatable-SDKs.patch | 75 + ...o-not-generate-linker-script-directo.patch | 59 + ...dk-Search-for-alternative-ld.so.conf.patch | 95 + ...004-Point-scripts-location-to-libdir.patch | 39 + ...-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch | 37 + ...stro-compiler-point-to-the-wrong-ins.patch | 32 + ...-system-directories-when-cross-linki.patch | 288 + ...ect-assembling-for-ppc-wait-mnemonic.patch | 37 + .../binutils/0009-Use-libtool-2.4.patch | 25302 ++++++++++++++++ ...h-in-libtool-when-sysroot-is-enabled.patch | 49 + .../0011-sync-with-OE-libtool-changes.patch | 86 + ...or-clang-before-checking-gcc-version.patch | 45 + .../0013-Avoid-as-info-race-condition.patch | 75 + .../binutils/0014-CVE-2019-1010204.patch | 49 + .../binutils/0015-CVE-2022-38533.patch | 36 + .../binutils/0016-CVE-2022-38126.patch | 34 + .../binutils/0017-CVE-2022-38127-1.patch | 1224 + .../binutils/0017-CVE-2022-38127-2.patch | 188 + .../binutils/0017-CVE-2022-38127-3.patch | 211 + .../binutils/0017-CVE-2022-38127-4.patch | 43 + .../binutils/0018-CVE-2022-38128-1.patch | 350 + .../binutils/0018-CVE-2022-38128-2.patch | 436 + .../binutils/0018-CVE-2022-38128-3.patch | 95 + .../binutils/0019-CVE-2022-4285.patch | 37 + .../binutils/0020-CVE-2023-22608-1.patch | 506 + .../binutils/0020-CVE-2023-22608-2.patch | 210 + .../binutils/0020-CVE-2023-22608-3.patch | 32 + .../binutils/0021-CVE-2023-1579-1.patch | 459 + .../binutils/0021-CVE-2023-1579-2.patch | 2127 ++ .../binutils/0021-CVE-2023-1579-3.patch | 156 + .../binutils/0021-CVE-2023-1579-4.patch | 37 + .../binutils/0022-CVE-2023-25584-1.patch | 56 + .../binutils/0022-CVE-2023-25584-2.patch | 38 + .../binutils/0022-CVE-2023-25584-3.patch | 534 + .../binutils/0023-CVE-2023-25585.patch | 54 + .../binutils/0025-CVE-2023-25588.patch | 147 + .../binutils/0026-CVE-2023-1972.patch | 41 + .../binutils/0029-CVE-2022-48065-1.patch | 31 + .../binutils/0029-CVE-2022-48065-2.patch | 115 + .../binutils/0029-CVE-2022-48065-3.patch | 122 + .../binutils/binutils_2.38.bb | 69 + .../bison/bison/add-with-bisonlocaledir.patch | 58 + .../recipes-devtools/bison/bison_3.8.2.bb | 54 + ...ake-sure-only-one-bootchartd-process.patch | 68 + ...or-Allocate-space-on-heap-for-chunks.patch | 45 + .../bootchart2/bootchart2/bootchartd_stop.sh | 18 + .../bootchart2/bootchart2_0.14.9.bb | 165 + ...y-to-specify-where-python-modules-ar.patch | 25 + .../btrfs-tools/btrfs-tools_5.16.2.bb | 71 + .../cargo/cargo-cross-canadian.inc | 72 + .../cargo/cargo-cross-canadian_1.59.0.bb | 6 + poky/meta/recipes-devtools/cargo/cargo.inc | 56 + .../recipes-devtools/cargo/cargo_1.59.0.bb | 4 + ...x-FTBFS-with-not-yet-released-GCC-13.patch | 92 + .../recipes-devtools/ccache/ccache_4.6.bb | 28 + .../cdrtools/cdrtools-native_3.01.bb | 28 + ...001-Don-t-set-uid-gid-during-install.patch | 27 + .../chrpath/chrpath/standarddoc.patch | 32 + .../recipes-devtools/chrpath/chrpath_0.16.bb | 24 + .../cmake/cmake-native_3.22.3.bb | 65 + poky/meta/recipes-devtools/cmake/cmake.inc | 30 + ...stem-use-oe-environment-vars-to-load.patch | 44 + ...t-OpenEmbedded-Qt4-tool-binary-names.patch | 56 + ...-if-system-Qt-installation-is-broken.patch | 79 + ...xt2fs-ext2_fs.h-by-cmake-s-internal-.patch | 39 + .../cmake/cmake/OEToolchainConfig.cmake | 20 + .../cmake/SDKToolchainConfig.cmake.template | 31 + .../cmake/cmake/cmake-setup.py | 33 + .../cmake/cmake/environment.d-cmake.sh | 2 + .../recipes-devtools/cmake/cmake_3.22.3.bb | 67 + ...PYTHON_INSTALL_DIR-by-running-python.patch | 28 + .../createrepo-c/createrepo-c_0.19.0.bb | 40 + .../recipes-devtools/dejagnu/dejagnu_1.6.3.bb | 18 + .../desktop-file-utils_0.26.bb | 25 + .../devel-config/distcc-config.bb | 23 + .../devel-config/distcc-config/distcc.sh | 4 + .../devel-config/nfs-export-root.bb | 17 + .../devel-config/nfs-export-root/exports | 1 + .../diffstat/avoid-check-user-break-cc.patch | 32 + .../diffstat/diffstat/run-ptest | 5 + .../diffstat/diffstat_1.64.bb | 27 + .../recipes-devtools/distcc/distcc_3.4.bb | 88 + .../recipes-devtools/distcc/files/default | 24 + .../meta/recipes-devtools/distcc/files/distcc | 119 + .../distcc/files/distcc.service | 11 + ...mitting-changes-from-do_unpack_extra.patch | 25 + .../dmidecode/CVE-2023-30630_1a.patch | 236 + .../dmidecode/CVE-2023-30630_1b.patch | 197 + .../dmidecode/CVE-2023-30630_2.patch | 83 + .../dmidecode/CVE-2023-30630_3.patch | 71 + .../dmidecode/CVE-2023-30630_4.patch | 138 + .../dmidecode/dmidecode_3.3.bb | 29 + ...tly-install-tmpfiles.d-configuration.patch | 22 + ...ode-etc-and-systemd-unit-directories.patch | 27 + .../0001-dnf-write-the-log-lock-to-root.patch | 29 + ...et-python-path-for-completion_helper.patch | 24 + ...Do-not-prepend-installroot-to-logdir.patch | 31 + ...PYTHON_INSTALL_DIR-by-running-python.patch | 25 + .../0030-Run-python-scripts-using-env.patch | 38 + poky/meta/recipes-devtools/dnf/dnf_4.11.1.bb | 90 + .../docbook-xml-dtd4/LICENSE-OASIS | 16 + .../docbook-xml-update-catalog.xml.patch | 515 + .../docbook-xml/docbook-xml-dtd4_4.5.bb | 52 + ...esheets-no-bashism-in-docbook-xsl-up.patch | 24 + .../docbook-xsl-stylesheets_1.79.1.bb | 51 + .../dosfstools/dosfstools_4.2.bb | 28 + poky/meta/recipes-devtools/dpkg/dpkg.inc | 106 + .../0001-Add-support-for-riscv32-CPU.patch | 39 + ...ive-Prevent-directory-traversal-for-.patch | 328 + ...ild.c-ignore-return-of-1-from-tar-cf.patch | 56 + .../0001-dpkg-Support-muslx32-build.patch | 41 + ...rs-kernel-version-which-has-characte.patch | 38 + ...s-expect-D-to-be-set-when-running-in.patch | 86 + ...tion-doesn-t-work-properly-for-all-s.patch | 31 + ...add-musleabi-to-known-target-tripets.patch | 42 + ...c-Remove-usage-of-clamp-mtime-in-tar.patch | 41 + .../dpkg/dpkg/add_armeb_triplet_entry.patch | 48 + .../recipes-devtools/dpkg/dpkg/arch_pm.patch | 29 + .../recipes-devtools/dpkg/dpkg/noman.patch | 21 + .../recipes-devtools/dpkg/dpkg/pager.patch | 21 + .../dpkg/dpkg/remove-tar-no-timestamp.patch | 24 + .../meta/recipes-devtools/dpkg/dpkg_1.21.4.bb | 24 + .../dwarfsrcfiles/dwarfsrcfiles.bb | 23 + .../dwarfsrcfiles/files/dwarfsrcfiles.c | 118 + .../recipes-devtools/e2fsprogs/e2fsprogs.inc | 27 + ...-missing-check-for-permission-denied.patch | 33 + .../e2fsprogs/e2fsprogs/extents.patch | 56 + .../e2fsprogs/e2fsprogs/mkdir_p.patch | 29 + .../e2fsprogs/e2fsprogs/ptest.patch | 83 + .../e2fsprogs/e2fsprogs/quiet-debugfs.patch | 28 + .../e2fsprogs/remove.ldconfig.call.patch | 44 + .../e2fsprogs/e2fsprogs/run-ptest | 11 + .../e2fsprogs/e2fsprogs_1.46.5.bb | 147 + .../elfutils/elfutils_0.186.bb | 166 + ...infod-client.c-use-long-for-cache-ti.patch | 45 + ...ompilation-on-platforms-without-erro.patch | 54 + .../elfutils/files/0001-dso-link-change.patch | 50 + ...libasm-may-link-with-libbz2-if-found.patch | 36 + ...-check-data_list.data.d.d_buf-before.patch | 44 + ...-skip-the-test-when-gcc-not-deployed.patch | 71 + ...m-compile-test_nlist-with-standard-C.patch | 28 + ...cvt_gunhash-if-dest-and-src-are-same.patch | 40 + .../elfutils/files/0003-fixheadercheck.patch | 38 + .../elfutils/files/0003-musl-utils.patch | 96 + .../0006-Fix-build-on-aarch64-musl.patch | 59 + .../0015-config-eu.am-do-not-use-Werror.patch | 37 + .../elfutils/files/ptest.patch | 63 + .../recipes-devtools/elfutils/files/run-ptest | 6 + ...0001-fsck-main.c-add-missing-include.patch | 26 + .../erofs-utils/erofs-utils_1.4.bb | 27 + ...001-Resolve-string-formatting-issues.patch | 29 + .../expect/expect/0001-configure.in.patch | 108 + ...exp_main_sub.c-Use-PATH_MAX-for-path.patch | 55 + ...ults-if-Tcl-is-built-with-stubs-and-.patch | 91 + ...cripts-without-using-the-fixline1-tc.patch | 34 + .../expect/0001-fixline1-fix-line-1.patch | 31 + .../expect/expect/0002-tcl.m4.patch | 17 + .../recipes-devtools/expect/expect_5.45.4.bb | 76 + ...gptcurses-correct-ncurses-6.3-errors.patch | 99 + ...gptcurses-correctly-include-curses.h.patch | 28 + .../recipes-devtools/fdisk/gptfdisk_1.0.8.bb | 36 + .../file/file/CVE-2022-48554.patch | 35 + poky/meta/recipes-devtools/file/file_5.41.bb | 56 + ...directives-if-gen_line_dirs-is-false.patch | 32 + ...SE_SYSTEM_EXTENSIONS-in-configure.ac.patch | 32 + ...et-for-building-tests-without-runnin.patch | 28 + .../flex/flex/check-funcs.patch | 67 + .../flex/flex/disable-tests.patch | 19 + .../meta/recipes-devtools/flex/flex/run-ptest | 5 + poky/meta/recipes-devtools/flex/flex_2.6.4.bb | 85 + poky/meta/recipes-devtools/gcc/gcc-11.4.inc | 124 + poky/meta/recipes-devtools/gcc/gcc-common.inc | 109 + .../gcc/gcc-configure-common.inc | 122 + .../gcc/gcc-cross-canadian.inc | 187 + .../gcc/gcc-cross-canadian_11.4.bb | 5 + poky/meta/recipes-devtools/gcc/gcc-cross.inc | 162 + .../recipes-devtools/gcc/gcc-cross_11.4.bb | 3 + .../recipes-devtools/gcc/gcc-crosssdk.inc | 12 + .../recipes-devtools/gcc/gcc-crosssdk_11.4.bb | 2 + .../gcc/gcc-multilib-config.inc | 249 + .../meta/recipes-devtools/gcc/gcc-runtime.inc | 323 + .../recipes-devtools/gcc/gcc-runtime_11.4.bb | 2 + .../recipes-devtools/gcc/gcc-sanitizers.inc | 120 + .../gcc/gcc-sanitizers_11.4.bb | 7 + .../gcc/gcc-shared-source.inc | 21 + poky/meta/recipes-devtools/gcc/gcc-source.inc | 45 + .../recipes-devtools/gcc/gcc-source_11.4.bb | 4 + poky/meta/recipes-devtools/gcc/gcc-target.inc | 259 + .../recipes-devtools/gcc/gcc-testsuite.inc | 108 + .../gcc/gcc/0001-CVE-2021-42574.patch | 2282 ++ .../gcc/gcc/0001-CVE-2021-46195.patch | 128 + ...rch64-Update-Neoverse-N2-core-defini.patch | 38 + ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch | 39 + .../gcc/gcc/0002-CVE-2021-42574.patch | 1765 ++ .../0002-aarch64-add-armv9-a-to-march.patch | 89 + .../0002-gcc-poison-system-directories.patch | 226 + .../gcc/gcc/0003-64-bit-multilib-hack.patch | 133 + .../gcc/gcc/0003-CVE-2021-42574.patch | 142 + ...le-FP16-feature-by-default-for-Armv9.patch | 38 + .../gcc/gcc/0004-CVE-2021-42574.patch | 573 + ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch | 92 + ...rm-add-armv9-a-architecture-to-march.patch | 291 + .../gcc/gcc/0005-cpp-honor-sysroot.patch | 53 + ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 385 + ...gcc-Fix-argument-list-too-long-error.patch | 42 + .../gcc/gcc/0008-libtool.patch | 39 + ...s-fix-v4bx-to-linker-to-support-EABI.patch | 40 + ...-config-files-from-B-instead-of-usin.patch | 99 + ...ir-from-.la-which-usually-points-to-.patch | 28 + ...e-target-gcc-headers-can-be-included.patch | 113 + ...t-directory-during-relink-if-inst_pr.patch | 35 + ...-fix-libcc1-s-install-path-and-rpath.patch | 51 + ...re-build-CPP-CPPFLAGS-is-used-for-bu.patch | 204 + ...ains-something-unsupported-by-the-bu.patch | 64 + ...le-sysroot-support-for-nativesdk-gcc.patch | 510 + ...sroot-gcc-version-specific-dirs-with.patch | 99 + ...d-to-link-commandline-for-musl-targe.patch | 84 + ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch | 26 + .../0022-sync-gcc-stddef.h-with-musl.patch | 88 + ...Re-introduce-spe-commandline-options.patch | 39 + ...as-for-__cpu_indicator_init-instead-.patch | 83 + ...s-Do-not-use-__LINE__-for-maintainin.patch | 182 + ...ngw32-Enable-operation_not_supported.patch | 26 + ...omic-Do-not-enforce-march-on-aarch64.patch | 42 + ...ly-debug-prefix-maps-before-checksum.patch | 101 + .../0029-Fix-install-path-of-linux64.h.patch | 31 + .../gcc/gcc/0030-rust-recursion-limit.patch | 92 + .../gcc/gcc/CVE-2023-4039.patch | 2893 ++ poky/meta/recipes-devtools/gcc/gcc_11.4.bb | 14 + .../recipes-devtools/gcc/libgcc-common.inc | 164 + .../recipes-devtools/gcc/libgcc-initial.inc | 58 + .../gcc/libgcc-initial_11.4.bb | 5 + poky/meta/recipes-devtools/gcc/libgcc.inc | 53 + poky/meta/recipes-devtools/gcc/libgcc_11.4.bb | 5 + .../meta/recipes-devtools/gcc/libgfortran.inc | 88 + .../recipes-devtools/gcc/libgfortran_11.4.bb | 3 + poky/meta/recipes-devtools/gdb/gdb-common.inc | 66 + .../gdb/gdb-cross-canadian.inc | 44 + .../gdb/gdb-cross-canadian_11.2.bb | 3 + poky/meta/recipes-devtools/gdb/gdb-cross.inc | 31 + .../recipes-devtools/gdb/gdb-cross_11.2.bb | 2 + poky/meta/recipes-devtools/gdb/gdb.inc | 19 + ...make-man-install-relative-to-DESTDIR.patch | 28 + ...ux-nat-Define-_ABIO32-if-not-defined.patch | 35 + ...e-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch | 53 + ...readline.a-when-using-disable-static.patch | 50 + .../gdb/gdb/0006-use-asm-sgidefs.h.patch | 36 + .../gdb/gdb/0007-Change-order-of-CFLAGS.patch | 30 + ...08-resolve-restrict-keyword-conflict.patch | 48 + .../0009-Fix-invalid-sigprocmask-call.patch | 49 + .../gdb/0010-gdbserver-ctrl-c-handling.patch | 40 + .../gdb/gdb/0011-CVE-2023-39128.patch | 75 + poky/meta/recipes-devtools/gdb/gdb_11.2.bb | 39 + ...-do-not-force-RHEL-7-specific-build-.patch | 30 + .../git/git/CVE-2023-25652.patch | 94 + .../git/git/CVE-2023-29007.patch | 162 + .../recipes-devtools/git/git/fixsort.patch | 31 + poky/meta/recipes-devtools/git/git_2.35.7.bb | 176 + .../recipes-devtools/glide/glide_0.13.3.bb | 43 + .../gnu-config/gnu-config/gnu-configize.in | 267 + .../gnu-config/gnu-config_git.bb | 41 + poky/meta/recipes-devtools/go/go-1.17.13.inc | 58 + ...ow-CC-and-CXX-to-have-multiple-words.patch | 33 + ...not-write-linker-flags-into-buildids.patch | 41 + ...util-avoid-query-parameter-smuggling.patch | 178 + ...ldgo.go-do-not-hardcode-host-compile.patch | 41 + ...ent-based-hash-generation-less-pedan.patch | 237 + ...-to-be-overridden-in-the-environment.patch | 52 + ...4-ld-add-soname-to-shareable-objects.patch | 45 + ...de-CC-when-building-dist-and-go_boot.patch | 41 + ...dist-separate-host-and-target-builds.patch | 283 + ...d-go-make-GOROOT-precious-by-default.patch | 104 + ...008-use-GOBUILDMODE-to-set-buildmode.patch | 42 + ...go-make-sure-CC-and-CXX-are-absolute.patch | 94 + .../go/go-1.18/CVE-2022-27664.patch | 102 + .../go/go-1.18/CVE-2022-2879.patch | 177 + .../go/go-1.18/CVE-2022-41715.patch | 270 + .../go/go-1.18/CVE-2022-41717.patch | 89 + .../go/go-1.18/CVE-2022-41720.patch | 514 + .../go/go-1.18/CVE-2022-41722.patch | 103 + .../go/go-1.18/CVE-2022-41723.patch | 156 + .../go/go-1.18/CVE-2023-24534.patch | 200 + .../go/go-1.18/CVE-2023-24537.patch | 75 + .../go/go-1.18/CVE-2023-24538_1.patch | 597 + .../go/go-1.18/CVE-2023-24538_2.patch | 371 + .../go/go-1.18/CVE-2023-24539.patch | 53 + .../go/go-1.18/CVE-2023-29400.patch | 99 + .../go/go-1.18/CVE-2023-29406.patch | 210 + .../go/go-1.19/CVE-2023-24536_1.patch | 137 + .../go/go-1.19/CVE-2023-24536_2.patch | 187 + .../go/go-1.19/CVE-2023-24536_3.patch | 349 + .../go/go-1.19/CVE-2023-24540.patch | 93 + .../go/go-1.19/CVE-2023-29402.patch | 194 + .../go/go-1.19/CVE-2023-29404.patch | 78 + .../go/go-1.19/CVE-2023-29405.patch | 109 + .../go/go-1.19/CVE-2023-29409.patch | 175 + .../go/go-1.19/add_godebug.patch | 84 + .../go/go-1.19/cve-2022-41724.patch | 2391 ++ .../go/go-1.19/cve-2022-41725.patch | 652 + .../go/go-1.20/CVE-2023-39319.patch | 254 + .../go/go-1.21/CVE-2023-24531_1.patch | 252 + .../go/go-1.21/CVE-2023-24531_2.patch | 47 + .../go/go-1.21/CVE-2023-39318.patch | 262 + .../go/go-binary-native_1.17.13.bb | 46 + poky/meta/recipes-devtools/go/go-common.inc | 44 + .../recipes-devtools/go/go-cross-canadian.inc | 61 + .../go/go-cross-canadian_1.17.13.bb | 2 + poky/meta/recipes-devtools/go/go-cross.inc | 52 + .../recipes-devtools/go/go-cross_1.17.13.bb | 2 + poky/meta/recipes-devtools/go/go-crosssdk.inc | 44 + .../go/go-crosssdk_1.17.13.bb | 2 + .../recipes-devtools/go/go-native_1.17.13.bb | 58 + poky/meta/recipes-devtools/go/go-runtime.inc | 92 + .../recipes-devtools/go/go-runtime_1.17.13.bb | 3 + poky/meta/recipes-devtools/go/go-target.inc | 55 + poky/meta/recipes-devtools/go/go_1.17.13.bb | 17 + .../help2man/help2man_1.49.1.bb | 24 + .../i2c-tools/i2c-tools_4.3.bb | 43 + .../icecc-create-env/icecc-create-env | 382 + .../icecc-create-env/icecc-create-env_0.1.bb | 39 + .../icecc-toolchain/icecc-env.sh | 49 + .../icecc-toolchain/icecc-setup.sh | 38 + .../nativesdk-icecc-toolchain_0.1.bb | 39 + .../intltool/intltool/intltool-nowarn.patch | 42 + .../intltool/intltool/noperlcheck.patch | 40 + .../intltool/perl-522-deprecations.patch | 57 + .../intltool/intltool/remove-perl-check.patch | 45 + .../intltool/intltool_0.51.0.bb | 39 + .../recipes-devtools/jquery/jquery_3.6.0.bb | 39 + .../json-c/json-c/CVE-2021-32292.patch | 30 + .../recipes-devtools/json-c/json-c/run-ptest | 20 + .../recipes-devtools/json-c/json-c_0.15.bb | 34 + ...PYTHON_INSTALL_DIR-by-running-python.patch | 27 + .../libcomps/libcomps_0.1.18.bb | 23 + ...-drop-the-requirement-for-GTKDOC_SCA.patch | 31 + ...58-Don-t-assume-inclusion-of-cstdint.patch | 56 + ...or-both-libsolv-and-libsolvext-libdn.patch | 27 + .../0001-drop-FindPythonInstDir.cmake.patch | 42 + ...onNumber.hpp-add-missing-cstdint-inc.patch | 33 + ...xt.cpp-do-not-try-to-access-BDB-data.patch | 37 + ...ite3-Sqlite3.hpp-add-missing-cstdint.patch | 36 + ...ables-with-pkg-config-cmake-s-own-mo.patch | 30 + .../libdnf/enable_test_data_dir_set.patch | 26 + .../recipes-devtools/libdnf/libdnf_0.66.0.bb | 39 + .../libedit/libedit/stdc-predef.patch | 18 + .../libedit/libedit_20210910-3.1.bb | 24 + .../libmodulemd/libmodulemd_git.bb | 24 + ...tain-PYTHON_INSTALL_DIR-by-running-p.patch | 38 + ...les-with-pkg-config-not-with-cmake-m.patch | 27 + .../librepo/librepo_1.14.3.bb | 29 + .../libtool/libtool-2.4.7.inc | 51 + .../libtool/libtool-cross_2.4.7.bb | 50 + .../libtool/libtool-native_2.4.7.bb | 20 + ...-trailing-slashes-on-install-command.patch | 39 + ...in.in-Parse-additional-clang-options.patch | 28 + ...e-the-with-sysroot-option-to-avoid-c.patch | 169 + ...-Add-missing-sysroot-to-library-path.patch | 28 + ...sroot-paths-being-encoded-into-RPATH.patch | 54 + ...encode-RATHS-which-match-default-lin.patch | 76 + ...ool.m4-Handle-as-a-sysroot-correctly.patch | 43 + ...tool-Fix-support-for-NIOS2-processor.patch | 65 + ...r-static-libs-for-internal-compiler-.patch | 33 + ...-sure-autoheader-run-before-autoconf.patch | 31 + ...-sure-autoheader-run-before-automake.patch | 33 + ...-prefix-map-compiler-options-correct.patch | 28 + ...eproducibility-stop-encoding-hostnam.patch | 29 + .../libtool/dont-depend-on-help2man.patch | 30 + .../libtool/libtool/fixinstall.patch | 102 + .../libtool/libtool/multilib.patch | 23 + .../libtool/libtool/nohardcodepaths.patch | 29 + .../recipes-devtools/libtool/libtool_2.4.7.bb | 34 + .../libtool/nativesdk-libtool_2.4.7.bb | 30 + ...r-sort-ClassInfo-lists-by-name-as-we.patch | 31 + ...-missing-cstdint-header-to-Signals.h.patch | 31 + ...ryInfo-Undefine-libc-functions-if-th.patch | 90 + ...-llvm-allow-env-override-of-exe-path.patch | 37 + poky/meta/recipes-devtools/llvm/llvm_git.bb | 189 + .../log4cplus/log4cplus_2.0.8.bb | 19 + .../lua/lua/CVE-2022-28805.patch | 26 + .../lua/lua/CVE-2022-33099.patch | 61 + poky/meta/recipes-devtools/lua/lua/lua.pc.in | 9 + poky/meta/recipes-devtools/lua/lua/run-ptest | 19 + poky/meta/recipes-devtools/lua/lua_5.4.4.bb | 62 + poky/meta/recipes-devtools/m4/m4-1.4.19.inc | 62 + .../recipes-devtools/m4/m4-native_1.4.19.bb | 14 + .../0001-sigsegv-Fix-build-on-ppc-musl.patch | 37 + .../m4/m4/ac_config_links.patch | 37 + poky/meta/recipes-devtools/m4/m4/run-ptest | 5 + .../m4/m4/serial-tests-config.patch | 30 + poky/meta/recipes-devtools/m4/m4_1.4.19.bb | 3 + poky/meta/recipes-devtools/make/make.inc | 13 + ...m4-restrict-AIX-specific-test-on-AIX.patch | 38 + ...inst-Do-not-undef-POSIX-on-clang-arm.patch | 38 + ...rc-dir.c-fix-buffer-overflow-warning.patch | 41 + ...low-being-detected-by-importing-proj.patch | 33 + ...02-w32-compat-dirent.c-follow-header.patch | 36 + ...-posixfcn-fcntl-gnulib-make-emulated.patch | 79 + poky/meta/recipes-devtools/make/make_4.3.bb | 18 + .../makedevs/makedevs/makedevs.c | 593 + .../makedevs/makedevs_1.0.1.bb | 26 + ...for-clang-before-guessing-gcc-or-lcc.patch | 56 + .../0001-Make-CPU-family-warnings-fatal.patch | 45 + ...01-is_debianlike-always-return-False.patch | 26 + ...-not-manipulate-the-environment-when.patch | 38 + ...pport-building-allarch-recipes-again.patch | 28 + .../meson/meson/disable-rpath-handling.patch | 37 + .../meson/meson/meson-setup.py | 43 + .../meson/meson/meson-wrapper | 31 + .../recipes-devtools/meson/meson_0.61.3.bb | 134 + .../recipes-devtools/mmc/mmc-utils_git.bb | 24 + .../add-exclusion-to-mkfs-jffs2-git-2.patch | 105 + .../recipes-devtools/mtd/mtd-utils_git.bb | 75 + .../mtools/mtools/clang_UNUSED.patch | 17 + .../mtools/disable-hardcoded-configs.patch | 32 + .../mtools/mtools/mtools-makeinfo.patch | 79 + .../recipes-devtools/mtools/mtools_4.0.38.bb | 49 + .../nasm/nasm/0001-stdlib-Add-strlcat.patch | 115 + .../0002-Add-debug-prefix-map-option.patch | 294 + .../nasm/nasm/CVE-2020-21528.patch | 47 + .../nasm/nasm/CVE-2022-44370.patch | 104 + .../nasm/nasm/CVE-2022-46457.patch | 50 + .../recipes-devtools/nasm/nasm_2.15.05.bb | 26 + .../recipes-devtools/ninja/ninja_1.10.2.bb | 34 + ...lternatives-correctly-match-priority.patch | 28 + .../opkg-utils/opkg-utils_0.5.0.bb | 65 + .../opkg/opkg-arch-config_1.0.bb | 35 + .../opkg/opkg-keyrings_1.0.bb | 43 + ...-opkg.lock-in-run-instead-of-var-run.patch | 34 + .../meta/recipes-devtools/opkg/opkg/opkg.conf | 28 + .../meta/recipes-devtools/opkg/opkg/run-ptest | 5 + poky/meta/recipes-devtools/opkg/opkg_0.5.0.bb | 74 + poky/meta/recipes-devtools/orc/orc_0.4.32.bb | 30 + poky/meta/recipes-devtools/patch/patch.inc | 14 + ...porary-file-on-failed-ed-style-patch.patch | 94 + ...mporary-file-on-failed-multi-file-ed.patch | 81 + ...-Fix-swapping-fake-lines-in-pch_swap.patch | 36 + ...-directly-instead-of-using-the-shell.patch | 44 + ...charset_alias-when-building-for-musl.patch | 33 + ...x-segfault-with-mangled-rename-patch.patch | 35 + ...s-to-be-missing-for-ed-style-patches.patch | 38 + ...mmand-execution-in-ed-style-patches-.patch | 215 + .../patch/patch/CVE-2019-13636.patch | 113 + .../patch/patch/CVE-2019-20633.patch | 31 + .../recipes-devtools/patch/patch_2.7.6.bb | 28 + .../patchelf/patchelf_0.14.5.bb | 17 + ...ile-check-the-file-if-patched-or-not.patch | 31 + ...oss-add-LDFLAGS-when-linking-libperl.patch | 27 + .../perl-cross/files/README.md | 29 + .../perl-cross/files/determinism.patch | 46 + .../perl-cross/perlcross_1.3.7.bb | 38 + ...ot-attempt-to-run-a-cross-executable.patch | 24 + .../files/0001-Fix-build-with-gcc-12.patch | 143 + ...ule-breaks-through-the-perl-wrapper-.patch | 34 + ...Makefile.PL-Fix-_PATH_LOG-for-determ.patch | 36 + .../files/0002-Constant-Fix-up-shebang.patch | 32 + .../perl/files/CVE-2023-31484.patch | 29 + .../perl/files/CVE-2023-31486-0001.patch | 215 + .../perl/files/CVE-2023-31486-0002.patch | 36 + .../perl/files/determinism.patch | 45 + .../perl/files/encodefix.patch | 20 + .../perl/files/errno_ver.diff | 37 + .../perl/files/native-perlinc.patch | 27 + .../perl/files/perl-configpm-switch.patch | 57 + .../perl/files/perl-dynloader.patch | 38 + .../perl/files/perl-rdepends.txt | 2325 ++ .../recipes-devtools/perl/files/run-ptest | 2 + .../perl/liberror-perl_0.17029.bb | 51 + .../perl/libmodule-build-perl/run-ptest | 14 + .../perl/libmodule-build-perl_0.4231.bb | 124 + .../perl/libtest-needs-perl_0.002009.bb | 29 + .../recipes-devtools/perl/liburi-perl_5.08.bb | 50 + .../perl/libxml-parser-perl_2.46.bb | 59 + .../recipes-devtools/perl/libxml-perl_0.08.bb | 30 + .../perl/libxml-simple-perl_2.25.bb | 35 + .../meta/recipes-devtools/perl/perl-ptest.inc | 63 + .../meta/recipes-devtools/perl/perl_5.34.1.bb | 419 + ...nd-stop-string-processing-on-truncat.patch | 75 + .../pkgconf/pkgconf/pkg-config-esdk.in | 24 + .../pkgconf/pkgconf/pkg-config-native.in | 6 + .../pkgconf/pkgconf/pkg-config-wrapper | 16 + .../recipes-devtools/pkgconf/pkgconf_1.8.0.bb | 68 + ...-support-for-the-__int64-type.-See-1.patch | 144 + ...9-printf-format-specifiers-on-Window.patch | 68 + ...Update-AM_GLIB_GNU_GETTEXT-to-match-.patch | 41 + .../pkgconfig/pkgconfig/pkg-config-esdk.in | 24 + .../pkgconfig/pkgconfig/pkg-config-native.in | 7 + .../pkgconfig/pkgconfig_git.bb | 74 + .../0001-configure-Prune-PIE-flags.patch | 44 + .../pseudo/files/build-oldlibc | 20 + .../pseudo/files/fallback-group | 3 + .../pseudo/files/fallback-passwd | 3 + .../pseudo/files/glibc238.patch | 72 + .../pseudo/files/older-glibc-symbols.patch | 57 + poky/meta/recipes-devtools/pseudo/pseudo.inc | 158 + .../recipes-devtools/pseudo/pseudo_git.bb | 22 + ...ly-do-not-fetch-code-by-easy_install.patch | 32 + .../recipes-devtools/python/python-async.inc | 14 + .../recipes-devtools/python/python-cython.inc | 42 + .../recipes-devtools/python/python-extras.inc | 12 + .../recipes-devtools/python/python-gitdb.inc | 23 + .../recipes-devtools/python/python-pbr.inc | 14 + .../recipes-devtools/python/python-pyasn1.inc | 31 + .../python/python-pycryptodome.inc | 28 + ...e-pytest-runner-to-test_requirements.patch | 32 + .../recipes-devtools/python/python-six.inc | 11 + .../python/python-testtools.inc | 27 + .../python/python3-alabaster_0.7.12.bb | 11 + .../python/python3-asn1crypto_1.5.1.bb | 24 + .../python/python3-async_0.6.2.bb | 2 + .../python/python3-atomicwrites/run-ptest | 3 + .../python/python3-atomicwrites_1.4.0.bb | 25 + .../python/python3-attrs_21.4.0.bb | 19 + .../python/python3-babel_2.9.1.bb | 26 + .../python/python3-bcrypt/run-ptest | 3 + .../python/python3-bcrypt_3.2.0.bb | 31 + .../python3-certifi/CVE-2022-23491.patch | 230 + .../python3-certifi/CVE-2023-37920.patch | 301 + .../python/python3-certifi_2021.10.8.bb | 18 + .../python/python3-cffi_1.15.0.bb | 18 + .../python/python3-chardet_4.0.0.bb | 24 + .../python3-cryptography-vectors_36.0.2.bb | 29 + .../0001-Cargo.toml-specify-pem-version.patch | 31 + .../0002-Cargo.toml-edition-2018-2021.patch | 28 + .../python3-cryptography/CVE-2023-23931.patch | 49 + .../python3-cryptography/check-memfree.py | 10 + .../fix-leak-metric.patch | 36 + .../python/python3-cryptography/run-ptest | 4 + .../python/python3-cryptography_36.0.2.bb | 124 + .../python/python3-cython_0.29.28.bb | 37 + .../python/python3-dbus_1.2.18.bb | 25 + .../python/python3-dbusmock_0.27.3.bb | 18 + .../python/python3-docutils_0.18.1.bb | 11 + .../python/python3-dtschema_2022.1.bb | 15 + .../python/python3-extras_1.0.0.bb | 2 + .../python/python3-flit-core_3.7.1.bb | 33 + .../python/python3-git_3.1.37.bb | 32 + .../python/python3-gitdb_4.0.9.bb | 3 + .../python/python3-hypothesis/run-ptest | 10 + .../python3-hypothesis/test_binary_search.py | 135 + .../python/python3-hypothesis/test_rle.py | 101 + .../python/python3-hypothesis_6.39.5.bb | 38 + .../python/python3-idna_3.3.bb | 19 + .../python/python3-imagesize_1.3.0.bb | 13 + .../python3-importlib-metadata_4.11.3.bb | 20 + .../python/python3-iniconfig_1.1.1.bb | 12 + .../python/python3-iniparse_0.5.bb | 14 + .../python3-installer/interpreter.patch | 61 + .../python/python3-installer_0.5.1.bb | 22 + .../python/python3-iso8601_1.0.2.bb | 15 + .../python/python3-jinja2/run-ptest | 3 + .../python/python3-jinja2_3.1.1.bb | 48 + .../python/python3-jsonpointer/run-ptest | 3 + .../python/python3-jsonpointer_2.2.bb | 26 + .../python/python3-jsonschema_4.4.0.bb | 48 + .../python/python3-libarchive-c_4.0.bb | 21 + .../python/python3-magic_0.4.25.bb | 22 + .../python/python3-mako/CVE-2022-40023.patch | 119 + .../python/python3-mako_1.1.6.bb | 20 + .../python/python3-markdown_3.3.6.bb | 13 + .../python/python3-markupsafe/run-ptest | 3 + .../python/python3-markupsafe_2.1.1.bb | 27 + .../python/python3-more-itertools/run-ptest | 3 + .../python/python3-more-itertools_8.12.0.bb | 27 + .../python/python3-ndg-httpsclient_0.5.1.bb | 31 + ...-and-so-on-for-libraries-by-default-.patch | 72 + ...1-numpy-core-Define-RISCV-32-support.patch | 50 + .../python/python3-numpy/run-ptest | 5 + .../python/python3-numpy_1.22.3.bb | 72 + .../python/python3-packaging_21.3.bb | 12 + .../python/python3-pathlib2_2.3.7.bb | 12 + .../0001-change-shebang-to-python3.patch | 42 + .../python/python3-pbr_5.8.1.bb | 4 + .../0001-change-shebang-to-python3.patch | 115 + .../python3-pip/no_shebang_mangling.patch | 28 + .../python/python3-pip/reproducible.patch | 74 + .../python/python3-pip_22.0.3.bb | 66 + .../python/python3-pluggy/run-ptest | 3 + .../python/python3-pluggy_1.0.0.bb | 26 + .../python/python3-ply_3.11.bb | 18 + .../python/python3-poetry-core_1.0.8.bb | 44 + .../python/python3-pretend_1.0.9.bb | 11 + .../0001-fix-failure-test-cases.patch | 197 + .../python/python3-psutil_5.9.0.bb | 29 + .../python/python3-py_1.11.0.bb | 14 + .../python/python3-pyasn1/run-ptest | 3 + .../python/python3-pyasn1_0.4.8.bb | 2 + .../python/python3-pycairo_1.21.0.bb | 26 + .../python/python3-pycparser_2.21.bb | 21 + .../python/python3-pycryptodome_3.14.1.bb | 5 + .../python/python3-pycryptodomex_3.14.1.bb | 9 + .../python/python3-pyelftools_0.28.bb | 15 + .../python3-pygments/CVE-2022-40896.patch | 124 + .../python/python3-pygments_2.11.2.bb | 21 + .../0001-Do-not-build-tests.patch | 30 + .../python/python3-pygobject_3.42.0.bb | 34 + .../python/python3-pyopenssl_22.0.0.bb | 23 + .../python/python3-pyparsing_3.0.7.bb | 30 + .../python/python3-pyrsistent_0.18.1.bb | 14 + .../python/python3-pysocks_1.7.1.bb | 20 + .../python/python3-pytest-runner_6.0.0.bb | 16 + .../python/python3-pytest-subtests_0.7.0.bb | 20 + .../python/python3-pytest_7.1.1.bb | 41 + .../python/python3-pytz/run-ptest | 3 + .../python/python3-pytz_2022.1.bb | 35 + .../python/python3-pyyaml_6.0.bb | 19 + .../python3-requests/CVE-2023-32681.patch | 63 + .../python/python3-requests_2.27.1.bb | 27 + .../python/python3-rfc3339-validator_0.1.4.bb | 21 + .../python/python3-rfc3986-validator_0.1.1.bb | 24 + .../python/python3-rfc3987_1.3.8.bb | 11 + .../python/python3-ruamel-yaml_0.17.21.bb | 24 + .../0001-Fix-man-page-installation.patch | 29 + .../python/python3-scons_4.3.0.bb | 36 + .../python/python3-semantic-version_2.9.0.bb | 14 + .../python3-setuptools-rust-native_1.1.2.bb | 24 + .../python/python3-setuptools-scm_6.4.2.bb | 26 + ...-of-whitespace-to-search-backtrack.-.patch | 31 + ...nfig-append-STAGING_LIBDIR-python-sy.patch | 35 + .../0001-change-shebang-to-python3.patch | 25 + .../python/python3-setuptools_59.5.0.bb | 58 + .../python/python3-six_1.16.0.bb | 4 + .../0001-Change-hash-bang-to-python3.patch | 47 + .../python/python3-smartypants_2.0.0.bb | 14 + .../python/python3-smmap_5.0.0.bb | 19 + .../python/python3-snowballstemmer_2.2.0.bb | 13 + .../python/python3-sortedcontainers_2.4.0.bb | 9 + .../python/python3-sphinx-rtd-theme_0.5.0.bb | 22 + .../python/python3-sphinx_4.4.0.bb | 28 + .../python3-sphinxcontrib-applehelp_1.0.2.bb | 12 + .../python3-sphinxcontrib-devhelp_1.0.2.bb | 12 + .../python3-sphinxcontrib-htmlhelp_2.0.0.bb | 12 + .../python3-sphinxcontrib-jsmath_1.0.1.bb | 12 + .../python3-sphinxcontrib-qthelp_1.0.3.bb | 12 + ...on3-sphinxcontrib-serializinghtml_1.1.5.bb | 12 + ...001-setup.py-use-vendored-_distutils.patch | 27 + .../python/python3-strict-rfc3339_0.7.bb | 11 + .../python/python3-subunit_1.4.0.bb | 15 + .../python/python3-testtools_2.5.0.bb | 2 + .../python/python3-toml_0.10.2.bb | 15 + .../python/python3-tomli_2.0.1.bb | 13 + .../python3-typing-extensions_3.10.0.0.bb | 14 + .../python/python3-typogrify_2.0.7.bb | 14 + .../python/python3-urllib3_1.26.9.bb | 22 + .../python/python3-vcversioner_2.16.0.0.bb | 12 + .../python/python3-wcwidth/run-ptest | 3 + .../python/python3-wcwidth_0.2.5.bb | 25 + .../python/python3-webcolors/run-ptest | 3 + .../python/python3-webcolors_1.11.1.bb | 28 + ...roject.toml-from-flit-backend-branch.patch | 100 + ...tential-DoS-attack-via-WHEEL_INFO_RE.patch | 32 + .../python/python3-wheel_0.37.1.bb | 19 + .../python/python3-zipp_3.7.0.bb | 18 + ...shebang-overflow-on-python-config.py.patch | 33 + ...ib-termcap-to-linker-flags-to-avoid-.patch | 25 + ...hell-version-of-python-config-that-w.patch | 36 + ...-search-system-for-headers-libraries.patch | 27 + ...e-stdin-I-O-errors-same-way-as-maste.patch | 47 + ...-use-prefix-value-from-build-configu.patch | 32 + ...file-do-not-compile-.pyc-in-parallel.patch | 65 + ...-qemu-wrapper-when-gathering-profile.patch | 26 + ...sts-due-to-load-variability-on-YP-AB.patch | 50 + ...FLAG_REF-always-for-interned-strings.patch | 33 + ...-detection-of-mips-architecture-for-.patch | 206 + ...fig-append-STAGING_LIBDIR-python-sys.patch | 28 + ...asename-to-replace-CC-for-checking-c.patch | 121 + ...detect-multiarch-paths-when-cross-co.patch | 42 + ...g.py-use-platlibdir-also-for-purelib.patch | 28 + ...pes.test_find-skip-without-tools-sdk.patch | 34 + ...le.py-correct-the-test-output-format.patch | 46 + ...report-missing-dependencies-for-disa.patch | 40 + ...up.py-do-not-add-a-curses-include-pa.patch | 49 + ...tutils-prefix-is-inside-staging-area.patch | 58 + .../python3/avoid_warning_about_tkinter.patch | 31 + .../python/python3/cgi_py.patch | 32 + .../python3/check_build_completeness.py | 17 + .../python/python3/create_manifest3.py | 444 + .../python/python3/crosspythonpath.patch | 34 + .../python3/deterministic_imports.patch | 32 + .../python/python3/get_module_deps3.py | 174 + .../python/python3/makerace.patch | 32 + .../python/python3/python-config.patch | 55 + .../python/python3/python3-manifest.json | 1252 + .../python/python3/reformat_sysconfig.py | 21 + .../recipes-devtools/python/python3/run-ptest | 3 + .../python/python3_3.10.13.bb | 430 + .../qemu/nativesdk-qemu-helper_1.0.bb | 37 + .../qemu/qemu-helper-native_1.0.bb | 29 + .../qemu/qemu-helper/qemu-oe-bridge-helper.c | 34 + .../qemu/qemu-helper/tunctl.c | 158 + .../recipes-devtools/qemu/qemu-native.inc | 7 + .../qemu/qemu-native_6.2.0.bb | 9 + .../qemu/qemu-system-native_6.2.0.bb | 32 + .../recipes-devtools/qemu/qemu-targets.inc | 28 + poky/meta/recipes-devtools/qemu/qemu.inc | 283 + ...and-MAP_SHARED_VALIDATE-on-needed-li.patch | 48 + ...issing-device-identification-objects.patch | 83 + ...ave-qxl_log_command-Return-early-if-.patch | 57 + ...ass-requested-buffer-size-to-qxl_phy.patch | 217 + ...ulip-Restrict-DMA-engine-to-memories.patch | 64 + ...ptrace.h-for-pt_regs-struct-definiti.patch | 92 + ...emu-Add-missing-wacom-HID-descriptor.patch | 141 + ...mu-Do-not-include-file-if-not-exists.patch | 31 + ...s-minimum-kernel-version-for-riscv32.patch | 40 + ...end-float_exception_flags-to-16-bits.patch | 75 + ...d-use-relative-path-to-refer-to-file.patch | 34 + ...32t-for-reply-queue-head-tail-values.patch | 83 + ...ch-the-virqueue-element-in-case-of-e.patch | 60 + ...ftfloat-Add-flag-specific-to-Inf-Inf.patch | 59 + ...-map-leaking-on-error-during-receive.patch | 43 + ...id_function_take_MemTxAttrs_argument.patch | 60 + ...n-environment-space-to-boot-loader-q.patch | 33 + ...softfloat-Add-flag-specific-to-Inf-0.patch | 126 + ...et_function_take_MemTxAttrs_argument.patch | 98 + ...dd-flags-specific-to-Inf-Inf-and-0-0.patch | 73 + ...ed_function_take_MemTxAttrs_argument.patch | 78 + ...-Add-flag-specific-to-signaling-nans.patch | 121 + ...rw_function_take_MemTxAttrs_argument.patch | 158 + ...-connect-socket-to-a-spawned-command.patch | 243 + ...e-float_invalid_op_addsub-for-new-fl.patch | 114 + ...te_function_take_MemTxAttrs_argument.patch | 1453 + .../0007-apic-fixup-fallthrough-to-PIC.patch | 44 + ...e-float_invalid_op_mul-for-new-flags.patch | 86 + ...ap_function_take_MemTxAttrs_argument.patch | 227 + ...e-float_invalid_op_div-for-new-flags.patch | 99 + ..._buf_rw_function_take_a_void_pointer.patch | 41 + ...arget-ppc-Update-fmadd-for-new-flags.patch | 102 + ..._dma_buf_write_functions_take_a_void.patch | 167 + ...dd-pkg-config-handling-for-libgcrypt.patch | 29 + .../0010-target-ppc-Split-out-do_fmadd.patch | 71 + ...rw_function_take_MemTxAttrs_argument.patch | 91 + ...s-max-min-cj-dp-to-use-VSX-registers.patch | 93 + ...rw_function_take_MemTxAttrs_argument.patch | 65 + ...-Move-xs-max-min-cj-dp-to-decodetree.patch | 121 + ...te_function_take_MemTxAttrs_argument.patch | 129 + ...get-ppc-fix-xscvqpdp-register-access.patch | 41 + ...ad_function_take_MemTxAttrs_argument.patch | 222 + ...rget-ppc-move-xscvqpdp-to-decodetree.patch | 130 + ...uf_rw_function_propagate_MemTxResult.patch | 91 + ...tore_fpscr-doesn-t-update-bits-0-to-.patch | 70 + ...ma_function_take_MemTxAttrs_argument.patch | 120 + ...get-ppc-Introduce-TRANS-FLAGS-macros.patch | 133 + ...ma_function_take_MemTxAttrs_argument.patch | 151 + ...get-ppc-Implement-Vector-Expand-Mask.patch | 105 + ...r_dma_function_propagate_MemTxResult.patch | 65 + ...et-ppc-Implement-Vector-Extract-Mask.patch | 141 + ...r_dma_function_propagate_MemTxResult.patch | 175 + ...ppc-Implement-Vector-Mask-Move-insns.patch | 187 + ...ma_function_take_MemTxAttrs_argument.patch | 303 + ...xs-n-madd-am-ds-p-xs-n-msub-am-ds-p-.patch | 258 + ...ma_function_take_MemTxAttrs_argument.patch | 271 + ...mplement-xs-n-maddqp-o-xs-n-msubqp-o.patch | 174 + ...i_dma_function_propagate_MemTxResult.patch | 47 + ...i_dma_function_propagate_MemTxResult.patch | 296 + .../qemu/qemu/CVE-2020-14394.patch | 79 + .../qemu/qemu/CVE-2021-3611_1.patch | 74 + .../qemu/qemu/CVE-2021-3611_2.patch | 43 + .../qemu/qemu/CVE-2021-3638.patch | 88 + .../qemu/qemu/CVE-2021-3750-1.patch | 59 + .../qemu/qemu/CVE-2021-3750-2.patch | 65 + .../qemu/qemu/CVE-2021-3750-3.patch | 156 + .../qemu/qemu/CVE-2021-3929.patch | 70 + .../qemu/qemu/CVE-2021-4158.patch | 46 + .../qemu/qemu/CVE-2021-4206.patch | 89 + .../qemu/qemu/CVE-2021-4207.patch | 43 + .../qemu/qemu/CVE-2022-0216_1.patch | 42 + .../qemu/qemu/CVE-2022-0216_2.patch | 52 + .../qemu/qemu/CVE-2022-0358.patch | 106 + .../qemu/qemu/CVE-2022-3165.patch | 61 + .../qemu/qemu/CVE-2022-35414.patch | 53 + .../qemu/qemu/CVE-2022-4144.patch | 99 + .../qemu/qemu/CVE-2023-0330.patch | 75 + .../qemu/qemu/CVE-2023-2861.patch | 180 + .../qemu/qemu/CVE-2023-3180.patch | 50 + .../qemu/qemu/CVE-2023-3255.patch | 64 + .../qemu/qemu/CVE-2023-3301.patch | 60 + .../qemu/qemu/CVE-2023-3354.patch | 87 + .../recipes-devtools/qemu/qemu/cross.patch | 40 + .../qemu/qemu/determinism.patch | 22 + .../recipes-devtools/qemu/qemu/mmap2.patch | 39 + .../qemu/qemu/powerpc_rom.bin | Bin 0 -> 4096 bytes .../recipes-devtools/qemu/qemu/pvrdma.patch | 45 + .../meta/recipes-devtools/qemu/qemu/run-ptest | 13 + poky/meta/recipes-devtools/qemu/qemu_6.2.0.bb | 27 + .../qemu/qemuwrapper-cross_1.0.bb | 40 + .../quilt/quilt-native_0.67.bb | 2 + poky/meta/recipes-devtools/quilt/quilt.inc | 95 + ...t-Fix-a-race-condition-in-merge.test.patch | 48 + ...tests-Allow-different-output-from-mv.patch | 29 + .../recipes-devtools/quilt/quilt/Makefile | 14 + .../quilt/quilt/faildiff-order.patch | 41 + .../quilt/quilt/fix-grep-3.8.patch | 144 + .../quilt/gnu_patch_test_fix_target.patch | 26 + .../recipes-devtools/quilt/quilt/run-ptest | 8 + .../meta/recipes-devtools/quilt/quilt/test.sh | 1 + .../meta/recipes-devtools/quilt/quilt_0.67.bb | 3 + .../repo/repo/0001-python3-shebang.patch | 26 + poky/meta/recipes-devtools/repo/repo_2.22.bb | 31 + ...olor-setting-for-mips64_n32-binaries.patch | 48 + ...satisfiable-dependency-when-building.patch | 31 + ...lib-rpm-as-the-installation-path-for.patch | 58 + ...1-Do-not-read-config-files-from-HOME.patch | 38 + ...-PATH-environment-variable-before-ru.patch | 28 + ...support-for-unused-MD2-and-RIPEMD160.patch | 81 + ...lling-execute-package-scriptlets-wit.patch | 66 + ...not-insert-payloadflags-into-.rpm-me.patch | 28 + ...-linux-gnux32-variant-to-triplet-han.patch | 31 + ...o-not-build-manpages-requires-pandoc.patch | 26 + ....c-fix-file-conflicts-for-MIPS64-N32.patch | 60 + .../files/0001-perl-disable-auto-reqs.patch | 32 + ...tools-Add-error.h-for-non-glibc-case.patch | 71 + ...prefixing-etc-from-RPM_ETCCONFIGDIR-.patch | 72 + ...ge-logging-level-around-scriptlets-t.patch | 55 + .../rpm/files/environment.d-rpm.sh | 1 + poky/meta/recipes-devtools/rpm/rpm_4.17.1.bb | 206 + ...-prototypes-to-function-declarations.patch | 173 + ...antic-errors-at-the-end-of-configure.patch | 68 + .../rsync/files/determism.patch | 34 + .../rsync/files/makefile-no-rebuild.patch | 80 + .../recipes-devtools/rsync/files/rsyncd.conf | 15 + .../recipes-devtools/rsync/rsync_3.2.5.bb | 72 + ...x-cross-compilation-of-external-gems.patch | 34 + ...e.in-do-not-write-host-cross-cc-item.patch | 32 + ...ine-REG_S1-and-REG_S2-for-musl-riscv.patch | 34 + ...Obey-LDFLAGS-for-the-link-of-libruby.patch | 25 + ...-Makefile.in-filter-out-f-prefix-map.patch | 42 + ...doc-build-reproducible-documentation.patch | 35 + ...-list-of-object-files-in-generated-M.patch | 28 + ...eproducible-change-fixing-784225-too.patch | 31 + .../0006-Make-gemspecs-reproducible.patch | 81 + .../ruby/ruby/CVE-2023-28755.patch | 68 + .../ruby/ruby/CVE-2023-28756.patch | 73 + .../ruby/ruby/CVE-2023-36617_1.patch | 52 + .../ruby/ruby/CVE-2023-36617_2.patch | 47 + .../ruby/ruby/remove_has_include_macros.patch | 35 + .../meta/recipes-devtools/ruby/ruby/run-ptest | 13 + poky/meta/recipes-devtools/ruby/ruby_3.1.3.bb | 146 + .../run-postinsts/run-postinsts/run-postinsts | 98 + .../run-postinsts/run-postinsts.init | 3 + .../run-postinsts/run-postinsts.service | 15 + .../run-postinsts/run-postinsts_1.0.bb | 45 + .../meta/recipes-devtools/rust/README-rust.md | 58 + poky/meta/recipes-devtools/rust/libstd-rs.inc | 40 + ...syscalls-to-musl-riscv64-definitions.patch | 44 + ...checksums-for-modified-vendored-libc.patch | 23 + .../recipes-devtools/rust/libstd-rs_1.59.0.bb | 12 + .../recipes-devtools/rust/rust-common.inc | 360 + .../rust/rust-cross-canadian-common.inc | 54 + .../rust/rust-cross-canadian.inc | 78 + .../rust/rust-cross-canadian_1.59.0.bb | 6 + .../meta/recipes-devtools/rust/rust-cross.inc | 66 + .../rust/rust-cross_1.59.0.bb | 8 + .../rust/rust-crosssdk_1.59.0.bb | 8 + poky/meta/recipes-devtools/rust/rust-llvm.inc | 72 + ...r-sort-ClassInfo-lists-by-name-as-we.patch | 31 + ...-llvm-allow-env-override-of-exe-path.patch | 33 + ...-missing-cstdint-header-to-Signals.h.patch | 32 + .../recipes-devtools/rust/rust-llvm_1.59.0.bb | 6 + .../recipes-devtools/rust/rust-snapshot.inc | 29 + .../recipes-devtools/rust/rust-source.inc | 7 + .../recipes-devtools/rust/rust-target.inc | 10 + .../rust/rust-tools-cross-canadian.inc | 38 + .../rust/rust-tools-cross-canadian_1.59.0.bb | 6 + poky/meta/recipes-devtools/rust/rust.inc | 202 + .../meta/recipes-devtools/rust/rust_1.59.0.bb | 21 + ...e-of-INSTALL_DIR-for-symlink-targets.patch | 34 + .../CVE-2021-41072-requisite-1.patch | 135 + .../CVE-2021-41072-requisite-2.patch | 108 + .../CVE-2021-41072-requisite-3.patch | 326 + .../squashfs-tools/CVE-2021-41072.patch | 329 + .../squashfs-tools/squashfs-tools_git.bb | 51 + ...0001-landlock-update-expected-string.patch | 67 + ...001-strace-fix-reproducibilty-issues.patch | 39 + ...b541b258baec9eba674b5d8dc30007a61542.patch | 50 + .../strace/strace/Makefile-ptest.patch | 50 + ...2f4494779e5c5f170ad10539bfc2dfafe967.patch | 50 + .../strace/strace/ptest-spacesave.patch | 28 + .../recipes-devtools/strace/strace/run-ptest | 11 + .../strace/strace/skip-load.patch | 55 + .../strace/strace/update-gawk-paths.patch | 157 + .../recipes-devtools/strace/strace_5.16.bb | 59 + .../subversion/subversion/serfmacro.patch | 31 + .../subversion/subversion_1.14.2.bb | 61 + poky/meta/recipes-devtools/swig/swig.inc | 67 + ...e-for-swig-swiglib-on-non-Win32-plat.patch | 64 + ...re-use-pkg-config-for-pcre-detection.patch | 59 + .../swig/swig/determinism.patch | 17 + poky/meta/recipes-devtools/swig/swig_4.0.2.bb | 7 + ...don-t-install-obsolete-file-com32.ld.patch | 32 + ...nux-syslinux-support-ext2-3-4-device.patch | 84 + ...inux-syslinux-implement-open_ext2_fs.patch | 141 + ...x-syslinux-implement-install_to_ext2.patch | 116 + ...add-ext_file_read-and-ext_file_write.patch | 91 + ...syslinux-implement-handle_adv_on_ext.patch | 127 + ...mplement-write_to_ext-and-add-syslin.patch | 215 + ...x-implement-ext_construct_sectmap_fs.patch | 84 + ...linuxext-implement-syslinux_patch_bo.patch | 431 + ...syslinux-implement-install_bootblock.patch | 50 + ...multiple-definition-of-symbol-errors.patch | 97 + .../syslinux/syslinux/determinism.patch | 22 + .../syslinux-remove-clean-script.patch | 17 + .../syslinux/syslinux_6.04-pre2.bb | 124 + ...itecture-Recognise-RISCV-32-RISCV-64.patch | 45 + ...is-glibc-specific-use-raw-signature-.patch | 36 + .../0002-musl-does-not-provide-printf-h.patch | 423 + ...s-not-provide-canonicalize_file_name.patch | 33 + .../systemd-bootchart/mips64.patch | 35 + .../systemd-bootchart/no_lto.patch | 19 + .../systemd-bootchart_234.bb | 44 + .../tcf-agent/tcf-agent/ldflags.patch | 32 + .../tcf-agent/tcf-agent/tcf-agent.init | 65 + .../tcf-agent/tcf-agent/tcf-agent.service | 12 + .../tcf-agent/tcf-agent_git.bb | 61 + .../tcltk/tcl/alter-includedir.patch | 56 + .../tcl/fix_issue_with_old_distro_glibc.patch | 39 + .../tcl/fix_non_native_build_issue.patch | 64 + .../recipes-devtools/tcltk/tcl/interp.patch | 32 + .../meta/recipes-devtools/tcltk/tcl/run-ptest | 17 + .../tcltk/tcl/tcl-add-soname.patch | 32 + .../tcl-remove-hardcoded-install-path.patch | 32 + .../meta/recipes-devtools/tcltk/tcl_8.6.11.bb | 109 + ...1-Add-listen-action-for-a-tcp-socket.patch | 54 + .../0001-attr-fix-utime-for-symlink.patch | 85 + ...0001-daemon.c-Libtirpc-porting-fixes.patch | 37 + .../unfs3/unfs3/alternate_rpc_ports.patch | 158 + .../unfs3/unfs3/fix_compile_warning.patch | 25 + ...fix_pid_race_parent_writes_child_pid.patch | 61 + .../unfs3/unfs3/no-yywrap.patch | 14 + .../unfs3/relative_max_socket_path_len.patch | 74 + .../unfs3/unfs3/rename_fh_cache.patch | 64 + .../unfs3/unfs3/tcp_no_delay.patch | 56 + .../unfs3/unfs3/unfs3_parallel_build.patch | 37 + poky/meta/recipes-devtools/unfs3/unfs3_git.bb | 45 + .../recipes-devtools/unifdef/unifdef_2.12.bb | 21 + poky/meta/recipes-devtools/vala/vala.inc | 71 + .../meta/recipes-devtools/vala/vala_0.56.3.bb | 3 + ...against-__GLIBC_PREREQ-for-musl-libc.patch | 36 + ...plement-linux-rseq-syscall-as-ENOSYS.patch | 198 + ...ions-static-to-avoid-assembler-error.patch | 182 + ...rn-a-valid-exit_code-from-vg_regtest.patch | 27 + .../0001-docs-Disable-manual-validation.patch | 36 + ...opcode-not-supported-on-mips32-linux.patch | 82 + ...etting-mcpu-to-cortex-a8-on-arm-arch.patch | 108 + ...efine-__THROW-if-not-already-defined.patch | 32 + ...check-tests-Fix-timerfd-syscall-test.patch | 98 + ...-vgtests-remove-fullpath-after-flags.patch | 42 + ...eak_cmsg.stderr.exp-adjust-tmp-paths.patch | 34 + ...ame-_sifields-to-__si_fields-on-musl.patch | 31 + ...ster.c-Limit-rawmemchr-test-to-glibc.patch | 35 + ...-filter_xml_frames-do-not-filter-usr.patch | 39 + ...ntext-APIs-are-not-available-on-musl.patch | 92 + ...ck-x86-Define-__THROW-if-not-defined.patch | 32 + ...-include-directive-path-for-config.h.patch | 45 + ...de-Replace-__modify_ldt-with-syscall.patch | 68 + .../0004-Fix-out-of-tree-builds.patch | 176 + ...est-wrapper-to-support-PTEST-formats.patch | 257 + ...wrap.c-Fake-__GLIBC_PREREQ-with-musl.patch | 28 + ...t-for-PPC-instructions-mfatbu-mfatbl.patch | 96 + ...n-for-targets-which-don-t-support-it.patch | 33 + .../valgrind/valgrind/fixed-perl-path.patch | 80 + .../valgrind/valgrind/remove-for-aarch64 | 13 + .../valgrind/valgrind/remove-for-all | 8 + .../valgrind/valgrind/run-ptest | 96 + .../valgrind/valgrind/s390x_vec_op_t.patch | 35 + .../valgrind/taskset_nondeterministic_tests | 2 + ...te-march-mcpu-mfpu-for-ARM-test-apps.patch | 44 + ...-ld-XXX.so-strlen-intercept-optional.patch | 45 + .../valgrind/valgrind_3.18.1.bb | 255 + ...rop-the-test-of-xmllint-and-xsltproc.patch | 30 + .../recipes-devtools/xmlto/xmlto_0.0.28.bb | 43 + .../rust-hello-world/0001-enable-LTO.patch | 24 + .../rust-hello-world/rust-hello-world_git.bb | 19 + .../acpica/acpica_20211217.bb | 51 + .../asciidoc/asciidoc_10.1.4.bb | 28 + .../at/at/0001-remove-glibc-assumption.patch | 56 + poky/meta/recipes-extended/at/at/atd.init | 45 + poky/meta/recipes-extended/at/at/atd.service | 9 + .../at/at/configure-add-enable-pam.patch | 25 + .../at/at/file_replacement_with_gplv2.patch | 30 + .../at/at/makefile-fix-parallel.patch | 32 + .../recipes-extended/at/at/pam.conf.patch | 35 + poky/meta/recipes-extended/at/at/posixtm.c | 328 + poky/meta/recipes-extended/at/at/posixtm.h | 37 + poky/meta/recipes-extended/at/at_3.2.5.bb | 76 + poky/meta/recipes-extended/bash/bash.inc | 131 + .../bash/bash/CVE-2022-3715.patch | 33 + .../bash/bash/build-tests.patch | 60 + .../bash/bash/execute_cmd.patch | 28 + .../bash/bash/fix-run-builtins.patch | 33 + .../recipes-extended/bash/bash/makerace.patch | 52 + .../bash/bash/makerace2.patch | 98 + .../bash/bash/mkbuiltins_have_stringize.patch | 26 + .../bash/bash/run-bash-ptests | 4 + .../meta/recipes-extended/bash/bash/run-ptest | 26 + .../bash/bash/test-output.patch | 42 + .../bash/bash/use_aclocal.patch | 59 + .../meta/recipes-extended/bash/bash_5.1.16.bb | 26 + .../0001-dc-fix-exit-code-of-q-command.patch | 44 + poky/meta/recipes-extended/bc/bc/libmath.h | 46 + .../bc/bc/no-gen-libmath.patch | 24 + poky/meta/recipes-extended/bc/bc_1.07.1.bb | 35 + .../blktool/0001-fix-typos-in-manpage.patch | 40 + .../blktool/0002-fix-string-error.patch | 31 + ...nt-for-BLKROSET-it-must-be-const-int.patch | 78 + .../blktool/0004-fix-ftbfs-glibc-2.28.patch | 19 + .../recipes-extended/blktool/blktool_4-7.1.bb | 29 + .../recipes-extended/bzip2/bzip2/Makefile.am | 74 + .../recipes-extended/bzip2/bzip2/configure.ac | 11 + .../recipes-extended/bzip2/bzip2/run-ptest | 2 + .../recipes-extended/bzip2/bzip2_1.0.8.bb | 70 + ...charset_alias-when-building-for-musl.patch | 30 + ...ove-superfluous-declaration-of-progr.patch | 28 + ...-calculation-of-CRC-in-copy-out-mode.patch | 58 + ...appending-to-archives-bigger-than-2G.patch | 312 + .../cpio/cpio-2.13/CVE-2021-38185.patch | 581 + poky/meta/recipes-extended/cpio/cpio_2.13.bb | 57 + ...port-dictionary-byte-order-dependent.patch | 339 + ...aklib-fix-testnum-and-teststr-failed.patch | 53 + .../cracklib/cracklib_2.9.8.bb | 34 + .../recipes-extended/cronie/cronie/crond.init | 58 + .../cronie/cronie/crond.service | 11 + .../cronie/cronie/crond_pam_config.patch | 22 + .../recipes-extended/cronie/cronie/crontab | 14 + .../recipes-extended/cronie/cronie_1.6.1.bb | 83 + poky/meta/recipes-extended/cups/cups.inc | 125 + .../cups/0001-use-echo-only-in-init.patch | 27 + ...-don-t-try-to-run-generated-binaries.patch | 31 + ...-fix-multilib-install-file-conflicts.patch | 33 + .../cups/cups/CVE-2023-32324.patch | 36 + .../cups/cups/CVE-2023-32360.patch | 35 + .../cups/cups/CVE-2023-34241.patch | 68 + .../cups/cups/CVE-2023-4504.patch | 42 + .../cups/cups/cups-volatiles.conf | 1 + .../cups/cups/libexecdir.patch | 35 + .../cups/cups/volatiles.99_cups | 2 + poky/meta/recipes-extended/cups/cups_2.4.2.bb | 5 + .../cwautomacros/cwautomacros_20110201.bb | 23 + .../recipes-extended/diffutils/diffutils.inc | 13 + ...001-Skip-strip-trailing-cr-test-case.patch | 29 + .../diffutils/diffutils/run-ptest | 4 + .../diffutils/diffutils_3.10.bb | 43 + poky/meta/recipes-extended/ed/ed_1.18.bb | 38 + .../ethtool/avoid_parallel_tests.patch | 29 + .../ethtool/ethtool/run-ptest | 2 + .../recipes-extended/ethtool/ethtool_5.16.bb | 37 + .../recipes-extended/findutils/findutils.inc | 18 + .../findutils/findutils/run-ptest | 57 + .../findutils/findutils_4.9.0.bb | 26 + .../gawk/gawk/remove-sensitive-tests.patch | 24 + .../meta/recipes-extended/gawk/gawk/run-ptest | 22 + poky/meta/recipes-extended/gawk/gawk_5.1.1.bb | 64 + .../do-not-check-local-libpng-source.patch | 31 + .../ghostscript/CVE-2022-2085.patch | 44 + .../ghostscript/CVE-2023-36664-0001.patch | 146 + .../ghostscript/CVE-2023-36664-0002.patch | 60 + .../ghostscript/CVE-2023-38559.patch | 32 + .../ghostscript/CVE-2023-43115.patch | 62 + .../avoid-host-contamination.patch | 33 + ...-a-preprocessor-define-to-allow-fope.patch | 42 + .../ghostscript/cups-no-gcrypt.patch | 37 + .../ghostscript/cve-2023-28879.patch | 60 + .../ghostscript-9.15-parallel-make.patch | 28 + .../ghostscript-9.16-Werror-return-type.patch | 30 + ...21-native-fix-disable-system-libtiff.patch | 47 + ...ghostscript-9.21-prevent_recompiling.patch | 78 + .../ghostscript/ghostscript/mkdir-p.patch | 50 + .../ghostscript/ghostscript_9.55.0.bb | 135 + .../go-examples/go-helloworld_0.1.bb | 22 + ...c6e57a308a05889c80c048dbc58bdc378dcb.patch | 181 + poky/meta/recipes-extended/gperf/gperf_3.1.bb | 20 + ...a-standard-layout-so-glibc-and-musl-.patch | 32 + poky/meta/recipes-extended/grep/grep_3.7.bb | 48 + .../groff/files/0001-Include-config.h.patch | 212 + ...001-Make-manpages-mulitlib-identical.patch | 27 + ...001-replace-perl-w-with-use-warnings.patch | 106 + .../groff/files/0001-support-musl.patch | 41 + ...groff-not-search-fonts-on-build-host.patch | 32 + .../recipes-extended/groff/groff_1.22.4.bb | 80 + .../recipes-extended/gzip/files/run-ptest | 6 + .../gzip/gzip-1.12/wrong-path-fix.patch | 36 + poky/meta/recipes-extended/gzip/gzip.inc | 32 + poky/meta/recipes-extended/gzip/gzip_1.12.bb | 41 + .../hdparm/wiper.sh-fix-stat-path.patch | 38 + .../recipes-extended/hdparm/hdparm_9.63.bb | 43 + .../images/core-image-full-cmdline.bb | 14 + .../images/core-image-kernel-dev.bb | 23 + .../core-image-testcontroller-initramfs.bb | 24 + .../images/core-image-testcontroller.bb | 18 + ...ile.am-do-not-install-etc-ethertypes.patch | 40 + ...ption-to-enable-disable-libnfnetlink.patch | 47 + ...-conntrack-when-libnfnetlink-enabled.patch | 51 + .../iptables/iptables/ip6tables.rules | 0 .../iptables/iptables/ip6tables.service | 13 + .../iptables/iptables/iptables.rules | 0 .../iptables/iptables/iptables.service | 13 + .../iptables/iptables_1.8.7.bb | 116 + .../0001-rarpd-rdisc-Drop-PrivateUsers.patch | 27 + .../iputils/iputils_20211215.bb | 66 + .../less/less/CVE-2022-46663.patch | 31 + poky/meta/recipes-extended/less/less_600.bb | 43 + .../libaio/libaio/00_arches.patch | 501 + .../libaio/libaio_fix_for_mips_syscalls.patch | 62 + .../libaio/libaio/system-linkage.patch | 33 + .../recipes-extended/libaio/libaio_0.3.112.bb | 22 + .../libarchive/libarchive_3.6.2.bb | 66 + .../recipes-extended/libidn/libidn2_2.3.2.bb | 32 + .../recipes-extended/libmnl/libmnl_1.0.4.bb | 15 + .../recipes-extended/libnsl/libnsl2_git.bb | 24 + .../recipes-extended/libnss-nis/libnss-nis.bb | 31 + .../libpipeline/libpipeline_1.5.5.bb | 14 + ...s-Conside-musl-when-wrapping-qsort_r.patch | 34 + .../libsolv/libsolv_0.7.22.bb | 33 + .../libtirpc/libtirpc/CVE-2021-46828.patch | 155 + .../libtirpc/libtirpc_1.3.2.bb | 27 + .../lighttpd/lighttpd/index.html.lighttpd | 1 + .../lighttpd/lighttpd/lighttpd | 34 + .../lighttpd/lighttpd/lighttpd.conf | 331 + .../lighttpd/lighttpd_1.4.67.bb | 79 + .../logrotate/logrotate_3.20.1.bb | 90 + .../0001-Remove-timestamp-from-manpage.patch | 27 + ...e-to-work-with-busybox-head-and-find.patch | 38 + .../help2man-reproducibility.patch | 27 + .../recipes-extended/lsb/lsb-release_1.4.bb | 38 + .../files/lsof-remove-host-information.patch | 77 + .../meta/recipes-extended/lsof/lsof_4.94.0.bb | 55 + ...001-Remove-OOM-tests-from-runtest-mm.patch | 35 + ...set-threshold-based-on-the-clock-res.patch | 89 + ...sh-sort-filelist-for-reproducibility.patch | 28 + ...er-to-avoid-glibc-overflow-detection.patch | 58 + .../ltp/ltp/disable_hanging_tests.patch | 27 + .../meta/recipes-extended/ltp/ltp_20220121.bb | 140 + poky/meta/recipes-extended/lzip/lzip_1.23.bb | 42 + ...ariable-declaration-to-function-scop.patch | 39 + .../recipes-extended/man-db/files/99_mandb | 1 + ...avoid-multilib-install-file-conflict.patch | 16 + .../recipes-extended/man-db/man-db_2.10.2.bb | 68 + .../man-pages/man-pages_5.13.bb | 36 + ...FTBFS-with-ncurses-build-with-disabl.patch | 87 + ...-mc-replace-perl-w-with-use-warnings.patch | 129 + .../recipes-extended/mc/files/nomandate.patch | 33 + poky/meta/recipes-extended/mc/mc_4.8.27.bb | 63 + ...anup-validate_geometry_ddf_container.patch | 148 + ...parsing-of-r-in-monitor-manager-mode.patch | 74 + ...-corosync-and-dlm-header-files-check.patch | 31 + .../files/0001-Makefile-install-mdcheck.patch | 30 + ...t-for-complete-rebuild-in-integrity-.patch | 53 + ...for-implicit-fallthrough-warning-sup.patch | 28 + ...-fix-gcc-8-format-truncation-warning.patch | 39 + ...-Fix-optional-write-behind-parameter.patch | 45 + ...-y-for-use-syslog-to-recive-event-re.patch | 28 + ...01-mdadm-skip-test-11spare-migration.patch | 43 + ...h-Undefine-dprintf-before-redefining.patch | 39 + ...d-a-test-that-validates-raid0-with-l.patch | 41 + ...-Run-udevadm-settle-before-setting-r.patch | 39 + ...ow-clear-the-superblock-at-every-ite.patch | 33 + ...metadata-avoid-passing-chunk-size-to.patch | 41 + ...ts-fix-raid0-tests-for-0.90-metadata.patch | 102 + ...nter-dereference-in-validate_geometr.patch | 56 + ...se-after-close-bug-by-closing-after-.patch | 91 + ...gfault-when-calling-NULL-get_bad_blo.patch | 42 + ...Mark-and-ignore-broken-test-failures.patch | 128 + ...dd-broken-files-for-all-broken-tests.patch | 454 + .../mdadm/files/debian-no-Werror.patch | 30 + .../mdadm/files/include_sysmacros.patch | 14 + .../files/mdadm-3.3.2_x32_abi_time_t.patch | 37 + .../recipes-extended/mdadm/files/mdadm.init | 72 + .../recipes-extended/mdadm/files/run-ptest | 7 + poky/meta/recipes-extended/mdadm/mdadm_4.2.bb | 126 + .../mingetty/mingetty_1.08.bb | 30 + ...ix-minicom-h-v-return-value-is-not-0.patch | 33 + .../minicom/allow.to.disable.lockdev.patch | 30 + .../recipes-extended/minicom/minicom_2.8.bb | 28 + .../recipes-extended/msmtp/msmtp_1.8.20.bb | 27 + .../net-tools/Add_missing_headers.patch | 15 + .../net-tools/net-tools/net-tools-config.h | 75 + .../net-tools/net-tools/net-tools-config.make | 36 + .../net-tools/net-tools_2.10.bb | 121 + .../0001-detect-gold-as-GNU-linker-too.patch | 29 + ...tinfo-library-to-the-linking-librari.patch | 26 + .../newt/files/cross_ar.patch | 56 + .../recipes-extended/newt/libnewt_0.52.23.bb | 56 + .../packagegroup-core-base-utils.bb | 61 + .../packagegroup-core-full-cmdline.bb | 96 + ...rely-on-all-filesystems-providing-a-.patch | 108 + ...-xtests.sh-check-whether-files-exist.patch | 65 + poky/meta/recipes-extended/pam/libpam/99_pam | 1 + .../pam/libpam/CVE-2022-28321-0002.patch | 205 + .../pam/libpam/libpam-xtests.patch | 37 + .../pam/libpam/pam-volatiles.conf | 1 + .../pam/libpam/pam.d/common-account | 25 + .../pam/libpam/pam.d/common-auth | 18 + .../pam/libpam/pam.d/common-password | 23 + .../pam/libpam/pam.d/common-session | 19 + .../pam.d/common-session-noninteractive | 19 + .../recipes-extended/pam/libpam/pam.d/other | 24 + .../recipes-extended/pam/libpam/run-ptest | 32 + .../meta/recipes-extended/pam/libpam_1.5.2.bb | 187 + .../parted/files/check-vfat.patch | 51 + .../parted/files/fix-doc-mandir.patch | 20 + .../recipes-extended/parted/files/run-ptest | 7 + .../recipes-extended/parted/parted_3.4.bb | 62 + ...valid-suffix-on-literal-C-11-warning.patch | 73 + .../recipes-extended/pbzip2/pbzip2_1.1.13.bb | 31 + .../perl/libconvert-asn1-perl_0.33.bb | 21 + .../perl/libtimedate-perl_2.30.bb | 21 + .../perl/libxml-namespacesupport-perl_1.12.bb | 27 + .../perl/libxml-sax-base-perl_1.09.bb | 26 + .../perl/libxml-sax-perl_1.02.bb | 42 + poky/meta/recipes-extended/pigz/pigz_2.7.bb | 48 + .../procps/0001-w.c-correct-musl-builds.patch | 44 + ...02-proc-escape.c-add-missing-include.patch | 23 + .../procps/procps/CVE-2023-4016.patch | 85 + .../procps/procps/sysctl.conf | 67 + .../recipes-extended/procps/procps_3.3.17.bb | 104 + poky/meta/recipes-extended/psmisc/psmisc.inc | 58 + ...se-UINTPTR_MAX-instead-of-__WORDSIZE.patch | 47 + .../recipes-extended/psmisc/psmisc_23.4.bb | 9 + ...-realloc-3-instead-of-reallocarray-3.patch | 34 + .../recipes-extended/quota/quota/fcntl.patch | 71 + .../meta/recipes-extended/quota/quota_4.06.bb | 35 + .../0001-systemd-use-EnvironmentFile.patch | 42 + .../recipes-extended/rpcbind/rpcbind/init.d | 87 + .../rpcbind/rpcbind/rpcbind.conf | 3 + ...pcbind_add_option_to_fix_port_number.patch | 130 + .../recipes-extended/rpcbind/rpcbind_1.2.6.bb | 55 + .../rpcsvc-proto/rpcsvc-proto.bb | 41 + .../0001-Use-cross-compiled-rpcgen.patch | 23 + ...0001-Remove-more-compatibility-stuff.patch | 31 + .../screen/0001-fix-for-multijob-build.patch | 58 + .../0002-comm.h-now-depends-on-term.h.patch | 30 + .../screen/screen/CVE-2023-24626.patch | 40 + .../recipes-extended/screen/screen/screen.pam | 2 + .../recipes-extended/screen/screen_4.9.0.bb | 50 + poky/meta/recipes-extended/sed/sed/run-ptest | 5 + poky/meta/recipes-extended/sed/sed_4.8.bb | 68 + ...01-Disable-use-of-syslog-for-sysroot.patch | 52 + ...f-message-when-not-in-place-eg.-musl.patch | 27 + .../files/0001-Overhaul-valid_field.patch | 65 + .../shadow/files/CVE-2023-29383.patch | 53 + .../shadow/files/CVE-2023-4641-0001.patch | 36 + .../shadow/files/CVE-2023-4641-0002.patch | 147 + ...nexpected-open-failure-in-chroot-env.patch | 49 + .../shadow/files/login.defs_shadow-sysroot | 387 + .../shadow/files/login_defs_pam.sed | 32 + .../recipes-extended/shadow/files/pam.d/chfn | 14 + .../shadow/files/pam.d/chpasswd | 6 + .../recipes-extended/shadow/files/pam.d/chsh | 19 + .../recipes-extended/shadow/files/pam.d/login | 81 + .../shadow/files/pam.d/newusers | 6 + .../shadow/files/pam.d/passwd | 5 + .../recipes-extended/shadow/files/pam.d/su | 57 + .../recipes-extended/shadow/files/securetty | 238 + .../shadow-4.1.3-dots-in-usernames.patch | 27 + .../files/shadow-relaxed-usernames.patch | 111 + .../shadow/files/shadow-update-pam-conf.patch | 91 + .../recipes-extended/shadow/files/useradd | 8 + .../shadow/shadow-securetty_4.6.bb | 38 + .../shadow/shadow-sysroot_4.6.bb | 31 + poky/meta/recipes-extended/shadow/shadow.inc | 206 + .../recipes-extended/shadow/shadow_4.11.1.bb | 14 + .../slang/slang/array_test.patch | 20 + .../slang/slang/dont-link-to-host.patch | 16 + .../recipes-extended/slang/slang/no-x.patch | 18 + .../recipes-extended/slang/slang/run-ptest | 3 + .../slang/slang/terminfo_fixes.patch | 150 + ...output-in-the-format-result-testname.patch | 30 + .../recipes-extended/slang/slang_2.3.2.bb | 84 + ...le-float128-math-on-powerpc64-to-avo.patch | 43 + .../stress-ng/stress-ng_0.13.12.bb | 26 + ...me.c-correctly-include-header-for-ou.patch | 25 + ...o.conf.in-fix-conflict-with-multilib.patch | 62 + .../meta/recipes-extended/sudo/files/sudo.pam | 6 + poky/meta/recipes-extended/sudo/sudo.inc | 49 + .../recipes-extended/sudo/sudo_1.9.13p3.bb | 62 + ...KillMode-process-is-not-recommended-.patch | 33 + ...-messages-lost-when-running-in-syste.patch | 75 + .../recipes-extended/sysklogd/files/sysklogd | 154 + .../sysklogd/sysklogd_2.3.0.bb | 58 + .../meta/recipes-extended/sysstat/sysstat.inc | 71 + ...figure.in-remove-check-for-chkconfig.patch | 31 + .../sysstat/sysstat/99_sysstat | 1 + .../sysstat/sysstat/CVE-2022-39377.patch | 93 + .../sysstat/sysstat/CVE-2023-33204.patch | 80 + .../sysstat/sysstat/sysstat.service | 12 + .../sysstat/sysstat_12.4.5.bb | 9 + poky/meta/recipes-extended/tar/tar_1.35.bb | 68 + .../0001-Fix-build-with-clang.patch | 65 + ...plicit-function-declaration-warnings.patch | 109 + ...0001-Remove-fgets-extern-declaration.patch | 43 + .../tcp-wrappers-7.6/00_man_quoting.diff | 77 + .../tcp-wrappers-7.6/01_man_portability.patch | 250 + .../05_wildcard_matching.patch | 105 + .../06_fix_gethostbyname.patch | 32 + .../tcp-wrappers-7.6/10_usagi-ipv6.patch | 1255 + .../tcp-wrappers-7.6/11_tcpd_blacklist.patch | 153 + .../tcp-wrappers-7.6/11_usagi_fix.patch | 47 + .../tcp-wrappers-7.6/12_makefile_config.patch | 85 + .../tcp-wrappers-7.6/13_shlib_weaksym.patch | 255 + .../tcp-wrappers-7.6/14_cidr_support.patch | 68 + .../tcp-wrappers-7.6/15_match_clarify.patch | 14 + .../tcp-wrappers-7.6/expand_remote_port.patch | 73 + .../tcp-wrappers-7.6/fix_warnings.patch | 25 + .../tcp-wrappers-7.6/fix_warnings2.patch | 200 + .../tcp-wrappers-7.6/have_strerror.patch | 21 + .../tcp-wrappers-7.6/ldflags.patch | 45 + .../makefile-fix-parallel.patch | 54 + .../tcp-wrappers-7.6/man_fromhost.patch | 23 + .../tcp-wrappers-7.6/musl-decls.patch | 31 + .../rename_strings_variable.patch | 35 + .../tcp-wrappers-7.6/restore_sigalarm.patch | 39 + .../tcp-wrappers/tcp-wrappers-7.6/rfc931.diff | 41 + .../tcp-wrappers-7.6/safe_finger.8 | 34 + .../tcp-wrappers-7.6/safe_finger.patch | 31 + .../tcp-wrappers-7.6/sig_fix.patch | 36 + .../tcp-wrappers-7.6/siglongjmp.patch | 32 + .../tcp-wrappers-7.6/socklen_t.patch | 58 + .../tcp-wrappers-7.6/tcpdchk_libwrapped.patch | 41 + .../tcp-wrappers/tcp-wrappers-7.6/try-from.8 | 28 + .../tcp-wrappers/tcp-wrappers_7.6.bb | 137 + .../texinfo-dummy-native.bb | 33 + .../texinfo-dummy/COPYING | 19 + .../texinfo-dummy/template.py | 100 + .../texinfo/texinfo/0001-gnulib-Update.patch | 11765 +++++++ .../texinfo/disable-native-tools.patch | 43 + .../texinfo/dont-depend-on-help2man.patch | 66 + .../texinfo/texinfo/link-zip.patch | 23 + .../texinfo/texinfo/use_host_makedoc.patch | 17 + .../recipes-extended/texinfo/texinfo_6.8.bb | 90 + poky/meta/recipes-extended/time/time_1.9.bb | 21 + .../recipes-extended/timezone/timezone.inc | 20 + .../timezone/tzcode-native.bb | 14 + poky/meta/recipes-extended/timezone/tzdata.bb | 204 + ...ass-LDFLAGS-to-tests-doing-link-step.patch | 137 + ...-fix-detection-for-cross-compilation.patch | 103 + .../0001-unzip-fix-CVE-2018-1000035.patch | 48 + ...unzip60-alt-iconv-utf8_CVE-2015-1315.patch | 403 + .../unzip/09-cve-2014-8139-crc-overflow.patch | 53 + .../10-cve-2014-8140-test-compr-eb.patch | 36 + .../unzip/11-cve-2014-8141-getzip64data.patch | 145 + ...-cve-2014-9913-unzip-buffer-overflow.patch | 33 + ...ve-2016-9844-zipinfo-buffer-overflow.patch | 32 + .../unzip/unzip/CVE-2015-7696.patch | 39 + .../unzip/unzip/CVE-2015-7697.patch | 32 + .../unzip/unzip/CVE-2018-18384.patch | 39 + .../unzip/unzip/CVE-2019-13232_p1.patch | 33 + .../unzip/unzip/CVE-2019-13232_p2.patch | 356 + .../unzip/unzip/CVE-2019-13232_p3.patch | 121 + .../unzip/unzip/CVE-2021-4217.patch | 67 + .../unzip/unzip/CVE-2022-0529.patch | 39 + .../unzip/unzip/CVE-2022-0530.patch | 33 + .../unzip/unzip/avoid-strip.patch | 50 + .../unzip/unzip/cve-2014-9636.patch | 46 + .../unzip/unzip/define-ldflags.patch | 18 + .../unzip/unzip/fix-security-format.patch | 97 + .../unzip/unzip/symlink.patch | 26 + .../unzip/unzip/unzip_optimization.patch | 127 + poky/meta/recipes-extended/unzip/unzip_6.0.bb | 77 + .../watchdog/watchdog-config.bb | 20 + .../watchdog/watchdog-config/watchdog.conf | 42 + .../watchdog/watchdog-config/watchdog.default | 2 + ...guard-sys-quota.h-sys-swap.h-and-sys.patch | 37 + ...interdependencies-of-watchdog-and-wd.patch | 68 + ...e.service-use-run-instead-of-var-run.patch | 30 + .../watchdog/watchdog/watchdog.init | 110 + .../watchdog/watchdog/wd_keepalive.init | 121 + .../watchdog/watchdog_5.16.bb | 78 + poky/meta/recipes-extended/wget/wget.inc | 45 + .../wget/0002-improve-reproducibility.patch | 66 + .../meta/recipes-extended/wget/wget_1.21.4.bb | 7 + .../which/which-2.21/automake.patch | 19 + .../meta/recipes-extended/which/which_2.21.bb | 37 + ...001-Don-t-build-the-in-script-manual.patch | 30 + .../0001-Reinstate-xdg-terminal.patch | 29 + ...9813e0eb0246f63b54e9e154970e609575af.patch | 58 + .../xdg-utils/xdg-utils_1.1.3.bb | 38 + .../xinetd/xinetd/xinetd.default | 12 + .../xinetd/xinetd/xinetd.init | 64 + .../xinetd/xinetd/xinetd.service | 10 + .../xinetd/xinetd_2.3.15.4.bb | 51 + poky/meta/recipes-extended/xz/xz_5.2.6.bb | 44 + ...LAGS-and-LDFLAGS-when-doing-link-tes.patch | 88 + .../0001-configure-use-correct-CPP.patch | 47 + ...se-_Static_assert-to-do-correct-dete.patch | 96 + ...002-configure-support-PIC-code-build.patch | 34 + .../zip/zip-3.0/10-remove-build-date.patch | 19 + .../zip/zip-3.0/fix-security-format.patch | 42 + .../zipnote-crashes-with-segfault.patch | 22 + poky/meta/recipes-extended/zip/zip_3.0.bb | 57 + poky/meta/recipes-extended/zstd/zstd_1.5.2.bb | 43 + .../recipes-gnome/epiphany/epiphany_42.4.bb | 44 + ...-meson.build-disable-the-use-of-yelp.patch | 30 + .../epiphany/files/CVE-2023-26081.patch | 90 + .../epiphany/files/distributor.patch | 17 + .../epiphany/files/migrator.patch | 24 + ...build-fix-one-parallel-build-failure.patch | 37 + ...1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch | 61 + poky/meta/recipes-gnome/gcr/gcr_3.40.0.bb | 46 + ...w-a-subset-of-tests-in-cross-compile.patch | 66 + .../gdk-pixbuf/gdk-pixbuf/fatal-loader.patch | 89 + .../gdk-pixbuf/gdk-pixbuf/run-ptest | 3 + .../gdk-pixbuf/gdk-pixbuf_2.42.10.bb | 119 + .../recipes-gnome/gi-docgen/gi-docgen_git.bb | 22 + .../0001-Don-t-use-AC_CANONICAL_HOST.patch | 27 + ...-installation-commands-as-shell-jobs.patch | 84 + .../gnome/adwaita-icon-theme_41.0.bb | 43 + .../gnome/gconf/create_config_directory.patch | 28 + .../recipes-gnome/gnome/gconf/python3.patch | 60 + ...ve_plus_from_invalid_characters_list.patch | 19 + .../gnome/gconf/unable-connect-dbus.patch | 95 + poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb | 60 + ...pository-directory-for-native-builds.patch | 76 + ...-ir-tool-template.in-fix-girdir-path.patch | 33 + .../gobject-introspection_1.72.0.bb | 194 + .../gsettings-desktop-schemas_42.0.bb | 16 + poky/meta/recipes-gnome/gtk+/gtk+3.inc | 164 + ...t-try-to-initialize-GL-without-libGL.patch | 57 + ...-Add-disable-opengl-configure-option.patch | 872 + .../gtk+/gtk+3/link_fribidi.patch | 19 + poky/meta/recipes-gnome/gtk+/gtk+3_3.24.34.bb | 17 + ...t-error-out-if-xsltproc-is-not-found.patch | 31 + ...code-paths-to-perl-python-in-scripts.patch | 139 + .../gtk-doc/files/conditionaltests.patch | 46 + .../gtk-doc/files/no-clobber.patch | 40 + .../gtk-doc/files/pkg-config-native.patch | 42 + .../recipes-gnome/gtk-doc/gtk-doc_1.33.2.bb | 63 + .../hicolor-icon-theme_0.17.bb | 18 + .../json-glib/json-glib/run-ptest | 3 + .../json-glib/json-glib_1.6.6.bb | 32 + .../libdazzle/libdazzle_3.44.0.bb | 19 + .../recipes-gnome/libgudev/libgudev_237.bb | 31 + .../libhandy/0001-Add-private-headers.patch | 37 + .../recipes-gnome/libhandy/libhandy_1.5.0.bb | 30 + .../libnotify/libnotify_0.7.9.bb | 38 + ...-rust-target-to-cargo-also-when-not-.patch | 47 + ...lib.rs-do-not-probe-into-harcoded-li.patch | 51 + .../recipes-gnome/librsvg/librsvg_2.52.10.bb | 75 + .../libsecret/libsecret_0.20.5.bb | 26 + .../recipes-graphics/builder/builder_0.1.bb | 33 + .../builder/files/builder_session.sh | 33 + .../cairo/cairo/CVE-2018-19876.patch | 34 + .../cairo/cairo/CVE-2019-6461.patch | 20 + .../cairo/cairo/CVE-2019-6462.patch | 40 + .../cairo/cairo/CVE-2020-35492.patch | 60 + ...tmap_surface-bsc1036789-CVE-2017-7475.diff | 22 + .../recipes-graphics/cairo/cairo_1.16.0.bb | 106 + .../cantarell-fonts_0.303.1.bb | 18 + .../recipes-graphics/drm/libdrm_2.4.110.bb | 60 + .../fontconfig/revert-static-pkgconfig.patch | 20 + .../fontconfig/fontconfig_2.13.1.bb | 70 + .../freetype/freetype/CVE-2022-27404.patch | 48 + .../freetype/freetype/CVE-2022-27405.patch | 41 + .../freetype/freetype/CVE-2022-27406.patch | 32 + .../freetype/freetype/CVE-2023-2004.patch | 41 + .../freetype/freetype_2.11.1.bb | 49 + .../0001-Fix-build-race-in-Makefile.patch | 56 + .../recipes-graphics/glew/glew/no-strip.patch | 12 + .../glew/glew/notempdir.patch | 21 + poky/meta/recipes-graphics/glew/glew_2.2.0.bb | 46 + .../0001-generate-glslang-pkg-config.patch | 47 + .../glslang/glslang_1.3.204.1.bb | 32 + .../harfbuzz/0001-Fix-conditional.patch | 25 + .../harfbuzz/harfbuzz/CVE-2022-33068.patch | 35 + .../harfbuzz/CVE-2023-25193-pre1.patch | 135 + .../harfbuzz/harfbuzz/CVE-2023-25193.patch | 185 + .../harfbuzz/harfbuzz_4.0.1.bb | 52 + ...n.build-fix-meson-0.60-compatibility.patch | 24 + .../igt-gpu-tools/igt-gpu-tools_git.bb | 53 + .../images/core-image-weston-sdk.bb | 15 + .../images/core-image-weston.bb | 12 + .../recipes-graphics/images/core-image-x11.bb | 11 + ...1-libjpeg-turbo-fix-package_qa-error.patch | 32 + .../jpeg/files/CVE-2023-2804-1.patch | 103 + .../jpeg/files/CVE-2023-2804-2.patch | 75 + .../jpeg/libjpeg-turbo_2.1.5.1.bb | 64 + ...ator-Use-correct-GL-extension-header.patch | 33 + .../recipes-graphics/kmscube/kmscube_git.bb | 28 + .../libepoxy/libepoxy_1.5.10.bb | 31 + .../libfakekey/libfakekey_git.bb | 23 + .../libmatchbox/libmatchbox_1.12.bb | 32 + ...d-in-native-OE-builds-by-not-looking.patch | 38 + ...ial-memory-leak-in-GLES_CreateTextur.patch | 40 + ...pass-cflags-to-the-appropriate-cmake.patch | 46 + .../libsdl2/optional-libunwind-generic.patch | 18 + .../libsdl2/libsdl2_2.0.20.bb | 84 + .../libva/libva-initial_2.14.0.bb | 8 + .../libva/libva-utils_2.14.0.bb | 32 + poky/meta/recipes-graphics/libva/libva.inc | 37 + .../recipes-graphics/libva/libva_2.14.0.bb | 15 + .../matchbox-session/matchbox-session | 24 + .../matchbox-session/matchbox-session_0.1.bb | 26 + .../0001-Fix-build-with-gcc-10.patch | 41 + .../matchbox-wm/matchbox-wm/kbdconfig | 42 + .../matchbox-wm/matchbox-wm_1.2.2.bb | 40 + .../0001-Support-gcc10-compilation.patch | 111 + .../menu-cache/menu-cache_1.1.0.bb | 20 + ...nd-deprecate-drm_handle_format-and-d.patch | 158 + ...fine-__NR_futex-if-it-does-not-exist.patch | 34 + ...sdetects-64bit-atomics-on-mips-clang.patch | 25 + ...k-for-all-linux-host_os-combinations.patch | 43 + ...ormat-Check-for-NEON-before-using-it.patch | 47 + ...02-meson.build-make-TLS-ELF-optional.patch | 61 + .../recipes-graphics/mesa/libglu_9.0.2.bb | 28 + ...01-mesa-demos-Add-missing-data-files.patch | 624 + ...to-disable-demos-which-require-GLEW-.patch | 382 + ...-DEMOS_DATA_DIR-to-locate-data-files.patch | 234 + .../0007-Install-few-more-test-programs.patch | 43 + ...w-missing-.glsl-.vert-.frag-files-to.patch | 99 + ...perf-Install-.glsl-.vert-.frag-files.patch | 71 + ...G-demos-with-single-frame-need-eglSw.patch | 44 + .../recipes-graphics/mesa/mesa-demos_8.4.0.bb | 57 + .../recipes-graphics/mesa/mesa-gl_22.0.3.bb | 13 + poky/meta/recipes-graphics/mesa/mesa.inc | 320 + .../meta/recipes-graphics/mesa/mesa_22.0.3.bb | 2 + .../mini-x-session/files/mini-x-session | 39 + .../mini-x-session/mini-x-session_0.1.bb | 28 + .../packagegroups/packagegroup-core-weston.bb | 15 + .../packagegroup-core-x11-base.bb | 16 + .../packagegroup-core-x11-xserver.bb | 20 + .../packagegroups/packagegroup-core-x11.bb | 36 + .../recipes-graphics/pango/pango/run-ptest | 6 + .../recipes-graphics/pango/pango_1.50.4.bb | 54 + ...ssing-include-for-htobe32-definition.patch | 27 + ...-bash-completions-in-the-right-place.patch | 35 + ...proper-WAYLAND_INCLUDE_DIRS-variable.patch | 32 + ...t-shader.c-do-not-hardcode-build-pat.patch | 30 + ...n-t-enable-GLX-if-tests-are-disabled.patch | 32 + .../recipes-graphics/piglit/piglit_git.bb | 73 + .../pong-clock/pong-clock-no-flicker.c | 410 + .../pong-clock/pong-clock_1.0.bb | 22 + ...sable-building-external-dependencies.patch | 109 + ...til-fix-glslang-header-file-location.patch | 26 + .../shaderc/shaderc_2022.1.bb | 29 + .../spir/spirv-headers_1.3.204.1.bb | 18 + .../spir/spirv-tools_1.3.204.1.bb | 41 + .../obsolete_automake_macros.patch | 15 + .../startup-notification-0.12/time_t.patch | 108 + .../startup-notification_0.12.bb | 33 + .../30-liberation-aliases.conf | 17 + .../ttf-fonts/liberation-fonts_2.1.5.bb | 38 + .../ttf-fonts/ttf-bitstream-vera_1.10.bb | 36 + ...uild-use-python3-directly-for-python.patch | 27 + .../virglrenderer/cve-2022-0135.patch | 117 + .../virglrenderer/cve-2022-0175.patch | 107 + .../virglrenderer/virglrenderer_0.9.1.bb | 25 + .../vulkan/vulkan-headers_1.3.204.1.bb | 22 + .../vulkan/vulkan-loader_1.3.204.1.bb | 40 + ...o-not-hardcode-lib-as-installation-t.patch | 29 + .../vulkan/vulkan-samples/debugfix.patch | 31 + .../vulkan/vulkan-samples_git.bb | 38 + .../vulkan/vulkan-tools_1.3.204.1.bb | 32 + ...build-request-native-wayland-scanner.patch | 28 + ...-make-core-protocol-into-the-library.patch | 41 + .../recipes-graphics/waffle/waffle_1.7.2.bb | 51 + .../wayland/libinput/determinism.patch | 21 + .../wayland/libinput/run-ptest | 9 + .../wayland/libinput_1.19.4.bb | 49 + .../recipes-graphics/wayland/mtdev_1.1.6.bb | 18 + .../wayland/required-distro-features.inc | 8 + .../wayland/wayland-protocols_1.25.bb | 26 + .../wayland/wayland-utils_1.0.0.bb | 20 + ...build-Fix-strndup-detection-on-MinGW.patch | 41 + ...hardcode-the-path-to-wayland-scanner.patch | 27 + .../wayland/wayland/CVE-2021-3782.patch | 111 + .../wayland/wayland/run-ptest | 17 + .../wayland/wayland_1.20.0.bb | 63 + .../recipes-graphics/wayland/weston-init.bb | 93 + .../recipes-graphics/wayland/weston-init/init | 54 + .../wayland/weston-init/weston-autologin | 11 + .../wayland/weston-init/weston-start | 71 + .../wayland/weston-init/weston.env | 0 .../wayland/weston-init/weston.ini | 75 + .../wayland/weston-init/weston.service | 71 + .../wayland/weston-init/weston.socket | 14 + .../weston/systemd-notify.weston-start | 9 + .../wayland/weston/weston.desktop | 9 + .../wayland/weston/weston.png | Bin 0 -> 2383 bytes .../wayland/weston/xwayland.weston-start | 5 + .../recipes-graphics/wayland/weston_10.0.2.bb | 142 + .../x11-common/xserver-nodm-init/X11/Xsession | 38 + .../X11/Xsession.d/13xdgbasedirs.sh | 13 + .../X11/Xsession.d/89xdgautostart.sh | 7 + .../X11/Xsession.d/90XWindowManager.sh | 7 + .../x11-common/xserver-nodm-init/Xserver | 25 + .../xserver-nodm-init/capability.conf | 2 + .../xserver-nodm-init/gplv2-license.patch | 355 + .../x11-common/xserver-nodm-init/xserver-nodm | 75 + .../xserver-nodm-init/xserver-nodm.conf.in | 7 + .../xserver-nodm-init/xserver-nodm.service.in | 11 + .../x11-common/xserver-nodm-init_3.0.bb | 72 + .../xcursor-transparent-theme_git.bb | 20 + .../pointercal-xinput/pointercal.xinput | 1 + .../qemuall/pointercal.xinput | 2 + .../pointercal-xinput_0.0.bb | 23 + ....hh-Include-string-to-get-std-string.patch | 28 + .../xinput-calibrator/30xinput_calibrate.sh | 7 + ...ibrator_pointercal.sh-to-be-run-as-n.patch | 66 + .../xinput-calibrator_git.bb | 39 + .../xorg-app/mkfontscale_1.2.2.bb | 21 + .../recipes-graphics/xorg-app/rgb_1.0.6.bb | 16 + .../xorg-app/x11perf_1.6.1.bb | 27 + .../recipes-graphics/xorg-app/xauth_1.1.1.bb | 14 + .../xorg-app/xdpyinfo/disable-xkb.patch | 22 + .../xorg-app/xdpyinfo_1.3.4.bb | 20 + .../xorg-app/xev/diet-x11.patch | 114 + .../recipes-graphics/xorg-app/xev_1.2.5.bb | 19 + .../recipes-graphics/xorg-app/xeyes_1.2.0.bb | 13 + .../recipes-graphics/xorg-app/xhost_1.0.8.bb | 20 + ...0001-Make-manpage-multilib-identical.patch | 28 + .../recipes-graphics/xorg-app/xinit_1.4.1.bb | 25 + .../recipes-graphics/xorg-app/xinput_1.6.3.bb | 12 + .../xorg-app/xkbcomp_1.4.5.bb | 18 + .../xorg-app/xmodmap_1.0.11.bb | 17 + .../xorg-app/xorg-app-common.inc | 16 + .../recipes-graphics/xorg-app/xprop_1.2.5.bb | 17 + .../recipes-graphics/xorg-app/xrandr_1.5.1.bb | 18 + .../xorg-app/xset/disable-xkb.patch | 26 + .../recipes-graphics/xorg-app/xset_1.2.4.bb | 19 + .../recipes-graphics/xorg-app/xvinfo_1.1.4.bb | 14 + .../xorg-app/xwininfo_1.1.5.bb | 15 + .../xorg-driver/xf86-input-evdev_2.10.6.bb | 20 + .../xorg-driver/xf86-input-keyboard_1.9.0.bb | 13 + .../xorg-driver/xf86-input-libinput_1.2.1.bb | 12 + .../xorg-driver/xf86-input-mouse_1.9.3.bb | 14 + .../xorg-driver/xf86-input-synaptics_1.9.2.bb | 17 + .../xorg-driver/xf86-input-vmmouse_13.1.0.bb | 26 + .../xorg-driver/xf86-video-cirrus_1.5.3.bb | 13 + .../xorg-driver/xf86-video-fbdev_0.5.0.bb | 9 + .../xorg-driver/xf86-video-intel_git.bb | 38 + .../xorg-driver/xf86-video-vesa_2.5.0.bb | 19 + .../0002-add-option-for-vmwgfx.patch | 103 + .../xorg-driver/xf86-video-vmware_13.3.0.bb | 19 + .../xorg-driver/xorg-driver-common.inc | 44 + .../xorg-driver/xorg-driver-input.inc | 12 + .../xorg-driver/xorg-driver-video.inc | 8 + .../xorg-font/encodings/nocompiler.patch | 42 + .../xorg-font/encodings_1.0.6.bb | 25 + .../font-alias-1.0.4/nocompiler.patch | 42 + .../xorg-font/font-alias_1.0.4.bb | 23 + .../xorg-font/font-util_1.3.3.bb | 23 + .../xorg-font/xorg-font-common.inc | 42 + .../xorg-font/xorg-minimal-fonts.bb | 38 + .../misc/6x13-ISO8859-1.pcf.gz | Bin 0 -> 4637 bytes .../misc/6x13-ISO8859-10.pcf.gz | Bin 0 -> 4551 bytes .../misc/6x13-ISO8859-11.pcf.gz | Bin 0 -> 4409 bytes .../misc/6x13-ISO8859-13.pcf.gz | Bin 0 -> 4689 bytes .../misc/6x13-ISO8859-14.pcf.gz | Bin 0 -> 4502 bytes .../misc/6x13-ISO8859-15.pcf.gz | Bin 0 -> 4614 bytes .../misc/6x13-ISO8859-16.pcf.gz | Bin 0 -> 4547 bytes .../misc/6x13-ISO8859-2.pcf.gz | Bin 0 -> 4519 bytes .../misc/6x13-ISO8859-3.pcf.gz | Bin 0 -> 4418 bytes .../misc/6x13-ISO8859-4.pcf.gz | Bin 0 -> 4572 bytes .../misc/6x13-ISO8859-5.pcf.gz | Bin 0 -> 4541 bytes .../misc/6x13-ISO8859-7.pcf.gz | Bin 0 -> 4550 bytes .../misc/6x13-ISO8859-8.pcf.gz | Bin 0 -> 4035 bytes .../misc/6x13-ISO8859-9.pcf.gz | Bin 0 -> 4645 bytes .../misc/6x13-KOI8-R.pcf.gz | Bin 0 -> 5057 bytes .../xorg-minimal-fonts/misc/6x13.pcf.gz | Bin 0 -> 76746 bytes .../misc/6x13B-ISO8859-1.pcf.gz | Bin 0 -> 4643 bytes .../misc/6x13B-ISO8859-10.pcf.gz | Bin 0 -> 4569 bytes .../misc/6x13B-ISO8859-13.pcf.gz | Bin 0 -> 4700 bytes .../misc/6x13B-ISO8859-14.pcf.gz | Bin 0 -> 4494 bytes .../misc/6x13B-ISO8859-15.pcf.gz | Bin 0 -> 4638 bytes .../misc/6x13B-ISO8859-16.pcf.gz | Bin 0 -> 4539 bytes .../misc/6x13B-ISO8859-2.pcf.gz | Bin 0 -> 4498 bytes .../misc/6x13B-ISO8859-3.pcf.gz | Bin 0 -> 4362 bytes .../misc/6x13B-ISO8859-4.pcf.gz | Bin 0 -> 4584 bytes .../misc/6x13B-ISO8859-5.pcf.gz | Bin 0 -> 4500 bytes .../misc/6x13B-ISO8859-7.pcf.gz | Bin 0 -> 4529 bytes .../misc/6x13B-ISO8859-8.pcf.gz | Bin 0 -> 4008 bytes .../misc/6x13B-ISO8859-9.pcf.gz | Bin 0 -> 4653 bytes .../xorg-minimal-fonts/misc/6x13B.pcf.gz | Bin 0 -> 23787 bytes .../misc/6x13O-ISO8859-1.pcf.gz | Bin 0 -> 4219 bytes .../misc/6x13O-ISO8859-10.pcf.gz | Bin 0 -> 4152 bytes .../misc/6x13O-ISO8859-13.pcf.gz | Bin 0 -> 4275 bytes .../misc/6x13O-ISO8859-14.pcf.gz | Bin 0 -> 4083 bytes .../misc/6x13O-ISO8859-15.pcf.gz | Bin 0 -> 4209 bytes .../misc/6x13O-ISO8859-16.pcf.gz | Bin 0 -> 4111 bytes .../misc/6x13O-ISO8859-2.pcf.gz | Bin 0 -> 4115 bytes .../misc/6x13O-ISO8859-3.pcf.gz | Bin 0 -> 3959 bytes .../misc/6x13O-ISO8859-4.pcf.gz | Bin 0 -> 4154 bytes .../misc/6x13O-ISO8859-5.pcf.gz | Bin 0 -> 4075 bytes .../misc/6x13O-ISO8859-7.pcf.gz | Bin 0 -> 4124 bytes .../misc/6x13O-ISO8859-9.pcf.gz | Bin 0 -> 4206 bytes .../xorg-minimal-fonts/misc/6x13O.pcf.gz | Bin 0 -> 15495 bytes .../xorg-minimal-fonts/misc/cursor.pcf.gz | Bin 0 -> 5225 bytes .../xorg-minimal-fonts/misc/fonts.dir | 410 + .../recipes-graphics/xorg-lib/libdmx_1.1.4.bb | 20 + .../xorg-lib/libfontenc_1.1.4.bb | 17 + .../xorg-lib/libice_1.0.10.bb | 28 + .../xorg-lib/libpciaccess_0.16.bb | 19 + .../xorg-lib/libpthread-stubs_0.4.bb | 19 + .../recipes-graphics/xorg-lib/libsm_1.2.3.bb | 31 + .../0001-Drop-x11-dependencies.patch | 86 + .../xorg-lib/libx11-compose-data_1.6.8.bb | 36 + .../xorg-lib/libx11/CVE-2022-3554.patch | 58 + .../xorg-lib/libx11/CVE-2022-3555.patch | 40 + .../xorg-lib/libx11/CVE-2023-3138.patch | 111 + .../xorg-lib/libx11/disable_tests.patch | 22 + .../xorg-lib/libx11_1.7.3.1.bb | 51 + .../recipes-graphics/xorg-lib/libxau_1.0.9.bb | 24 + .../xorg-lib/libxcb/disable-check.patch | 25 + .../recipes-graphics/xorg-lib/libxcb_1.14.bb | 39 + .../libxcomposite/change-include-order.patch | 18 + .../xorg-lib/libxcomposite_0.4.5.bb | 28 + .../xorg-lib/libxcursor_1.2.0.bb | 23 + .../xorg-lib/libxcvt_0.1.1.bb | 19 + .../xorg-lib/libxdamage_1.1.5.bb | 29 + .../xorg-lib/libxdmcp_1.1.3.bb | 29 + .../xorg-lib/libxext_1.3.4.bb | 26 + .../xorg-lib/libxfixes_6.0.0.bb | 20 + .../xorg-lib/libxfont2_2.0.5.bb | 23 + .../xorg-lib/libxfont_1.5.4.bb | 25 + .../recipes-graphics/xorg-lib/libxft_2.3.4.bb | 32 + .../recipes-graphics/xorg-lib/libxi_1.8.bb | 22 + .../xorg-lib/libxinerama_1.1.4.bb | 22 + .../xorg-lib/libxkbcommon_1.4.1.bb | 36 + .../xorg-lib/libxkbfile_1.1.0.bb | 18 + .../recipes-graphics/xorg-lib/libxmu_1.1.3.bb | 34 + .../xorg-lib/libxpm_3.5.16.bb | 28 + .../xorg-lib/libxrandr_1.5.2.bb | 23 + .../xorg-lib/libxrender_0.9.10.bb | 24 + .../xorg-lib/libxres_1.2.1.bb | 19 + .../xorg-lib/libxscrnsaver_1.2.3.bb | 23 + ...h-Define-SYS_futex-if-it-does-not-ex.patch | 39 + .../xorg-lib/libxshmfence_1.3.bb | 21 + .../xorg-lib/libxt/libxt_fix_for_x32.patch | 29 + .../recipes-graphics/xorg-lib/libxt_1.2.1.bb | 31 + .../xorg-lib/libxtst_1.2.3.bb | 22 + .../recipes-graphics/xorg-lib/libxv_1.0.11.bb | 19 + .../xorg-lib/libxvmc_1.0.12.bb | 19 + .../xorg-lib/libxxf86vm_1.1.4.bb | 22 + ...-workarounds-in-cpu-features-detecti.patch | 144 + .../xorg-lib/pixman/CVE-2022-44638.patch | 33 + .../xorg-lib/pixman_0.40.0.bb | 42 + .../xorg-lib/xcb-util-image/clang.patch | 24 + .../xorg-lib/xcb-util-image_0.4.0.bb | 13 + .../xorg-lib/xcb-util-keysyms_0.4.0.bb | 9 + .../xorg-lib/xcb-util-renderutil_0.3.9.bb | 10 + .../xorg-lib/xcb-util-wm_0.4.1.bb | 11 + .../recipes-graphics/xorg-lib/xcb-util.inc | 23 + .../xorg-lib/xcb-util_0.4.0.bb | 8 + .../xorg-lib/xkeyboard-config_2.35.1.bb | 30 + .../xorg-lib/xorg-lib-common.inc | 27 + .../xorg-lib/xtrans/multilibfix.patch | 18 + .../recipes-graphics/xorg-lib/xtrans_1.4.0.bb | 26 + .../xorg-proto/xcb-proto_1.14.1.bb | 28 + .../xorg-proto/xorgproto_2021.5.bb | 25 + .../xorg-util/makedepend_1.0.6.bb | 21 + .../xorg-util/util-macros_1.19.3.bb | 19 + .../xorg-util/xorg-util-common.inc | 13 + .../xserver-xf86-config/qemuarm/xorg.conf | 38 + .../xserver-xf86-config/qemuppc/xorg.conf | 38 + .../xserver-xf86-config/qemush4/xorg.conf | 38 + .../xserver-xf86-config/qemux86-64/xorg.conf | 33 + .../xserver-xf86-config/qemux86/xorg.conf | 33 + .../xserver-xf86-config/xorg.conf | 0 .../xorg-xserver/xserver-xf86-config_0.1.bb | 22 + .../xorg-xserver/xserver-xorg.inc | 178 + ...-duplicate-definitions-of-IOPortBase.patch | 29 + ...-Intel-ddx-only-for-pre-gen4-hardwar.patch | 53 + .../xorg-xserver/xserver-xorg_21.1.8.bb | 28 + .../recipes-graphics/xrestop/xrestop_0.4.bb | 24 + .../xwayland/xwayland_22.1.8.bb | 45 + ...plot.py-Ask-for-python3-specifically.patch | 35 + .../recipes-kernel/blktrace/blktrace_git.bb | 46 + .../cryptodev/cryptodev-linux_1.12.bb | 13 + .../cryptodev/cryptodev-module_1.12.bb | 16 + .../cryptodev/cryptodev-tests_1.12.bb | 22 + .../recipes-kernel/cryptodev/cryptodev.inc | 17 + ...and-install-rules-for-cryptodev-test.patch | 66 + ...ng-header-file-provided-by-another-p.patch | 24 + ...001-tests-Makefile-do-not-use-Werror.patch | 24 + ...tdump-fix-Werror-int-to-pointer-cast.patch | 40 + poky/meta/recipes-kernel/dtc/dtc_1.6.1.bb | 30 + .../python3-dtschema-wrapper/dt-doc-validate | 20 + .../dtc/python3-dtschema-wrapper/dt-mk-schema | 20 + .../dtc/python3-dtschema-wrapper/dt-validate | 20 + .../dtc/python3-dtschema-wrapper_2021.10.bb | 17 + .../kern-tools/kern-tools-native_git.bb | 32 + ...bled-check-if-kaslr-seed-dtb-propert.patch | 67 + ...powerpc-change-the-memory-size-limit.patch | 35 + ...-purgatory-Pass-r-directly-to-linker.patch | 29 + ...Fix-add_buffer_phys_virt-align-issue.patch | 49 + .../0005-Disable-PIE-during-link.patch | 28 + .../recipes-kernel/kexec/kexec-tools/kdump | 145 + .../kexec/kexec-tools/kdump.conf | 14 + .../kexec/kexec-tools/kdump.service | 14 + .../kexec/kexec-tools_2.0.23.bb | 86 + .../kmod/depmodwrapper-cross_1.0.bb | 51 + ...dd-support-for-excluding-a-directory.patch | 172 + .../kmod/kmod/avoid_parallel_tests.patch | 32 + .../kmod/kmod/depmod-search.conf | 6 + poky/meta/recipes-kernel/kmod/kmod/run-ptest | 5 + poky/meta/recipes-kernel/kmod/kmod_29.bb | 90 + .../linux-firmware/linux-firmware_20230625.bb | 1178 + .../linux-libc-headers/linux-libc-headers.inc | 110 + ...linux-stddef.h-in-swab.h-uapi-header.patch | 42 + ...eaders.sh-Strip-_UAPI-from-if-define.patch | 38 + ...h-fix-some-issues-arising-from-in6.h.patch | 90 + ...sl-_does_-define-IFF_LOWER_UP-DORMAN.patch | 46 + ...d-input-and-output-files-instead-of-.patch | 67 + ...e-inclusion-of-sysinfo.h-in-kernel.h.patch | 29 + .../linux-libc-headers_5.16.bb | 20 + .../recipes-kernel/linux/cve-exclusion.inc | 6 + .../linux/cve-exclusion_5.10.inc | 7255 +++++ .../linux/cve-exclusion_5.15.inc | 7274 +++++ .../linux/generate-cve-exclusions.py | 101 + .../recipes-kernel/linux/kernel-devsrc.bb | 347 + poky/meta/recipes-kernel/linux/linux-dummy.bb | 67 + .../linux/linux-dummy/COPYING.GPL | 339 + .../recipes-kernel/linux/linux-yocto-dev.bb | 65 + .../linux/linux-yocto-rt_5.10.bb | 45 + .../linux/linux-yocto-rt_5.15.bb | 45 + .../linux/linux-yocto-tiny_5.10.bb | 32 + .../linux/linux-yocto-tiny_5.15.bb | 30 + .../meta/recipes-kernel/linux/linux-yocto.inc | 74 + .../recipes-kernel/linux/linux-yocto_5.10.bb | 59 + .../recipes-kernel/linux/linux-yocto_5.15.bb | 71 + .../recipes-kernel/lttng/babeltrace/run-ptest | 9 + ...001-Make-manpages-multilib-identical.patch | 28 + ...not-run-test-applications-from-.libs.patch | 28 + .../lttng/babeltrace2/run-ptest | 9 + .../recipes-kernel/lttng/babeltrace2_2.0.5.bb | 94 + .../recipes-kernel/lttng/babeltrace_1.5.11.bb | 98 + ...e-missing-CONFIG_TRACEPOINTS-to-warn.patch | 46 + .../0009-Rename-genhd-wrapper-to-blkdev.patch | 76 + .../lttng/lttng-modules_2.13.9.bb | 42 + .../recipes-kernel/lttng/lttng-platforms.inc | 21 + ...-tests-do-not-strip-a-helper-library.patch | 27 + .../lttng/lttng-tools/disable-tests.patch | 34 + .../lttng/lttng-tools/lttng-sessiond.service | 9 + .../lttng/lttng-tools/run-ptest | 7 + .../lttng/lttng-tools_2.13.9.bb | 194 + .../0001-Makefile.am-update-rpath-link.patch | 35 + ...-common-link-with-liburcu-explicitly.patch | 25 + ...Makefile.am-Add-install-lib-to-setup.patch | 29 + .../recipes-kernel/lttng/lttng-ust_2.13.6.bb | 53 + .../make-mod-scripts/make-mod-scripts_1.0.bb | 33 + .../modutils-initscripts/files/modutils.sh | 59 + .../modutils-initscripts.bb | 32 + poky/meta/recipes-kernel/perf/perf-perl.inc | 7 + poky/meta/recipes-kernel/perf/perf.bb | 360 + .../perf/perf/sort-pmuevents.py | 100 + ...c-fix-compatibility-with-ncurses-6.3.patch | 52 + .../0001-wakeup_xxx.h-include-limits.h.patch | 55 + .../recipes-kernel/powertop/powertop_2.14.bb | 25 + .../systemtap/systemtap-native_git.bb | 6 + .../systemtap/systemtap-uprobes_git.bb | 40 + ...gure-write-a-python-location-into-th.patch | 25 + ...ython-modules-to-correct-library-dir.patch | 56 + ...ing-tweak-for-sprintf-precision-para.patch | 45 + ...ault-stap-s-buffer-size-on-small-RAM.patch | 84 + ...ility-re-tweak-for-rhel6-use-functio.patch | 49 + ...rove-reproducibility-for-c-compiling.patch | 31 + ...staprun-address-ncurses-6.3-failures.patch | 61 + ...-don-t-support-installing-a-non-root.patch | 37 + .../recipes-kernel/systemtap/systemtap_git.bb | 99 + .../systemtap/systemtap_git.inc | 24 + .../wireless-regdb_2023.05.03.bb | 43 + .../alsa/alsa-lib_1.2.6.1.bb | 44 + .../alsa/alsa-plugins_1.2.6.bb | 174 + .../alsa/alsa-tools_1.2.5.bb | 89 + .../alsa/alsa-topology-conf_1.2.5.1.bb | 23 + .../alsa/alsa-ucm-conf_1.2.6.3.bb | 24 + .../alsa/alsa-utils-scripts_1.2.6.bb | 25 + .../recipes-multimedia/alsa/alsa-utils.inc | 108 + .../alsa/alsa-utils_1.2.6.bb | 2 + ...c-stop-accessing-out-of-bounds-frame.patch | 86 + ...c-stop-accessing-out-of-bounds-frame.patch | 105 + ...-vp3-Add-missing-check-for-av_malloc.patch | 42 + ...ec-Add-check-for-avformat_new_stream.patch | 67 + ...e-assembly-with-full-path-from-sourc.patch | 112 + .../ffmpeg/ffmpeg/CVE-2022-48434.patch | 130 + .../recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb | 188 + .../flac/files/CVE-2020-22219.patch | 197 + .../recipes-multimedia/flac/flac_1.3.4.bb | 46 + ...ct-has-a-different-signature-on-musl.patch | 38 + .../gstreamer/gst-devtools_1.20.7.bb | 52 + ...001-Make-player-examples-installable.patch | 37 + .../gstreamer/gst-examples/gst-player.desktop | 10 + .../gstreamer/gst-examples_1.18.6.bb | 35 + .../gstreamer/gstreamer1.0-libav_1.20.7.bb | 28 + .../gstreamer/gstreamer1.0-meta-base.bb | 68 + .../gstreamer/gstreamer1.0-omx_1.20.7.bb | 47 + ...ialized-warnings-when-compiling-with.patch | 26 + ...-avoid-including-sys-poll.h-directly.patch | 28 + ...-sentinals-for-gst_structure_get-etc.patch | 86 + ...issing-opencv-data-dir-in-yocto-buil.patch | 33 + .../CVE-2023-40474.patch | 118 + .../CVE-2023-40475.patch | 49 + .../CVE-2023-40476.patch | 44 + .../gstreamer1.0-plugins-bad_1.20.7.bb | 169 + ...et-caps-from-src-pad-when-query-caps.patch | 44 + ...parse-enhance-SSA-text-lines-parsing.patch | 229 + ...iv-fb-Make-sure-config.h-is-included.patch | 32 + .../gstreamer1.0-plugins-base_1.20.7.bb | 94 + .../gstreamer/gstreamer1.0-plugins-common.inc | 47 + ...t-gstqtgl.h-instead-of-gst-gl-gstglf.patch | 56 + .../gstreamer1.0-plugins-good_1.20.7.bb | 81 + .../gstreamer1.0-plugins-license.inc | 19 + .../gstreamer1.0-plugins-packaging.inc | 73 + .../gstreamer1.0-plugins-ugly_1.20.7.bb | 46 + .../gstreamer/gstreamer1.0-python_1.20.7.bb | 30 + .../gstreamer1.0-rtsp-server_1.20.7.bb | 31 + .../gstreamer/gstreamer1.0-vaapi_1.20.7.bb | 53 + ...spect-the-idententaion-used-in-meson.patch | 36 + ...ts-add-support-for-install-the-tests.patch | 109 + ...s-use-a-dictionaries-for-environment.patch | 50 + ...er-script-to-run-the-installed_tests.patch | 74 + .../gstreamer/gstreamer1.0/run-ptest | 2 + .../gstreamer/gstreamer1.0_1.20.7.bb | 72 + .../lame/lame/no-gtk1.patch | 20 + .../recipes-multimedia/lame/lame_3.100.bb | 26 + .../liba52/liba52/buildcleanup.patch | 89 + .../recipes-multimedia/liba52/liba52_0.7.4.bb | 29 + .../recipes-multimedia/libogg/libogg_1.3.5.bb | 17 + .../libomxil-0.9.3/configure-fix.patch | 58 + .../disable-so-versioning.patch | 36 + .../dynamicloader-linking.patch | 20 + .../libomxil-0.9.3/makefile-docdir-fix.patch | 19 + .../libomxil-0.9.3/parallel-make.patch | 18 + .../libomxil/libomxil_0.9.3.bb | 45 + .../recipes-multimedia/libpng/files/run-ptest | 29 + .../libpng/libpng_1.6.39.bb | 46 + .../libsamplerate/libsamplerate0_0.2.2.bb | 26 + ...flac-Fix-improper-buffer-reusing-732.patch | 29 + .../libsndfile/libsndfile1/noopus.patch | 55 + .../libsndfile/libsndfile1_1.0.31.bb | 34 + .../libtheora/libtheora-1.1.1/no-docs.patch | 15 + .../libtheora/libtheora_1.1.1.bb | 22 + ...-of-TIFFTAG_INKNAMES-and-related-TIF.patch | 267 + ...-the-FPE-in-tiffcrop-415-427-and-428.patch | 182 + ...rash-when-reading-a-file-with-multip.patch | 36 + ...ue-330-and-some-more-from-320-to-349.patch | 607 + ...fcrop-S-option-Make-decision-simpler.patch | 36 + ...-incompatibility-of-Z-X-Y-z-options-.patch | 59 + ...ines-require-a-larger-buffer-fixes-2.patch | 640 + ...al-buffer-overflow-for-ASCII-tags-wh.patch | 42 + ...ue-380-and-382-heap-buffer-overflow-.patch | 217 + ...-for-return-value-of-limitMalloc-392.patch | 90 + ...ag-avoid-calling-memcpy-with-a-null-.patch | 31 + .../0005-fix-the-FPE-in-tiffcrop-393.patch | 33 + ...x-heap-buffer-overflow-in-tiffcp-278.patch | 54 + ...99c99f987dc32ae110370cfdd7df7975586b.patch | 27 + .../libtiff/tiff/CVE-2022-1354.patch | 210 + .../libtiff/tiff/CVE-2022-1355.patch | 60 + .../libtiff/tiff/CVE-2022-2867.patch | 129 + .../libtiff/tiff/CVE-2022-2869.patch | 84 + .../libtiff/tiff/CVE-2022-2953.patch | 87 + .../libtiff/tiff/CVE-2022-34526.patch | 27 + .../libtiff/tiff/CVE-2022-3970.patch | 38 + .../libtiff/tiff/CVE-2022-48281.patch | 26 + .../CVE-2023-0795_0796_0797_0798_0799.patch | 162 + .../CVE-2023-0800_0801_0802_0803_0804.patch | 128 + .../libtiff/tiff/CVE-2023-25433.patch | 195 + .../tiff/CVE-2023-25434-CVE-2023-25435.patch | 94 + .../libtiff/tiff/CVE-2023-26965.patch | 97 + .../libtiff/tiff/CVE-2023-26966.patch | 35 + .../libtiff/tiff/CVE-2023-2908.patch | 33 + .../libtiff/tiff/CVE-2023-3316.patch | 59 + .../libtiff/tiff/CVE-2023-3618-1.patch | 34 + .../libtiff/tiff/CVE-2023-3618-2.patch | 47 + ...ed69a485a9cfb299d9f060eb2a46c54e5903.patch | 46 + ...0712f4c3a5b449f70c57988260a667ddbdef.patch | 29 + .../recipes-multimedia/libtiff/tiff_4.3.0.bb | 99 + .../0001-configure-Check-for-clang.patch | 56 + .../libvorbis/libvorbis_1.3.7.bb | 19 + ...-1206-from-upstream-to-fix-PIE-build.patch | 156 + ...heck-for-available-arm-optimizations.patch | 55 + ...f-global-symbols-used-in-ARM-specifi.patch | 63 + .../files/61_global-symbol-test.patch | 70 + .../mpeg2dec/files/altivec_h_needed.patch | 43 + .../mpeg2dec/mpeg2dec_0.5.1.bb | 51 + .../mpg123/mpg123_1.29.3.bb | 52 + .../pulseaudio/pulseaudio.inc | 283 + ...nt-conf-Add-allow-autospawn-for-root.patch | 97 + ...ild-remove-dependency-on-doxygen-bin.patch | 26 + .../0001-meson-Check-for-__get_cpuid.patch | 82 + ...LFAGS-to-improve-reproducibility-bui.patch | 30 + .../pulseaudio/pulseaudio/volatiles.04_pulse | 2 + .../pulseaudio/pulseaudio_15.0.bb | 11 + ...-sbc_primitives-Fix-build-on-non-x86.patch | 45 + poky/meta/recipes-multimedia/sbc/sbc_1.5.bb | 24 + .../speex/speex/CVE-2020-23903.patch | 30 + .../recipes-multimedia/speex/speex_1.2.0.bb | 22 + .../speex/speexdsp_1.2.0.bb | 27 + .../webp/files/CVE-2023-1999.patch | 60 + .../webp/files/CVE-2023-5129.patch | 364 + .../recipes-multimedia/webp/libwebp_1.2.4.bb | 58 + .../x264/Fix-X32-build-by-disabling-asm.patch | 51 + ...don-t-default-to-cortex-a9-with-neon.patch | 33 + poky/meta/recipes-multimedia/x264/x264_git.bb | 56 + poky/meta/recipes-rt/README | 13 + .../recipes-rt/images/core-image-rt-sdk.bb | 20 + poky/meta/recipes-rt/images/core-image-rt.bb | 17 + ...Allow-for-CC-and-AR-to-be-overridden.patch | 29 + .../recipes-rt/rt-tests/files/rt_bmark.py | 412 + poky/meta/recipes-rt/rt-tests/files/run-ptest | 3 + .../recipes-rt/rt-tests/hwlatdetect_git.bb | 26 + poky/meta/recipes-rt/rt-tests/rt-tests.inc | 7 + poky/meta/recipes-rt/rt-tests/rt-tests_git.bb | 36 + .../images/core-image-sato-dev.bb | 8 + .../images/core-image-sato-sdk.bb | 15 + .../recipes-sato/images/core-image-sato.bb | 17 + poky/meta/recipes-sato/l3afpad/l3afpad_git.bb | 29 + ...akeLists.txt-do-not-run-cross-binary.patch | 24 + .../recipes-sato/libptytty/libptytty_2.0.bb | 13 + .../matchbox-config-gtk/files/no-handed.patch | 39 + .../matchbox-config-gtk_0.2.bb | 23 + .../files/vfolders/All.directory | 5 + .../files/vfolders/Applications.directory | 6 + .../files/vfolders/Games.directory | 9 + .../files/vfolders/Root.order | 4 + .../files/vfolders/Settings.directory | 8 + .../matchbox-desktop/matchbox-desktop_2.2.bb | 34 + ...file-Hide-the-keyboard-from-app-list.patch | 33 + .../files/80matchboxkeyboard.sh | 21 + .../matchbox-keyboard_0.1.1.bb | 60 + ...ts-systray-Allow-icons-to-be-smaller.patch | 34 + .../matchbox-panel-2/matchbox-panel-2_2.11.bb | 42 + .../matchbox-session-sato/index.theme | 7 + .../matchbox-session-sato/session | 31 + .../matchbox-session-sato_0.1.bb | 56 + .../matchbox-terminal_0.2.bb | 21 + .../matchbox-theme-sato.inc | 16 + .../matchbox-theme-sato_0.2.bb | 8 + .../packagegroup-core-x11-sato.bb | 63 + .../pcmanfm/files/emblem-symbolic-link.png | Bin 0 -> 999 bytes .../pcmanfm/files/gnome-fs-directory.png | Bin 0 -> 2044 bytes .../pcmanfm/files/gnome-fs-regular.png | Bin 0 -> 3220 bytes .../pcmanfm/files/gnome-mime-text-plain.png | Bin 0 -> 2855 bytes .../pcmanfm/files/no-desktop.patch | 15 + .../recipes-sato/pcmanfm/pcmanfm_1.3.2.bb | 40 + .../pulseaudio-client-conf-sato/50-sato.conf | 7 + .../pulseaudio-client-conf-sato_1.bb | 17 + poky/meta/recipes-sato/puzzles/puzzles_git.bb | 49 + .../rxvt-unicode/rxvt-unicode.inc | 58 + .../rxvt-unicode/rxvt-unicode/rxvt.desktop | 9 + .../rxvt-unicode/rxvt-unicode/rxvt.png | Bin 0 -> 2847 bytes .../rxvt-unicode/rxvt-unicode/xwc.patch | 26 + .../rxvt-unicode/rxvt-unicode_9.30.bb | 8 + .../sato-screenshot/sato-screenshot_0.3.bb | 28 + .../files/70settings-daemon.sh | 1 + .../settings-daemon/files/addsoundkeys.patch | 49 + .../settings-daemon/settings-daemon_0.0.2.bb | 30 + .../shutdown-desktop/shutdown-desktop.bb | 24 + .../shutdown-desktop/shutdown.desktop | 10 + .../meta/recipes-sato/webkit/libwpe_1.12.3.bb | 18 + ...spection.cmake-prefix-variables-obta.patch | 38 + .../0001-Fix-build-without-opengl-or-es.patch | 133 + ...tings-so-that-gtkdoc-generation-work.patch | 47 + ...trospection-files-do-not-quote-CFLAG.patch | 78 + .../webkit/webkitgtk/CVE-2022-32888.patch | 41 + .../webkit/webkitgtk/CVE-2022-32923.patch | 435 + .../webkit/webkitgtk/CVE-2022-42867.patch | 104 + .../webkit/webkitgtk/CVE-2022-46691.patch | 43 + .../webkit/webkitgtk/CVE-2022-46699.patch | 136 + .../webkit/webkitgtk/CVE-2022-46700.patch | 67 + .../webkit/webkitgtk/CVE-2022-48503.patch | 225 + .../webkit/webkitgtk/CVE-2023-23529.patch | 65 + .../webkit/webkitgtk/CVE-2023-32439.patch | 127 + .../webkit/webkitgtk/reproducibility.patch | 22 + .../recipes-sato/webkit/webkitgtk_2.36.8.bb | 175 + .../webkit/wpebackend-fdo_1.14.2.bb | 24 + .../apr/apr-util/configfix.patch | 51 + .../apr/apr-util/configure_fixes.patch | 31 + .../recipes-support/apr/apr-util/run-ptest | 6 + .../recipes-support/apr/apr-util_1.6.3.bb | 96 + ...ion-to-disable-timed-dependant-tests.patch | 69 + ...-runtime-test-for-mmap-that-can-map-.patch | 58 + ...ir-path-references-from-installed-ap.patch | 77 + ...04-Fix-packet-discards-HTTP-redirect.patch | 39 + ...-LTFLAGS-to-make-it-work-with-ccache.patch | 36 + ...libapr-against-phtread-to-make-gold-.patch | 50 + .../apr/apr/libtoolize_check.patch | 37 + poky/meta/recipes-support/apr/apr/run-ptest | 6 + poky/meta/recipes-support/apr/apr_1.7.2.bb | 137 + .../argp-standalone/argp-standalone_1.3.bb | 33 + .../files/0001-throw-in-funcdef.patch | 84 + .../argp-standalone/files/0002-isprint.patch | 51 + .../files/out_of_tree_build.patch | 19 + .../recipes-support/aspell/aspell_0.60.8.bb | 41 + .../aspell/files/CVE-2019-25051.patch | 101 + .../recipes-support/atk/at-spi2-atk_2.38.0.bb | 20 + .../0001-Ensure-x11_dep-is-defined.patch | 33 + .../atk/at-spi2-core_2.42.0.bb | 41 + poky/meta/recipes-support/atk/atk_2.38.0.bb | 20 + .../0001-test-patch-out-failing-bits.patch | 63 + ...dcode-the-build-path-into-a-helper-l.patch | 24 + poky/meta/recipes-support/attr/acl/run-ptest | 16 + poky/meta/recipes-support/attr/acl_2.3.1.bb | 79 + poky/meta/recipes-support/attr/attr.inc | 66 + poky/meta/recipes-support/attr/attr/run-ptest | 10 + poky/meta/recipes-support/attr/attr_2.5.1.bb | 5 + .../bash-completion/bash-completion_2.11.bb | 40 + .../bmap-tools/bmap-tools_git.bb | 26 + .../recipes-support/boost/boost-1.78.0.inc | 20 + .../boost/boost-build-native_4.4.1.bb | 27 + poky/meta/recipes-support/boost/boost.inc | 224 + ...h-instruction-set-flags-we-do-that-o.patch | 167 + ...ll-targets-if-there-s-build-no-in-ur.patch | 82 + ...01-dont-setup-compiler-flags-m32-m64.patch | 42 + ...on-32-bit-architectures-using-64-bit.patch | 36 + .../boost/boost/boost-CVE-2012-2677.patch | 112 + .../boost-math-disable-pch-for-gcc.patch | 31 + ...7e01635306085488290ea83de541ec393f8b.patch | 30 + .../recipes-support/boost/boost_1.78.0.bb | 11 + ...ertdata2pem.py-print-a-warning-for-e.patch | 80 + ...icates-don-t-use-Debianisms-in-run-p.patch | 34 + ...2-update-ca-certificates-use-SYSROOT.patch | 46 + ...icates-use-relative-symlinks-from-ET.patch | 71 + .../ca-certificates/default-sysroot.patch | 50 + .../ca-certificates_20211016.bb | 89 + .../add-polkit-configure-argument.patch | 33 + .../consolekit/consolekit/sepbuildfix.patch | 19 + .../consolekit/consolekit_0.4.6.bb | 51 + ...0001-openssl-fix-CN-check-error-code.patch | 38 + .../curl/curl/CVE-2022-22576.patch | 145 + .../curl/curl/CVE-2022-27774-1.patch | 45 + .../curl/curl/CVE-2022-27774-2.patch | 80 + .../curl/curl/CVE-2022-27774-3.patch | 83 + .../curl/curl/CVE-2022-27774-4.patch | 35 + .../curl/curl/CVE-2022-27775.patch | 37 + .../curl/curl/CVE-2022-27776.patch | 115 + .../curl/curl/CVE-2022-27779.patch | 42 + .../curl/curl/CVE-2022-27780.patch | 33 + .../curl/curl/CVE-2022-27781.patch | 43 + .../curl/curl/CVE-2022-27782-1.patch | 458 + .../curl/curl/CVE-2022-27782-2.patch | 71 + .../curl/curl/CVE-2022-30115.patch | 82 + .../curl/curl/CVE-2022-32205.patch | 174 + .../curl/curl/CVE-2022-32206.patch | 51 + .../curl/curl/CVE-2022-32207.patch | 283 + .../curl/curl/CVE-2022-32208.patch | 67 + .../curl/curl/CVE-2022-32221.patch | 28 + .../curl/curl/CVE-2022-35252.patch | 72 + .../curl/curl/CVE-2022-42915.patch | 53 + .../curl/curl/CVE-2022-42916.patch | 136 + .../curl/curl/CVE-2022-43551.patch | 35 + .../curl/curl/CVE-2022-43552.patch | 80 + .../curl/curl/CVE-2023-23914_5-1.patch | 280 + .../curl/curl/CVE-2023-23914_5-2.patch | 23 + .../curl/curl/CVE-2023-23914_5-3.patch | 45 + .../curl/curl/CVE-2023-23914_5-4.patch | 48 + .../curl/curl/CVE-2023-23914_5-5.patch | 118 + .../curl/curl/CVE-2023-23916.patch | 219 + .../curl/curl/CVE-2023-27533.patch | 208 + .../curl/curl/CVE-2023-27534.patch | 122 + .../curl/curl/CVE-2023-27535-pre1.patch | 196 + .../CVE-2023-27535_and_CVE-2023-27538.patch | 170 + .../curl/curl/CVE-2023-27536.patch | 53 + .../curl/curl/CVE-2023-28319.patch | 33 + .../curl/curl/CVE-2023-28320-fol1.patch | 197 + .../curl/curl/CVE-2023-28320.patch | 83 + .../curl/curl/CVE-2023-28321.patch | 302 + .../curl/curl/CVE-2023-28322-1.patch | 84 + .../curl/curl/CVE-2023-28322-2.patch | 436 + .../curl/curl/CVE-2023-32001.patch | 39 + poky/meta/recipes-support/curl/curl_7.82.0.bb | 136 + ...tibility-by-renaming-atomic_init-API.patch | 147 + ...cal-__atomic_compare_exchange-to-avo.patch | 45 + ...001-clock-Do-not-define-own-timespec.patch | 45 + ...plicit-tag-options-to-libtool-invoca.patch | 42 + .../db/db/fix-parallel-build.patch | 21 + .../recipes-support/db/db/sequence-type.patch | 59 + poky/meta/recipes-support/db/db_5.3.28.bb | 119 + .../debianutils/debianutils_5.7.bb | 60 + .../diffoscope/diffoscope_208.bb | 30 + .../dos2unix/dos2unix_7.4.2.bb | 34 + .../recipes-support/enchant/enchant2_2.3.2.bb | 31 + .../recipes-support/fribidi/fribidi_1.0.13.bb | 22 + .../recipes-support/gdbm/files/ptest.patch | 50 + .../meta/recipes-support/gdbm/files/run-ptest | 7 + poky/meta/recipes-support/gdbm/gdbm_1.23.bb | 45 + poky/meta/recipes-support/gmp/gmp.inc | 12 + ...provided-flags-to-the-auto-detected-.patch | 61 + ...-Believe-the-cflags-from-environment.patch | 49 + .../gmp/gmp/cve-2021-43618.patch | 27 + .../gmp/gmp/use-includedir.patch | 18 + poky/meta/recipes-support/gmp/gmp_6.2.1.bb | 47 + ...teral-format-string-issue-with-clang.patch | 31 + .../gnome-desktop-testing_2021.1.bb | 24 + ...erride-init-is-not-needed-with-gcc-9.patch | 34 + ...-a-custom-value-for-the-location-of-.patch | 28 + ...use-pkgconfig-instead-of-npth-config.patch | 102 + ...h-fix-find-version-for-beta-checking.patch | 34 + .../gnupg/gnupg/relocate.patch | 82 + .../meta/recipes-support/gnupg/gnupg_2.3.7.bb | 87 + .../gnutls/gnutls/CVE-2022-2509.patch | 282 + .../gnutls/gnutls/CVE-2023-0361.patch | 85 + .../gnutls/gnutls/arm_eabi.patch | 30 + .../recipes-support/gnutls/gnutls_3.7.4.bb | 70 + .../libtasn1/dont-depend-on-help2man.patch | 26 + .../recipes-support/gnutls/libtasn1_4.19.0.bb | 23 + ...e-gpgme.m4-use-gpgrt-config-with-.pc.patch | 134 + .../gpgme/gpgme/0001-pkgconfig.patch | 292 + ...se-closefrom-on-linux-and-glibc-2.34.patch | 30 + ...n-gpg-error-config-should-not-be-use.patch | 52 + ...003-Correctly-install-python-modules.patch | 33 + .../gpgme/gpgme/0004-python-import.patch | 34 + ...p-all-lib-or-usr-lib-directories-in-.patch | 31 + .../gpgme/0006-fix-build-path-issue.patch | 37 + .../0007-python-Add-variables-to-tests.patch | 52 + .../0008-do-not-auto-check-var-PYTHON.patch | 34 + .../recipes-support/gpgme/gpgme_1.17.1.bb | 87 + .../0001-Disable-LDFLAGSICUDT-for-Linux.patch | 28 + .../icu/0001-icu-Added-armeb-support.patch | 28 + poky/meta/recipes-support/icu/icu/filter.json | 2 + .../icu/icu/fix-install-manx.patch | 54 + poky/meta/recipes-support/icu/icu_70.1.bb | 150 + .../iso-codes/iso-codes_4.15.0.bb | 22 + ...-build-time-hardcoded-python-binary-.patch | 33 + ...ld-time-hardcoded-python-binary-path.patch | 29 + .../recipes-support/itstool/itstool_2.0.7.bb | 29 + .../libassuan-add-pkgconfig-support.patch | 135 + .../libassuan/libassuan_2.5.6.bb | 38 + .../libatomic-ops/libatomic-ops_7.6.14.bb | 22 + .../recipes-support/libbsd/libbsd_0.11.5.bb | 50 + .../libcap-ng/libcap-ng-python_0.8.2.bb | 28 + .../recipes-support/libcap-ng/libcap-ng.inc | 19 + .../libcap-ng/libcap-ng/determinism.patch | 59 + .../libcap-ng/libcap-ng_0.8.2.bb | 17 + ..._NAME_CAPS-is-defined-when-it-is-use.patch | 32 + ...-Raise-the-size-of-arrays-containing.patch | 34 + ...-tests-do-not-run-target-executables.patch | 30 + .../libcap/files/CVE-2023-2602.patch | 45 + .../libcap/files/CVE-2023-2603.patch | 60 + .../recipes-support/libcap/libcap_2.66.bb | 82 + ...echo-compiler-info-to-check_stdint.h.patch | 19 + .../libcheck/libcheck_0.15.2.bb | 33 + .../libcroco/files/CVE-2020-12825.patch | 192 + .../libcroco/libcroco_0.6.13.bb | 26 + .../libdaemon/libdaemon/fix-includes.patch | 20 + .../libdaemon/libdaemon_0.14.bb | 22 + .../libevdev/libevdev_1.12.1.bb | 17 + ....c-patch-out-tests-that-require-a-wo.patch | 37 + ...ncrease-default-timeval-tolerance-50.patch | 33 + ...-monotonic_prc_fallback-as-retriable.patch | 28 + ...ts-are-marked-failed-only-when-all-a.patch | 81 + .../libevent/Makefile-missing-test-dir.patch | 27 + .../libevent/libevent/run-ptest | 29 + .../libevent/libevent_2.1.12.bb | 64 + .../recipes-support/libexif/libexif_0.6.24.bb | 24 + ...m-sysv-reverted-clang-VFP-mitigation.patch | 102 + .../libffi/libffi/not-win32.patch | 35 + .../recipes-support/libffi/libffi_3.4.4.bb | 36 + ...001-nls.m4-Take-it-from-gettext-0.15.patch | 54 + .../libfm/libfm-extra_1.3.2.bb | 23 + ...the-stamp-file-that-indicates-if-we-.patch | 28 + ...ary-path-to-avoid-host-contamination.patch | 23 + .../meta/recipes-support/libfm/libfm_1.3.2.bb | 55 + ...0001-Makefile.am-add-a-missing-space.patch | 41 + ...01-libgcrypt-fix-m4-file-for-oe-core.patch | 146 + ...ilding-error-with-O2-in-sysroot-path.patch | 39 + ...e.c-workaround-ICE-failure-on-mips-w.patch | 79 + ...m-fix-undefined-reference-to-pthread.patch | 29 + .../libgcrypt/libgcrypt_1.9.4.bb | 61 + .../recipes-support/libgit2/libgit2_1.4.5.bb | 22 + ...not-fail-when-testing-config-scripts.patch | 27 + .../libgpg-error/libgpg-error/pkgconfig.patch | 200 + .../libgpg-error/libgpg-error_1.44.bb | 41 + ...e-Do-not-export-CC-into-gir-compiler.patch | 33 + .../recipes-support/libical/libical_3.0.16.bb | 55 + .../libjitterentropy_3.4.0.bb | 30 + .../libksba/ksba-add-pkgconfig-support.patch | 144 + .../recipes-support/libksba/libksba_1.6.4.bb | 34 + .../meta/recipes-support/libmd/libmd_1.0.4.bb | 16 + .../libmicrohttpd/libmicrohttpd_0.9.76.bb | 30 + poky/meta/recipes-support/libmpc/libmpc.inc | 7 + .../recipes-support/libmpc/libmpc_1.2.1.bb | 12 + .../libnl/files/enable-serial-tests.patch | 29 + .../recipes-support/libnl/files/run-ptest | 16 + .../meta/recipes-support/libnl/libnl_3.5.0.bb | 75 + .../recipes-support/libpcre/libpcre/Makefile | 183 + .../recipes-support/libpcre/libpcre/run-ptest | 3 + .../libpcre/libpcre2/CVE-2022-41409.patch | 75 + .../recipes-support/libpcre/libpcre2_10.40.bb | 55 + .../recipes-support/libpcre/libpcre_8.45.bb | 73 + .../libproxy/libproxy/determinism.patch | 26 + .../libproxy/libproxy_0.4.17.bb | 42 + .../recipes-support/libpsl/libpsl_0.21.1.bb | 25 + .../libseccomp/files/run-ptest | 7 + .../libseccomp/libseccomp_2.5.3.bb | 58 + .../libsoup/libsoup-2.4_2.74.2.bb | 46 + .../recipes-support/libsoup/libsoup_3.0.7.bb | 44 + .../libssh2/libssh2/CVE-2020-22218.patch | 34 + .../libssh2/libssh2/fix-ssh2-test.patch | 23 + .../recipes-support/libssh2/libssh2/run-ptest | 8 + .../recipes-support/libssh2/libssh2_1.10.0.bb | 50 + .../libunistring/libunistring_1.0.bb | 27 + .../recipes-support/libunwind/libunwind.inc | 23 + .../0003-x86-Stub-out-x86_local_resume.patch | 55 + .../0004-Fix-build-on-mips-musl.patch | 84 + ...context-mismatches-between-glibc-and.patch | 247 + .../libunwind/0006-Fix-for-X32.patch | 29 + .../libunwind/musl-header-conflict.patch | 44 + .../libunwind/libunwind_1.6.2.bb | 24 + .../recipes-support/liburcu/liburcu_0.13.2.bb | 24 + ...k-with-latomic-only-if-no-atomic-bui.patch | 46 + .../recipes-support/libusb/libusb1/run-ptest | 29 + .../recipes-support/libusb/libusb1_1.0.26.bb | 48 + .../recipes-support/libxslt/libxslt_1.1.35.bb | 60 + .../recipes-support/libyaml/libyaml_0.2.5.bb | 21 + poky/meta/recipes-support/lz4/lz4_1.9.4.bb | 29 + ...onfigdir-to-solve-the-undefine-error.patch | 27 + ...Use-memcpy-instead-of-reinventing-it.patch | 78 + poky/meta/recipes-support/lzo/lzo/run-ptest | 33 + poky/meta/recipes-support/lzo/lzo_2.10.bb | 35 + .../recipes-support/lzop/lzop/acinclude.m4 | 390 + poky/meta/recipes-support/lzop/lzop_1.04.bb | 27 + poky/meta/recipes-support/mpfr/mpfr_4.1.1.bb | 19 + ...get-to-only-build-tests-not-run-them.patch | 45 + ...der-files-of-openssl-only-if-enable_.patch | 36 + .../nettle/nettle/dlopen-test.patch | 29 + .../recipes-support/nettle/nettle/run-ptest | 36 + .../recipes-support/nettle/nettle_3.7.3.bb | 57 + ...0001-fetch-ocsp-response-use-python3.patch | 27 + .../nghttp2/nghttp2/CVE-2023-35945.patch | 151 + .../recipes-support/nghttp2/nghttp2_1.47.0.bb | 38 + ...em-with-regression-tests-on-recent-g.patch | 43 + .../recipes-support/npth/npth/pkgconfig.patch | 49 + poky/meta/recipes-support/npth/npth_1.6.bb | 29 + .../nss-myhostname/nss-myhostname_0.3.bb | 32 + .../numactl/0001-define-run-test-target.patch | 32 + .../numactl/Fix-the-test-output-format.patch | 65 + .../recipes-support/numactl/numactl/Makefile | 7 + .../recipes-support/numactl/numactl/run-ptest | 27 + .../recipes-support/numactl/numactl_git.bb | 59 + .../recipes-support/p11-kit/p11-kit_0.24.1.bb | 32 + .../pinentry-1.2.0/gpg-error_pkconf.patch | 195 + .../pinentry-1.2.0/libassuan_pkgconf.patch | 170 + .../pinentry/pinentry_1.2.0.bb | 39 + ...01-popt-test-output-format-for-ptest.patch | 68 + poky/meta/recipes-support/popt/popt/run-ptest | 3 + poky/meta/recipes-support/popt/popt_1.18.bb | 33 + .../ptest-runner/ptest-runner_2.4.2.bb | 34 + poky/meta/recipes-support/re2c/re2c_3.0.bb | 16 + .../rng-tools/rng-tools/default | 1 + .../recipes-support/rng-tools/rng-tools/init | 42 + .../rng-tools/rng-tools/rngd.service | 33 + .../rng-tools/rng-tools_6.15.bb | 61 + ...-Fix-path-quoting-for-.def-generator.patch | 27 + .../serf/serf/0003-gen_def.patch | 27 + ...ories.without.sandbox-install.prefix.patch | 71 + poky/meta/recipes-support/serf/serf/env.patch | 28 + .../recipes-support/serf/serf/norpath.patch | 42 + poky/meta/recipes-support/serf/serf_1.3.10.bb | 40 + ...tom-itstool-to-builtin-msgfmt-for-cr.patch | 70 + .../shared-mime-info/shared-mime-info_git.bb | 31 + ...riables-in-the-printf-implementation.patch | 26 + .../sqlite/files/CVE-2022-46908.patch | 39 + .../sqlite/files/CVE-2023-36191.patch | 37 + poky/meta/recipes-support/sqlite/sqlite3.inc | 68 + .../recipes-support/sqlite/sqlite3_3.38.5.bb | 18 + .../recipes-support/taglib/taglib_1.12.bb | 42 + .../user-creation/files/system-xuser.conf | 11 + .../user-creation/xuser-account_0.1.bb | 28 + ...src-Makefile-improve-reproducibility.patch | 43 + .../vim/files/disable_acl_header_check.patch | 36 + .../vim/files/no-path-adjust.patch | 29 + ...m-add-knob-whether-elf.h-are-checked.patch | 39 + poky/meta/recipes-support/vim/vim-tiny_9.0.bb | 12 + poky/meta/recipes-support/vim/vim.inc | 157 + poky/meta/recipes-support/vim/vim_9.0.bb | 19 + ...EXITCODE-macro-for-non-glibc-systems.patch | 42 + ...rrectly-substitute-gtkdoc-qemu-wrapp.patch | 24 + poky/meta/recipes-support/vte/vte_0.66.2.bb | 62 + .../recipes-support/xxhash/xxhash_0.8.1.bb | 27 + poky/meta/recipes.txt | 13 + poky/meta/site/arc-common | 11 + poky/meta/site/arm-32 | 33 + poky/meta/site/arm-64 | 32 + poky/meta/site/arm-common | 147 + poky/meta/site/arm-darwin | 11 + poky/meta/site/arm-darwin8 | 11 + poky/meta/site/arm-linux | 157 + poky/meta/site/armeb-linux | 43 + poky/meta/site/common | 28 + poky/meta/site/common-darwin | 2 + poky/meta/site/common-glibc | 93 + poky/meta/site/common-linux | 75 + poky/meta/site/common-mingw | 2 + poky/meta/site/common-musl | 60 + poky/meta/site/endian-big | 8 + poky/meta/site/endian-little | 8 + poky/meta/site/ix86-common | 204 + poky/meta/site/microblaze-linux | 54 + poky/meta/site/mips-common | 39 + poky/meta/site/mips-linux | 76 + poky/meta/site/mips64-linux | 80 + poky/meta/site/mips64el-linux | 80 + poky/meta/site/mipsel-linux | 76 + poky/meta/site/mipsisa32r6-linux | 76 + poky/meta/site/mipsisa32r6el-linux | 76 + poky/meta/site/mipsisa64r6-linux | 80 + poky/meta/site/mipsisa64r6el-linux | 80 + poky/meta/site/native | 1 + poky/meta/site/nios2-linux | 366 + poky/meta/site/powerpc-common | 14 + poky/meta/site/powerpc-darwin | 7 + poky/meta/site/powerpc-linux | 16 + poky/meta/site/powerpc32-linux | 242 + poky/meta/site/powerpc32-linux-glibc | 8 + poky/meta/site/powerpc32-linux-musl | 2 + poky/meta/site/powerpc64-linux | 40 + poky/meta/site/powerpc64-linux-glibc | 2 + poky/meta/site/powerpc64-linux-musl | 1 + poky/meta/site/riscv32-linux | 11 + poky/meta/site/riscv64-linux | 11 + poky/meta/site/sh-common | 212 + poky/meta/site/sparc-linux | 48 + poky/meta/site/x32-linux | 8 + poky/meta/site/x86_64-linux | 117 + poky/oe-init-build-env | 53 + poky/scripts/README | 1 + poky/scripts/autobuilder-worker-prereq-tests | 76 + poky/scripts/bitbake-prserv-tool | 115 + poky/scripts/bitbake-whatchanged | 320 + poky/scripts/buildall-qemu | 120 + poky/scripts/buildhistory-collect-srcrevs | 108 + poky/scripts/buildhistory-diff | 134 + poky/scripts/buildstats-diff | 302 + poky/scripts/combo-layer | 1384 + poky/scripts/combo-layer-hook-default.sh | 23 + poky/scripts/combo-layer.conf.example | 93 + .../scripts/contrib/bb-perf/bb-matrix-plot.sh | 124 + poky/scripts/contrib/bb-perf/bb-matrix.sh | 66 + .../contrib/bb-perf/buildstats-plot.sh | 160 + poky/scripts/contrib/bb-perf/buildstats.sh | 167 + poky/scripts/contrib/bbvars.py | 168 + .../contrib/build-perf-test-wrapper.sh | 247 + poky/scripts/contrib/convert-overrides.py | 155 + poky/scripts/contrib/convert-spdx-licenses.py | 145 + poky/scripts/contrib/convert-srcuri.py | 77 + .../contrib/convert-variable-renames.py | 116 + poky/scripts/contrib/ddimage | 170 + poky/scripts/contrib/devtool-stress.py | 245 + poky/scripts/contrib/dialog-power-control | 55 + poky/scripts/contrib/documentation-audit.sh | 95 + poky/scripts/contrib/graph-tool | 118 + poky/scripts/contrib/image-manifest | 523 + .../contrib/list-packageconfig-flags.py | 167 + .../contrib/oe-build-perf-report-email.py | 121 + poky/scripts/contrib/patchreview.py | 238 + poky/scripts/contrib/patchtest.sh | 104 + poky/scripts/contrib/serdevtry | 61 + poky/scripts/contrib/test_build_time.sh | 223 + .../scripts/contrib/test_build_time_worker.sh | 39 + poky/scripts/contrib/uncovered | 26 + poky/scripts/contrib/verify-homepage.py | 64 + poky/scripts/cp-noerror | 54 + poky/scripts/create-pull-request | 279 + poky/scripts/cross-intercept/ar | 1 + poky/scripts/crosstap | 458 + poky/scripts/devtool | 343 + poky/scripts/gen-lockedsig-cache | 119 + poky/scripts/gen-site-config | 43 + poky/scripts/git | 26 + poky/scripts/install-buildtools | 345 + poky/scripts/lib/argparse_oe.py | 180 + poky/scripts/lib/build_perf/__init__.py | 24 + poky/scripts/lib/build_perf/html.py | 12 + .../build_perf/html/measurement_chart.html | 50 + poky/scripts/lib/build_perf/html/report.html | 289 + poky/scripts/lib/build_perf/report.py | 339 + .../lib/build_perf/scrape-html-report.js | 56 + poky/scripts/lib/buildstats.py | 368 + poky/scripts/lib/checklayer/__init__.py | 454 + poky/scripts/lib/checklayer/case.py | 9 + poky/scripts/lib/checklayer/cases/__init__.py | 0 poky/scripts/lib/checklayer/cases/bsp.py | 206 + poky/scripts/lib/checklayer/cases/common.py | 89 + poky/scripts/lib/checklayer/cases/distro.py | 28 + poky/scripts/lib/checklayer/context.py | 17 + poky/scripts/lib/devtool/__init__.py | 379 + poky/scripts/lib/devtool/build.py | 92 + poky/scripts/lib/devtool/build_image.py | 164 + poky/scripts/lib/devtool/build_sdk.py | 55 + poky/scripts/lib/devtool/deploy.py | 366 + poky/scripts/lib/devtool/export.py | 109 + poky/scripts/lib/devtool/import.py | 134 + poky/scripts/lib/devtool/menuconfig.py | 79 + poky/scripts/lib/devtool/package.py | 50 + poky/scripts/lib/devtool/runqemu.py | 64 + poky/scripts/lib/devtool/sdk.py | 329 + poky/scripts/lib/devtool/search.py | 109 + poky/scripts/lib/devtool/standard.py | 2349 ++ poky/scripts/lib/devtool/upgrade.py | 658 + poky/scripts/lib/devtool/utilcmds.py | 242 + poky/scripts/lib/recipetool/__init__.py | 0 poky/scripts/lib/recipetool/append.py | 447 + poky/scripts/lib/recipetool/create.py | 1406 + .../scripts/lib/recipetool/create_buildsys.py | 875 + .../lib/recipetool/create_buildsys_python.py | 747 + poky/scripts/lib/recipetool/create_kernel.py | 89 + poky/scripts/lib/recipetool/create_kmod.py | 142 + poky/scripts/lib/recipetool/create_npm.py | 299 + poky/scripts/lib/recipetool/edit.py | 44 + poky/scripts/lib/recipetool/licenses.csv | 37 + poky/scripts/lib/recipetool/newappend.py | 79 + poky/scripts/lib/recipetool/setvar.py | 65 + poky/scripts/lib/resulttool/__init__.py | 0 poky/scripts/lib/resulttool/log.py | 104 + .../scripts/lib/resulttool/manualexecution.py | 235 + poky/scripts/lib/resulttool/merge.py | 46 + poky/scripts/lib/resulttool/regression.py | 186 + poky/scripts/lib/resulttool/report.py | 315 + poky/scripts/lib/resulttool/resultutils.py | 228 + poky/scripts/lib/resulttool/store.py | 104 + .../template/test_report_full_text.txt | 79 + poky/scripts/lib/scriptpath.py | 32 + poky/scripts/lib/scriptutils.py | 284 + poky/scripts/lib/wic/__init__.py | 10 + .../scripts/lib/wic/canned-wks/common.wks.inc | 3 + .../directdisk-bootloader-config.cfg | 27 + .../directdisk-bootloader-config.wks | 8 + .../lib/wic/canned-wks/directdisk-gpt.wks | 10 + .../canned-wks/directdisk-multi-rootfs.wks | 23 + .../scripts/lib/wic/canned-wks/directdisk.wks | 8 + .../lib/wic/canned-wks/efi-bootdisk.wks.in | 3 + poky/scripts/lib/wic/canned-wks/mkefidisk.wks | 11 + .../lib/wic/canned-wks/mkhybridiso.wks | 7 + poky/scripts/lib/wic/canned-wks/qemuriscv.wks | 3 + .../lib/wic/canned-wks/qemux86-directdisk.wks | 8 + .../lib/wic/canned-wks/sdimage-bootpart.wks | 6 + .../lib/wic/canned-wks/systemd-bootdisk.wks | 11 + poky/scripts/lib/wic/engine.py | 628 + poky/scripts/lib/wic/filemap.py | 576 + poky/scripts/lib/wic/help.py | 1142 + poky/scripts/lib/wic/ksparser.py | 295 + poky/scripts/lib/wic/misc.py | 266 + poky/scripts/lib/wic/partition.py | 525 + poky/scripts/lib/wic/pluginbase.py | 144 + poky/scripts/lib/wic/plugins/imager/direct.py | 628 + .../wic/plugins/source/bootimg-biosplusefi.py | 213 + .../lib/wic/plugins/source/bootimg-efi.py | 422 + .../wic/plugins/source/bootimg-partition.py | 194 + .../lib/wic/plugins/source/bootimg-pcbios.py | 209 + poky/scripts/lib/wic/plugins/source/empty.py | 32 + .../wic/plugins/source/isoimage-isohybrid.py | 461 + .../scripts/lib/wic/plugins/source/rawcopy.py | 108 + poky/scripts/lib/wic/plugins/source/rootfs.py | 236 + poky/scripts/multilib_header_wrapper.h | 31 + poky/scripts/native-intercept/ar | 32 + poky/scripts/native-intercept/chgrp | 5 + poky/scripts/native-intercept/chown | 5 + poky/scripts/nativesdk-intercept/chgrp | 27 + poky/scripts/nativesdk-intercept/chown | 27 + poky/scripts/oe-build-perf-report | 615 + poky/scripts/oe-build-perf-test | 216 + poky/scripts/oe-buildenv-internal | 118 + poky/scripts/oe-check-sstate | 107 + poky/scripts/oe-debuginfod | 26 + poky/scripts/oe-depends-dot | 176 + poky/scripts/oe-find-native-sysroot | 103 + poky/scripts/oe-git-archive | 118 + poky/scripts/oe-git-proxy | 187 + poky/scripts/oe-gnome-terminal-phonehome | 12 + poky/scripts/oe-pkgdata-browser | 255 + poky/scripts/oe-pkgdata-browser.glade | 337 + poky/scripts/oe-pkgdata-util | 633 + poky/scripts/oe-publish-sdk | 149 + poky/scripts/oe-pylint | 13 + poky/scripts/oe-run-native | 56 + poky/scripts/oe-selftest | 65 + poky/scripts/oe-setup-builddir | 131 + poky/scripts/oe-test | 83 + poky/scripts/oe-time-dd-test.sh | 102 + poky/scripts/oe-trim-schemas | 61 + poky/scripts/oepydevshell-internal.py | 102 + poky/scripts/opkg-query-helper.py | 72 + .../postinst-intercepts/delay_to_first_boot | 6 + .../postinst-intercepts/postinst_intercept | 58 + .../update_desktop_database | 8 + .../postinst-intercepts/update_font_cache | 13 + .../update_gio_module_cache | 11 + .../postinst-intercepts/update_gtk_icon_cache | 17 + .../update_gtk_immodules_cache | 19 + .../postinst-intercepts/update_mime_database | 9 + .../postinst-intercepts/update_pixbuf_cache | 13 + .../postinst-intercepts/update_udev_hwdb | 25 + poky/scripts/pybootchartgui/AUTHORS | 11 + poky/scripts/pybootchartgui/COPYING | 340 + poky/scripts/pybootchartgui/MAINTAINERS | 3 + poky/scripts/pybootchartgui/NEWS | 204 + .../scripts/pybootchartgui/README.pybootchart | 37 + poky/scripts/pybootchartgui/pybootchartgui.py | 23 + .../pybootchartgui/pybootchartgui/__init__.py | 0 .../pybootchartgui/pybootchartgui/batch.py | 46 + .../pybootchartgui/pybootchartgui/draw.py | 983 + .../pybootchartgui/pybootchartgui/gui.py | 348 + .../pybootchartgui/pybootchartgui/main.py | 1 + .../pybootchartgui/pybootchartgui/main.py.in | 183 + .../pybootchartgui/pybootchartgui/parsing.py | 821 + .../pybootchartgui/process_tree.py | 292 + .../pybootchartgui/pybootchartgui/samples.py | 178 + .../pybootchartgui/tests/parser_test.py | 105 + .../pybootchartgui/tests/process_tree_test.py | 92 + poky/scripts/pythondeps | 250 + poky/scripts/recipetool | 116 + poky/scripts/relocate_sdk.py | 268 + poky/scripts/resulttool | 78 + poky/scripts/rootfs_rpm-extract-postinst.awk | 11 + poky/scripts/rpm2cpio.sh | 65 + poky/scripts/runqemu | 1665 + poky/scripts/runqemu-addptable2image | 39 + poky/scripts/runqemu-export-rootfs | 146 + poky/scripts/runqemu-extract-sdk | 99 + poky/scripts/runqemu-gen-tapdevs | 109 + poky/scripts/runqemu-ifdown | 67 + poky/scripts/runqemu-ifup | 111 + poky/scripts/runqemu.README | 42 + poky/scripts/send-error-report | 208 + poky/scripts/send-pull-request | 171 + poky/scripts/sstate-cache-management.sh | 458 + poky/scripts/sstate-diff-machines.sh | 176 + poky/scripts/sstate-sysroot-cruft.sh | 189 + poky/scripts/sysroot-relativelinks.py | 35 + poky/scripts/task-time | 135 + poky/scripts/test-reexec | 110 + poky/scripts/test-remote-image | 347 + poky/scripts/tiny/dirsize.py | 75 + poky/scripts/tiny/ksize.py | 156 + poky/scripts/tiny/ksum.py | 154 + poky/scripts/verify-bashisms | 158 + poky/scripts/wic | 551 + poky/scripts/yocto-check-layer | 256 + poky/scripts/yocto-check-layer-wrapper | 47 + run_crops.sh | 31 + 5771 files changed, 723246 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 Makefile create mode 100644 backup/flutter-elinux_git.bb create mode 100644 backup/flutter-wonders_git.bb create mode 100644 build/conf/bblayers.conf create mode 100644 build/conf/local.conf create mode 100644 build/conf/templateconf.cfg create mode 100644 docker-compose.yml create mode 100644 notes.md create mode 100644 poky/.gitignore create mode 100644 poky/.templateconf create mode 100644 poky/LICENSE create mode 100644 poky/LICENSE.GPL-2.0-only create mode 100644 poky/LICENSE.MIT create mode 100644 poky/MAINTAINERS.md create mode 100644 poky/MEMORIAM create mode 100644 poky/Makefile create mode 100644 poky/README.OE-Core.md create mode 120000 poky/README.hardware.md create mode 120000 poky/README.md create mode 120000 poky/README.poky.md create mode 100644 poky/README.qemu.md create mode 100644 poky/bitbake/.gitattributes create mode 100644 poky/bitbake/AUTHORS create mode 100644 poky/bitbake/ChangeLog create mode 100644 poky/bitbake/LICENSE create mode 100644 poky/bitbake/LICENSE.GPL-2.0-only create mode 100644 poky/bitbake/LICENSE.MIT create mode 100644 poky/bitbake/README create mode 100755 poky/bitbake/bin/bitbake create mode 100755 poky/bitbake/bin/bitbake-diffsigs create mode 120000 poky/bitbake/bin/bitbake-dumpsig create mode 100755 poky/bitbake/bin/bitbake-getvar create mode 100755 poky/bitbake/bin/bitbake-hashclient create mode 100755 poky/bitbake/bin/bitbake-hashserv create mode 100755 poky/bitbake/bin/bitbake-layers create mode 100755 poky/bitbake/bin/bitbake-prserv create mode 100755 poky/bitbake/bin/bitbake-selftest create mode 100755 poky/bitbake/bin/bitbake-server create mode 100755 poky/bitbake/bin/bitbake-worker create mode 100755 poky/bitbake/bin/git-make-shallow create mode 100755 poky/bitbake/bin/toaster create mode 100755 poky/bitbake/bin/toaster-eventreplay create mode 100644 poky/bitbake/contrib/README create mode 100644 poky/bitbake/contrib/autobuilderlog.json create mode 100644 poky/bitbake/contrib/bbdev.sh create mode 100755 poky/bitbake/contrib/bbparse-torture.py create mode 100755 poky/bitbake/contrib/dump_cache.py create mode 100644 poky/bitbake/contrib/hashserv/Dockerfile create mode 100644 poky/bitbake/contrib/prserv/Dockerfile create mode 100644 poky/bitbake/contrib/vim/LICENSE.txt create mode 100644 poky/bitbake/contrib/vim/ftdetect/bitbake.vim create mode 100644 poky/bitbake/contrib/vim/ftplugin/bitbake.vim create mode 100644 poky/bitbake/contrib/vim/indent/bitbake.vim create mode 100644 poky/bitbake/contrib/vim/plugin/newbb.vim create mode 100644 poky/bitbake/contrib/vim/plugin/newbbappend.vim create mode 100644 poky/bitbake/contrib/vim/syntax/bitbake.vim create mode 100644 poky/bitbake/doc/.gitignore create mode 100644 poky/bitbake/doc/COPYING.GPL create mode 100644 poky/bitbake/doc/COPYING.MIT create mode 100644 poky/bitbake/doc/Makefile create mode 100644 poky/bitbake/doc/README create mode 100644 poky/bitbake/doc/_templates/breadcrumbs.html create mode 100644 poky/bitbake/doc/_templates/layout.html create mode 100644 poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst create mode 100644 poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst create mode 100644 poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst create mode 100644 poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.rst create mode 100644 poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst create mode 100644 poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst create mode 100644 poky/bitbake/doc/bitbake-user-manual/figures/bb_multiconfig_files.png create mode 100644 poky/bitbake/doc/bitbake-user-manual/figures/bitbake-title.png create mode 100644 poky/bitbake/doc/bitbake.1 create mode 100644 poky/bitbake/doc/conf.py create mode 100644 poky/bitbake/doc/genindex.rst create mode 100644 poky/bitbake/doc/index.rst create mode 100644 poky/bitbake/doc/releases.rst create mode 100644 poky/bitbake/doc/sphinx-static/switchers.js create mode 100644 poky/bitbake/doc/sphinx-static/theme_overrides.css create mode 100644 poky/bitbake/doc/template/Vera.ttf create mode 100644 poky/bitbake/doc/template/VeraMoBd.ttf create mode 100644 poky/bitbake/doc/template/VeraMono.ttf create mode 100644 poky/bitbake/doc/template/draft.png create mode 100644 poky/bitbake/lib/bb/COW.py create mode 100644 poky/bitbake/lib/bb/__init__.py create mode 100644 poky/bitbake/lib/bb/asyncrpc/__init__.py create mode 100644 poky/bitbake/lib/bb/asyncrpc/client.py create mode 100644 poky/bitbake/lib/bb/asyncrpc/serv.py create mode 100644 poky/bitbake/lib/bb/build.py create mode 100644 poky/bitbake/lib/bb/cache.py create mode 100644 poky/bitbake/lib/bb/cache_extra.py create mode 100644 poky/bitbake/lib/bb/checksum.py create mode 100644 poky/bitbake/lib/bb/codeparser.py create mode 100644 poky/bitbake/lib/bb/command.py create mode 100644 poky/bitbake/lib/bb/compress/_pipecompress.py create mode 100644 poky/bitbake/lib/bb/compress/lz4.py create mode 100644 poky/bitbake/lib/bb/compress/zstd.py create mode 100644 poky/bitbake/lib/bb/cooker.py create mode 100644 poky/bitbake/lib/bb/cookerdata.py create mode 100644 poky/bitbake/lib/bb/daemonize.py create mode 100644 poky/bitbake/lib/bb/data.py create mode 100644 poky/bitbake/lib/bb/data_smart.py create mode 100644 poky/bitbake/lib/bb/event.py create mode 100644 poky/bitbake/lib/bb/exceptions.py create mode 100644 poky/bitbake/lib/bb/fetch2/README create mode 100644 poky/bitbake/lib/bb/fetch2/__init__.py create mode 100644 poky/bitbake/lib/bb/fetch2/az.py create mode 100644 poky/bitbake/lib/bb/fetch2/bzr.py create mode 100644 poky/bitbake/lib/bb/fetch2/clearcase.py create mode 100644 poky/bitbake/lib/bb/fetch2/crate.py create mode 100644 poky/bitbake/lib/bb/fetch2/cvs.py create mode 100644 poky/bitbake/lib/bb/fetch2/git.py create mode 100644 poky/bitbake/lib/bb/fetch2/gitannex.py create mode 100644 poky/bitbake/lib/bb/fetch2/gitsm.py create mode 100644 poky/bitbake/lib/bb/fetch2/hg.py create mode 100644 poky/bitbake/lib/bb/fetch2/local.py create mode 100644 poky/bitbake/lib/bb/fetch2/npm.py create mode 100644 poky/bitbake/lib/bb/fetch2/npmsw.py create mode 100644 poky/bitbake/lib/bb/fetch2/osc.py create mode 100644 poky/bitbake/lib/bb/fetch2/perforce.py create mode 100644 poky/bitbake/lib/bb/fetch2/repo.py create mode 100644 poky/bitbake/lib/bb/fetch2/s3.py create mode 100644 poky/bitbake/lib/bb/fetch2/sftp.py create mode 100644 poky/bitbake/lib/bb/fetch2/ssh.py create mode 100644 poky/bitbake/lib/bb/fetch2/svn.py create mode 100644 poky/bitbake/lib/bb/fetch2/wget.py create mode 100755 poky/bitbake/lib/bb/main.py create mode 100644 poky/bitbake/lib/bb/methodpool.py create mode 100644 poky/bitbake/lib/bb/monitordisk.py create mode 100644 poky/bitbake/lib/bb/msg.py create mode 100644 poky/bitbake/lib/bb/namedtuple_with_abc.py create mode 100644 poky/bitbake/lib/bb/parse/__init__.py create mode 100644 poky/bitbake/lib/bb/parse/ast.py create mode 100644 poky/bitbake/lib/bb/parse/parse_py/BBHandler.py create mode 100644 poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py create mode 100644 poky/bitbake/lib/bb/parse/parse_py/__init__.py create mode 100644 poky/bitbake/lib/bb/persist_data.py create mode 100644 poky/bitbake/lib/bb/process.py create mode 100644 poky/bitbake/lib/bb/progress.py create mode 100644 poky/bitbake/lib/bb/providers.py create mode 100644 poky/bitbake/lib/bb/pysh/__init__.py create mode 100644 poky/bitbake/lib/bb/pysh/pyshlex.py create mode 100644 poky/bitbake/lib/bb/pysh/pyshyacc.py create mode 100644 poky/bitbake/lib/bb/pysh/sherrors.py create mode 100644 poky/bitbake/lib/bb/remotedata.py create mode 100644 poky/bitbake/lib/bb/runqueue.py create mode 100644 poky/bitbake/lib/bb/server/__init__.py create mode 100644 poky/bitbake/lib/bb/server/process.py create mode 100644 poky/bitbake/lib/bb/server/xmlrpcclient.py create mode 100644 poky/bitbake/lib/bb/server/xmlrpcserver.py create mode 100644 poky/bitbake/lib/bb/siggen.py create mode 100644 poky/bitbake/lib/bb/taskdata.py create mode 100644 poky/bitbake/lib/bb/tests/__init__.py create mode 100644 poky/bitbake/lib/bb/tests/codeparser.py create mode 100644 poky/bitbake/lib/bb/tests/color.py create mode 100644 poky/bitbake/lib/bb/tests/compression.py create mode 100644 poky/bitbake/lib/bb/tests/cooker.py create mode 100644 poky/bitbake/lib/bb/tests/cow.py create mode 100644 poky/bitbake/lib/bb/tests/data.py create mode 100644 poky/bitbake/lib/bb/tests/event.py create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/apple/cups/releases create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/d/db5.3/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/m/minicom/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/downloads/enchant/1.6.0/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v2.8/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.0/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.1/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.10/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.11/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.12/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.13/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.14/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.15/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.16/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.2/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.3/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.4/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.5/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.6/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.7/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.8/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.9/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.23/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.24/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.25/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.26/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.27/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.28/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.29/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.30/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.31/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.32/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.33/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.34/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.35/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/releases/eglibc/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/releases/gnu-config/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch-testdata/software/pulseaudio/releases/index.html create mode 100644 poky/bitbake/lib/bb/tests/fetch.py create mode 100644 poky/bitbake/lib/bb/tests/parse.py create mode 100644 poky/bitbake/lib/bb/tests/persist_data.py create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/classes/base.bbclass create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/classes/image.bbclass create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/classes/native.bbclass create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc-1.conf create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc_2.conf create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/a1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/b1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/c1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/d1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/e1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/f1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc1.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc2.bb create mode 100644 poky/bitbake/lib/bb/tests/runqueue.py create mode 100644 poky/bitbake/lib/bb/tests/siggen.py create mode 100644 poky/bitbake/lib/bb/tests/support/httpserver.py create mode 100644 poky/bitbake/lib/bb/tests/utils.py create mode 100644 poky/bitbake/lib/bb/tinfoil.py create mode 100644 poky/bitbake/lib/bb/ui/__init__.py create mode 100644 poky/bitbake/lib/bb/ui/buildinfohelper.py create mode 100644 poky/bitbake/lib/bb/ui/icons/images/images_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/images/images_hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/add-hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/add.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/alert.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/confirmation.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/denied.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/error.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/info.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/issues.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/refresh.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/remove-hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/remove.png create mode 100644 poky/bitbake/lib/bb/ui/icons/indicators/tick.png create mode 100644 poky/bitbake/lib/bb/ui/icons/info/info_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/info/info_hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/layers/layers_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/layers/layers_hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/packages/packages_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/packages/packages_hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/recipe/recipe_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/recipe/recipe_hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/settings/settings_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/settings/settings_hover.png create mode 100644 poky/bitbake/lib/bb/ui/icons/templates/templates_display.png create mode 100644 poky/bitbake/lib/bb/ui/icons/templates/templates_hover.png create mode 100644 poky/bitbake/lib/bb/ui/knotty.py create mode 100644 poky/bitbake/lib/bb/ui/ncurses.py create mode 100644 poky/bitbake/lib/bb/ui/taskexp.py create mode 100644 poky/bitbake/lib/bb/ui/teamcity.py create mode 100644 poky/bitbake/lib/bb/ui/toasterui.py create mode 100644 poky/bitbake/lib/bb/ui/uievent.py create mode 100644 poky/bitbake/lib/bb/ui/uihelper.py create mode 100644 poky/bitbake/lib/bb/utils.py create mode 100644 poky/bitbake/lib/bblayers/__init__.py create mode 100644 poky/bitbake/lib/bblayers/action.py create mode 100644 poky/bitbake/lib/bblayers/common.py create mode 100644 poky/bitbake/lib/bblayers/layerindex.py create mode 100644 poky/bitbake/lib/bblayers/query.py create mode 100644 poky/bitbake/lib/bs4/AUTHORS.txt create mode 100644 poky/bitbake/lib/bs4/COPYING.txt create mode 100644 poky/bitbake/lib/bs4/NEWS.txt create mode 100644 poky/bitbake/lib/bs4/__init__.py create mode 100644 poky/bitbake/lib/bs4/builder/__init__.py create mode 100644 poky/bitbake/lib/bs4/builder/_html5lib.py create mode 100644 poky/bitbake/lib/bs4/builder/_htmlparser.py create mode 100644 poky/bitbake/lib/bs4/builder/_lxml.py create mode 100644 poky/bitbake/lib/bs4/dammit.py create mode 100644 poky/bitbake/lib/bs4/diagnose.py create mode 100644 poky/bitbake/lib/bs4/element.py create mode 100644 poky/bitbake/lib/bs4/testing.py create mode 100644 poky/bitbake/lib/bs4/tests/__init__.py create mode 100644 poky/bitbake/lib/bs4/tests/test_builder_registry.py create mode 100644 poky/bitbake/lib/bs4/tests/test_docs.py create mode 100644 poky/bitbake/lib/bs4/tests/test_html5lib.py create mode 100644 poky/bitbake/lib/bs4/tests/test_htmlparser.py create mode 100644 poky/bitbake/lib/bs4/tests/test_lxml.py create mode 100644 poky/bitbake/lib/bs4/tests/test_soup.py create mode 100644 poky/bitbake/lib/bs4/tests/test_tree.py create mode 100644 poky/bitbake/lib/codegen.py create mode 100644 poky/bitbake/lib/hashserv/__init__.py create mode 100644 poky/bitbake/lib/hashserv/client.py create mode 100644 poky/bitbake/lib/hashserv/server.py create mode 100644 poky/bitbake/lib/hashserv/tests.py create mode 100644 poky/bitbake/lib/layerindexlib/README create mode 100644 poky/bitbake/lib/layerindexlib/__init__.py create mode 100644 poky/bitbake/lib/layerindexlib/cooker.py create mode 100644 poky/bitbake/lib/layerindexlib/plugin.py create mode 100644 poky/bitbake/lib/layerindexlib/restapi.py create mode 100644 poky/bitbake/lib/layerindexlib/tests/__init__.py create mode 100644 poky/bitbake/lib/layerindexlib/tests/common.py create mode 100644 poky/bitbake/lib/layerindexlib/tests/cooker.py create mode 100644 poky/bitbake/lib/layerindexlib/tests/layerindexobj.py create mode 100644 poky/bitbake/lib/layerindexlib/tests/restapi.py create mode 100644 poky/bitbake/lib/layerindexlib/tests/testdata/README create mode 100644 poky/bitbake/lib/layerindexlib/tests/testdata/layer1/conf/layer.conf create mode 100644 poky/bitbake/lib/layerindexlib/tests/testdata/layer2/conf/layer.conf create mode 100644 poky/bitbake/lib/layerindexlib/tests/testdata/layer3/conf/layer.conf create mode 100644 poky/bitbake/lib/layerindexlib/tests/testdata/layer4/conf/layer.conf create mode 100644 poky/bitbake/lib/ply/__init__.py create mode 100644 poky/bitbake/lib/ply/lex.py create mode 100644 poky/bitbake/lib/ply/yacc.py create mode 100644 poky/bitbake/lib/progressbar/LICENSE.txt create mode 100644 poky/bitbake/lib/progressbar/__init__.py create mode 100644 poky/bitbake/lib/progressbar/compat.py create mode 100644 poky/bitbake/lib/progressbar/progressbar.py create mode 100644 poky/bitbake/lib/progressbar/widgets.py create mode 100644 poky/bitbake/lib/prserv/__init__.py create mode 100644 poky/bitbake/lib/prserv/client.py create mode 100644 poky/bitbake/lib/prserv/db.py create mode 100644 poky/bitbake/lib/prserv/serv.py create mode 100644 poky/bitbake/lib/pyinotify.py create mode 100644 poky/bitbake/lib/simplediff/LICENSE create mode 100644 poky/bitbake/lib/simplediff/__init__.py create mode 100644 poky/bitbake/lib/toaster/__init__.py create mode 100644 poky/bitbake/lib/toaster/bldcollector/__init__.py create mode 100644 poky/bitbake/lib/toaster/bldcollector/admin.py create mode 100644 poky/bitbake/lib/toaster/bldcollector/urls.py create mode 100644 poky/bitbake/lib/toaster/bldcollector/views.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/__init__.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/admin.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/bbcontroller.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/management/__init__.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/management/commands/__init__.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0001_initial.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0002_auto_20160120_1250.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0003_add_cancelling_state.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160523_1446.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0005_reorder_buildrequest_states.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0006_brlayer_local_source_dir.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0007_brlayers_optional_gitinfo.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/0008_models_bigautofield.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/migrations/__init__.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/models.py create mode 100644 poky/bitbake/lib/toaster/bldcontrol/views.py create mode 100755 poky/bitbake/lib/toaster/manage.py create mode 100644 poky/bitbake/lib/toaster/orm/__init__.py create mode 100644 poky/bitbake/lib/toaster/orm/fixtures/README create mode 100755 poky/bitbake/lib/toaster/orm/fixtures/custom_toaster_append.sh_sample create mode 100755 poky/bitbake/lib/toaster/orm/fixtures/gen_fixtures.py create mode 100644 poky/bitbake/lib/toaster/orm/fixtures/oe-core.xml create mode 100644 poky/bitbake/lib/toaster/orm/fixtures/poky.xml create mode 100644 poky/bitbake/lib/toaster/orm/fixtures/settings.xml create mode 100644 poky/bitbake/lib/toaster/orm/management/__init__.py create mode 100644 poky/bitbake/lib/toaster/orm/management/commands/__init__.py create mode 100644 poky/bitbake/lib/toaster/orm/management/commands/lsupdates.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0001_initial.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0003_customimagepackage.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0004_provides.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0005_task_field_separation.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0006_add_cancelled_state.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0007_auto_20160523_1446.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0008_refactor_artifact_models.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0009_target_package_manifest_path.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0010_delete_layer_source_references.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0011_delete_layersource.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0012_use_release_instead_of_up_branch.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0013_recipe_parse_progress_fields.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0014_allow_empty_buildname.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0015_layer_local_source_dir.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0016_clone_progress.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0017_distro_clone.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0018_project_specific.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0019_django_2_2.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/0020_models_bigautofield.py create mode 100644 poky/bitbake/lib/toaster/orm/migrations/__init__.py create mode 100644 poky/bitbake/lib/toaster/orm/models.py create mode 100644 poky/bitbake/lib/toaster/tests/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/README create mode 100644 poky/bitbake/lib/toaster/tests/browser/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/selenium_helpers.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/selenium_helpers_base.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_all_builds_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_all_projects_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_builddashboard_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_builddashboard_page_artifacts.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_builddashboard_page_recipes.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_builddashboard_page_tasks.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_js_unit_tests.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_landing_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_layerdetails_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_most_recent_builds_states.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_new_project_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_project_builds_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_project_config_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_project_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_sample.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_task_page.py create mode 100644 poky/bitbake/lib/toaster/tests/browser/test_toastertable_ui.py create mode 100644 poky/bitbake/lib/toaster/tests/builds/README create mode 100644 poky/bitbake/lib/toaster/tests/builds/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/builds/buildtest.py create mode 100644 poky/bitbake/lib/toaster/tests/builds/test_core_image_min.py create mode 100644 poky/bitbake/lib/toaster/tests/commands/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/commands/test_loaddata.py create mode 100644 poky/bitbake/lib/toaster/tests/commands/test_lsupdates.py create mode 100644 poky/bitbake/lib/toaster/tests/commands/test_runbuilds.py create mode 100644 poky/bitbake/lib/toaster/tests/db/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/db/test_db.py create mode 100644 poky/bitbake/lib/toaster/tests/eventreplay/README create mode 100644 poky/bitbake/lib/toaster/tests/eventreplay/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/functional/README create mode 100644 poky/bitbake/lib/toaster/tests/functional/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/functional/functional_helpers.py create mode 100644 poky/bitbake/lib/toaster/tests/functional/test_functional_basic.py create mode 100644 poky/bitbake/lib/toaster/tests/toaster-tests-requirements.txt create mode 100644 poky/bitbake/lib/toaster/tests/views/README create mode 100644 poky/bitbake/lib/toaster/tests/views/__init__.py create mode 100644 poky/bitbake/lib/toaster/tests/views/test_views.py create mode 100644 poky/bitbake/lib/toaster/toastergui/__init__.py create mode 100644 poky/bitbake/lib/toaster/toastergui/api.py create mode 100644 poky/bitbake/lib/toaster/toastergui/buildtables.py create mode 100644 poky/bitbake/lib/toaster/toastergui/fixtures/toastergui-unittest-data.xml create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/bootstrap.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/bootstrap.css.map create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/bootstrap.min.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/bootstrap.min.css.map create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/bootstrap3-transition.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/default.css create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/font-awesome.min.css create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_diagonals-thick_20_666666_40x40.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_flat_10_000000_40x100.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_glass_100_f6f6f6_1x400.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_glass_100_fdf5ce_1x400.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_glass_65_ffffff_1x400.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-icons_222222_256x240.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-icons_228ef1_256x240.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-icons_ef8c08_256x240.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-icons_ffd27a_256x240.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/images/ui-icons_ffffff_256x240.png create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/jquery-ui.min.css create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/jquery-ui.structure.min.css create mode 100755 poky/bitbake/lib/toaster/toastergui/static/css/jquery-ui.theme.min.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/jquery.treetable.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/jquery.treetable.theme.default.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/jquery.treetable.theme.toaster.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/qunit-1.18.0.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/css/screen.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/FontAwesome.otf create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/fontawesome-webfont.eot create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/fontawesome-webfont.svg create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/fontawesome-webfont.ttf create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/fontawesome-webfont.woff create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/glyphicons-halflings-regular.eot create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/glyphicons-halflings-regular.svg create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/glyphicons-halflings-regular.ttf create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/glyphicons-halflings-regular.woff create mode 100644 poky/bitbake/lib/toaster/toastergui/static/fonts/glyphicons-halflings-regular.woff2 create mode 100644 poky/bitbake/lib/toaster/toastergui/static/html/layer_deps_modal.html create mode 100644 poky/bitbake/lib/toaster/toastergui/static/img/logo.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/img/toaster_bw.png create mode 100644 poky/bitbake/lib/toaster/toastergui/static/jquery-treetable-license/GPL-LICENSE.txt create mode 100644 poky/bitbake/lib/toaster/toastergui/static/jquery-treetable-license/MIT-LICENSE.txt create mode 100644 poky/bitbake/lib/toaster/toastergui/static/jquery-treetable-license/README.md create mode 100644 poky/bitbake/lib/toaster/toastergui/static/jquery.treetable.theme.toaster.css create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/.jshintrc create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/bootstrap.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/customrecipe.js create mode 100755 poky/bitbake/lib/toaster/toastergui/static/js/filtersnippet.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/highlight.pack.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/importlayer.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/jquery-2.0.3.min.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/jquery-2.0.3.min.map create mode 100755 poky/bitbake/lib/toaster/toastergui/static/js/jquery-ui.min.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/jquery.cookie.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/jquery.treetable.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/jsrender.min.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/layerBtn.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/layerDepsModal.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/layerdetails.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/libtoaster.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/mrbsection.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/newcustomimage_modal.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/projectpage.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/projecttopbar.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/qunit-1.18.0.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/recipedetails.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/table.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/tests/test.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/typeahead.jquery.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/ui-bootstrap-tpls-0.11.0.js create mode 100644 poky/bitbake/lib/toaster/toastergui/static/js/ui-bootstrap-tpls-0.11.0.min.js create mode 100644 poky/bitbake/lib/toaster/toastergui/tablefilter.py create mode 100644 poky/bitbake/lib/toaster/toastergui/tables.py create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/base.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/base_specific.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/basebuildpage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/baseprojectbuildspage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/baseprojectspecificpage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/basetable_top.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/basetable_top_layers.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/bfile.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/brtargets.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/builddashboard.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/builds-toastertable.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/configuration.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/configvars.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/cpuusage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/customise_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/customrecipe.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/detail_pagination_bottom.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/detail_search_header.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/detail_sorted_header.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/dirinfo.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/diskio.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/distro_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/editcustomimage_modal.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/filtersnippet.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/health.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/importlayer.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/landing.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/landing_specific.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/layer_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/layerdetails.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/machine_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/mrb_section.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/newcustomimage.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/newcustomimage_modal.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/newproject.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/newproject_specific.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_built_detail.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_detail_base.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_included_detail.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/package_included_tabs.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/project.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/project_specific.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/project_specific_topbar.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/projectbuilds.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/projectconf.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/projects-toastertable.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/projecttopbar.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/recipe.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/recipe_add_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/recipe_btn.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/recipe_packages.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/recipedetails.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/snippets/gitrev_popover.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/snippets/pkg_revdependencies_popover.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/tablesort.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/target.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/task.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/toastertable-filter.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/toastertable-simple.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/toastertable.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templates/unavailable_artifact.html create mode 100644 poky/bitbake/lib/toaster/toastergui/templatetags/__init__.py create mode 100644 poky/bitbake/lib/toaster/toastergui/templatetags/field_values_filter.py create mode 100644 poky/bitbake/lib/toaster/toastergui/templatetags/objects_to_dictionaries_filter.py create mode 100644 poky/bitbake/lib/toaster/toastergui/templatetags/project_url_tag.py create mode 100644 poky/bitbake/lib/toaster/toastergui/templatetags/projecttags.py create mode 100644 poky/bitbake/lib/toaster/toastergui/typeaheads.py create mode 100644 poky/bitbake/lib/toaster/toastergui/urls.py create mode 100644 poky/bitbake/lib/toaster/toastergui/views.py create mode 100644 poky/bitbake/lib/toaster/toastergui/widgets.py create mode 100644 poky/bitbake/lib/toaster/toastermain/__init__.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/__init__.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/commands/__init__.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/commands/builddelete.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/commands/buildimport.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/commands/buildslist.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/commands/checksocket.py create mode 100644 poky/bitbake/lib/toaster/toastermain/management/commands/perf.py create mode 100644 poky/bitbake/lib/toaster/toastermain/settings.py create mode 100644 poky/bitbake/lib/toaster/toastermain/settings_production_example.py create mode 100644 poky/bitbake/lib/toaster/toastermain/settings_test.py create mode 100644 poky/bitbake/lib/toaster/toastermain/urls.py create mode 100644 poky/bitbake/lib/toaster/toastermain/wsgi.py create mode 100644 poky/bitbake/toaster-requirements.txt create mode 100644 poky/contrib/artwork/oe.svg create mode 100755 poky/contrib/git-hooks/sendemail-validate.sample create mode 100644 poky/documentation/.gitignore create mode 100644 poky/documentation/Makefile create mode 100644 poky/documentation/Pipfile create mode 100644 poky/documentation/README create mode 100644 poky/documentation/bitbake.rst create mode 100644 poky/documentation/boilerplate.rst create mode 100644 poky/documentation/brief-yoctoprojectqs/figures/bypqs-title.png create mode 100755 poky/documentation/brief-yoctoprojectqs/figures/yocto-project-transp.png create mode 100644 poky/documentation/brief-yoctoprojectqs/index.rst create mode 100644 poky/documentation/bsp-guide/bsp.rst create mode 100644 poky/documentation/bsp-guide/figures/bsp-dev-flow.png create mode 100644 poky/documentation/bsp-guide/figures/bsp-title.png create mode 100644 poky/documentation/bsp-guide/index.rst create mode 100644 poky/documentation/conf.py create mode 100644 poky/documentation/contributor-guide/identify-component.rst create mode 100644 poky/documentation/contributor-guide/index.rst create mode 100644 poky/documentation/contributor-guide/recipe-style-guide.rst create mode 100644 poky/documentation/contributor-guide/report-defect.rst create mode 100644 poky/documentation/contributor-guide/submit-changes.rst create mode 100644 poky/documentation/dev-manual/bmaptool.rst create mode 100644 poky/documentation/dev-manual/build-quality.rst create mode 100644 poky/documentation/dev-manual/building.rst create mode 100644 poky/documentation/dev-manual/custom-distribution.rst create mode 100644 poky/documentation/dev-manual/custom-template-configuration-directory.rst create mode 100644 poky/documentation/dev-manual/customizing-images.rst create mode 100644 poky/documentation/dev-manual/debugging.rst create mode 100644 poky/documentation/dev-manual/development-shell.rst create mode 100644 poky/documentation/dev-manual/device-manager.rst create mode 100644 poky/documentation/dev-manual/disk-space.rst create mode 100644 poky/documentation/dev-manual/efficiently-fetching-sources.rst create mode 100644 poky/documentation/dev-manual/error-reporting-tool.rst create mode 100644 poky/documentation/dev-manual/external-scm.rst create mode 100644 poky/documentation/dev-manual/external-toolchain.rst create mode 100644 poky/documentation/dev-manual/figures/bitbake-build-flow.png create mode 100644 poky/documentation/dev-manual/figures/buildhistory-web.png create mode 100644 poky/documentation/dev-manual/figures/buildhistory.png create mode 100644 poky/documentation/dev-manual/figures/cute-files-npm-example.png create mode 100644 poky/documentation/dev-manual/figures/dev-title.png create mode 100644 poky/documentation/dev-manual/figures/multiconfig_files.png create mode 100644 poky/documentation/dev-manual/figures/recipe-workflow.png create mode 100644 poky/documentation/dev-manual/gobject-introspection.rst create mode 100644 poky/documentation/dev-manual/index.rst create mode 100644 poky/documentation/dev-manual/init-manager.rst create mode 100644 poky/documentation/dev-manual/intro.rst create mode 100644 poky/documentation/dev-manual/layers.rst create mode 100644 poky/documentation/dev-manual/libraries.rst create mode 100644 poky/documentation/dev-manual/licenses.rst create mode 100644 poky/documentation/dev-manual/new-machine.rst create mode 100644 poky/documentation/dev-manual/new-recipe.rst create mode 100644 poky/documentation/dev-manual/packages.rst create mode 100644 poky/documentation/dev-manual/prebuilt-libraries.rst create mode 100644 poky/documentation/dev-manual/python-development-shell.rst create mode 100644 poky/documentation/dev-manual/qemu.rst create mode 100644 poky/documentation/dev-manual/quilt.rst create mode 100644 poky/documentation/dev-manual/read-only-rootfs.rst create mode 100644 poky/documentation/dev-manual/runtime-testing.rst create mode 100644 poky/documentation/dev-manual/sbom.rst create mode 100644 poky/documentation/dev-manual/securing-images.rst create mode 100644 poky/documentation/dev-manual/speeding-up-build.rst create mode 100644 poky/documentation/dev-manual/start.rst create mode 100644 poky/documentation/dev-manual/temporary-source-code.rst create mode 100644 poky/documentation/dev-manual/upgrading-recipes.rst create mode 100644 poky/documentation/dev-manual/vulnerabilities.rst create mode 100644 poky/documentation/dev-manual/wayland.rst create mode 100644 poky/documentation/dev-manual/wic.rst create mode 100644 poky/documentation/dev-manual/x32-psabi.rst create mode 100644 poky/documentation/figures/yp-how-it-works-new-diagram.png create mode 100644 poky/documentation/genindex.rst create mode 100644 poky/documentation/index.rst create mode 100644 poky/documentation/kernel-dev/advanced.rst create mode 100644 poky/documentation/kernel-dev/common.rst create mode 100644 poky/documentation/kernel-dev/concepts-appx.rst create mode 100644 poky/documentation/kernel-dev/faq.rst create mode 100755 poky/documentation/kernel-dev/figures/kernel-architecture-overview.png create mode 100644 poky/documentation/kernel-dev/figures/kernel-dev-flow.png create mode 100644 poky/documentation/kernel-dev/figures/kernel-dev-title.png create mode 100644 poky/documentation/kernel-dev/figures/kernel-overview-2-generic.png create mode 100644 poky/documentation/kernel-dev/index.rst create mode 100644 poky/documentation/kernel-dev/intro.rst create mode 100644 poky/documentation/kernel-dev/maint-appx.rst create mode 100644 poky/documentation/migration-guides/index.rst create mode 100644 poky/documentation/migration-guides/migration-1.3.rst create mode 100644 poky/documentation/migration-guides/migration-1.4.rst create mode 100644 poky/documentation/migration-guides/migration-1.5.rst create mode 100644 poky/documentation/migration-guides/migration-1.6.rst create mode 100644 poky/documentation/migration-guides/migration-1.7.rst create mode 100644 poky/documentation/migration-guides/migration-1.8.rst create mode 100644 poky/documentation/migration-guides/migration-2.0.rst create mode 100644 poky/documentation/migration-guides/migration-2.1.rst create mode 100644 poky/documentation/migration-guides/migration-2.2.rst create mode 100644 poky/documentation/migration-guides/migration-2.3.rst create mode 100644 poky/documentation/migration-guides/migration-2.4.rst create mode 100644 poky/documentation/migration-guides/migration-2.5.rst create mode 100644 poky/documentation/migration-guides/migration-2.6.rst create mode 100644 poky/documentation/migration-guides/migration-2.7.rst create mode 100644 poky/documentation/migration-guides/migration-3.0.rst create mode 100644 poky/documentation/migration-guides/migration-3.1.rst create mode 100644 poky/documentation/migration-guides/migration-3.2.rst create mode 100644 poky/documentation/migration-guides/migration-3.3.rst create mode 100644 poky/documentation/migration-guides/migration-3.4.rst create mode 100644 poky/documentation/migration-guides/migration-4.0.rst create mode 100644 poky/documentation/migration-guides/migration-general.rst create mode 100644 poky/documentation/migration-guides/release-3.4.rst create mode 100644 poky/documentation/migration-guides/release-4.0.rst create mode 100644 poky/documentation/migration-guides/release-notes-3.4.1.rst create mode 100644 poky/documentation/migration-guides/release-notes-3.4.2.rst create mode 100644 poky/documentation/migration-guides/release-notes-3.4.3.rst create mode 100644 poky/documentation/migration-guides/release-notes-3.4.4.rst create mode 100644 poky/documentation/migration-guides/release-notes-3.4.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.1.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.10.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.11.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.12.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.2.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.3.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.4.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.5.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.6.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.7.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.8.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.9.rst create mode 100644 poky/documentation/migration-guides/release-notes-4.0.rst create mode 100644 poky/documentation/overview-manual/concepts.rst create mode 100644 poky/documentation/overview-manual/development-environment.rst create mode 100644 poky/documentation/overview-manual/figures/YP-flow-diagram.png create mode 100644 poky/documentation/overview-manual/figures/analysis-for-package-splitting.png create mode 100644 poky/documentation/overview-manual/figures/configuration-compile-autoreconf.png create mode 100644 poky/documentation/overview-manual/figures/cross-development-toolchains.png create mode 100644 poky/documentation/overview-manual/figures/image-generation.png create mode 100644 poky/documentation/overview-manual/figures/images.png create mode 100755 poky/documentation/overview-manual/figures/index-downloads.png create mode 100644 poky/documentation/overview-manual/figures/key-dev-elements.png create mode 100644 poky/documentation/overview-manual/figures/layer-input.png create mode 100644 poky/documentation/overview-manual/figures/overview-manual-title.png create mode 100755 poky/documentation/overview-manual/figures/package-feeds.png create mode 100644 poky/documentation/overview-manual/figures/patching.png create mode 100644 poky/documentation/overview-manual/figures/poky-reference-distribution.png create mode 100644 poky/documentation/overview-manual/figures/sdk-generation.png create mode 100644 poky/documentation/overview-manual/figures/sdk.png create mode 100644 poky/documentation/overview-manual/figures/source-fetching.png create mode 100644 poky/documentation/overview-manual/figures/source-input.png create mode 100644 poky/documentation/overview-manual/figures/source-repos.png create mode 100644 poky/documentation/overview-manual/figures/user-configuration.png create mode 100644 poky/documentation/overview-manual/figures/yp-download.png create mode 100644 poky/documentation/overview-manual/index.rst create mode 100644 poky/documentation/overview-manual/intro.rst create mode 100644 poky/documentation/overview-manual/svg/git-workflow.svg create mode 100644 poky/documentation/overview-manual/yp-intro.rst create mode 100644 poky/documentation/poky.yaml.in create mode 100644 poky/documentation/profile-manual/arch.rst create mode 100644 poky/documentation/profile-manual/examples.rst create mode 100644 poky/documentation/profile-manual/figures/kernelshark-all.png create mode 100644 poky/documentation/profile-manual/figures/kernelshark-choose-events.png create mode 100644 poky/documentation/profile-manual/figures/kernelshark-i915-display.png create mode 100644 poky/documentation/profile-manual/figures/kernelshark-output-display.png create mode 100644 poky/documentation/profile-manual/figures/oprofileui-busybox.png create mode 100644 poky/documentation/profile-manual/figures/oprofileui-copy-to-user.png create mode 100644 poky/documentation/profile-manual/figures/oprofileui-downloading.png create mode 100644 poky/documentation/profile-manual/figures/oprofileui-processes.png create mode 100644 poky/documentation/profile-manual/figures/perf-probe-do_fork-profile.png create mode 100644 poky/documentation/profile-manual/figures/perf-report-cycles-u.png create mode 100644 poky/documentation/profile-manual/figures/perf-systemwide-libc.png create mode 100644 poky/documentation/profile-manual/figures/perf-systemwide.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-busybox-annotate-menu.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-busybox-annotate-udhcpc.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-busybox-debuginfo.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-busybox-dso-zoom-menu.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-busybox-dso-zoom.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-busybox-expanded-stripped.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-flat-stripped.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-g-copy-from-user-expanded-stripped.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-g-copy-to-user-expanded-debuginfo.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-g-copy-to-user-expanded-stripped-unresolved-hidden.png create mode 100644 poky/documentation/profile-manual/figures/perf-wget-g-copy-to-user-expanded-stripped.png create mode 100644 poky/documentation/profile-manual/figures/profile-title.png create mode 100644 poky/documentation/profile-manual/figures/pybootchartgui-linux-yocto.png create mode 100644 poky/documentation/profile-manual/figures/pychart-linux-yocto-rpm-nostrip.png create mode 100644 poky/documentation/profile-manual/figures/pychart-linux-yocto-rpm.png create mode 100644 poky/documentation/profile-manual/figures/sched-wakeup-profile.png create mode 100644 poky/documentation/profile-manual/figures/sysprof-callers.png create mode 100644 poky/documentation/profile-manual/figures/sysprof-copy-from-user.png create mode 100644 poky/documentation/profile-manual/figures/sysprof-copy-to-user.png create mode 100644 poky/documentation/profile-manual/index.rst create mode 100644 poky/documentation/profile-manual/intro.rst create mode 100644 poky/documentation/profile-manual/usage.rst create mode 100644 poky/documentation/ref-manual/TODO create mode 100644 poky/documentation/ref-manual/classes.rst create mode 100644 poky/documentation/ref-manual/devtool-reference.rst create mode 100644 poky/documentation/ref-manual/faq.rst create mode 100644 poky/documentation/ref-manual/features.rst create mode 100644 poky/documentation/ref-manual/figures/build-workspace-directory.png create mode 100644 poky/documentation/ref-manual/figures/define-generic.png create mode 100644 poky/documentation/ref-manual/figures/poky-title.png create mode 100644 poky/documentation/ref-manual/images.rst create mode 100644 poky/documentation/ref-manual/index.rst create mode 100644 poky/documentation/ref-manual/kickstart.rst create mode 100644 poky/documentation/ref-manual/qa-checks.rst create mode 100644 poky/documentation/ref-manual/release-process.rst create mode 100644 poky/documentation/ref-manual/resources.rst create mode 100644 poky/documentation/ref-manual/structure.rst create mode 100644 poky/documentation/ref-manual/svg/releases.svg create mode 100644 poky/documentation/ref-manual/system-requirements.rst create mode 100644 poky/documentation/ref-manual/tasks.rst create mode 100644 poky/documentation/ref-manual/terms.rst create mode 100644 poky/documentation/ref-manual/variables.rst create mode 100644 poky/documentation/ref-manual/varlocality.rst create mode 100644 poky/documentation/releases.rst create mode 100644 poky/documentation/sdk-manual/appendix-customizing-standard.rst create mode 100644 poky/documentation/sdk-manual/appendix-customizing.rst create mode 100644 poky/documentation/sdk-manual/appendix-obtain.rst create mode 100644 poky/documentation/sdk-manual/extensible.rst create mode 100644 poky/documentation/sdk-manual/figures/sdk-autotools-flow.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-devtool-add-flow.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-devtool-modify-flow.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-devtool-upgrade-flow.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-environment.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-installed-extensible-sdk-directory.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-installed-standard-sdk-directory.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-makefile-flow.png create mode 100644 poky/documentation/sdk-manual/figures/sdk-title.png create mode 100644 poky/documentation/sdk-manual/index.rst create mode 100644 poky/documentation/sdk-manual/intro.rst create mode 100644 poky/documentation/sdk-manual/using.rst create mode 100644 poky/documentation/sdk-manual/working-projects.rst create mode 100755 poky/documentation/set_versions.py create mode 100644 poky/documentation/sphinx-static/YoctoProject_Logo_RGB.jpg create mode 100644 poky/documentation/sphinx-static/switchers.js.in create mode 100644 poky/documentation/sphinx-static/theme_overrides.css create mode 100644 poky/documentation/sphinx/yocto-vars.py create mode 100644 poky/documentation/standards.md create mode 100644 poky/documentation/template/Vera.ttf create mode 100644 poky/documentation/template/VeraMoBd.ttf create mode 100644 poky/documentation/template/VeraMono.ttf create mode 100644 poky/documentation/template/draft.png create mode 100644 poky/documentation/template/ohand-color.svg create mode 100644 poky/documentation/template/poky-ref-manual.png create mode 100644 poky/documentation/template/poky.svg create mode 100644 poky/documentation/template/template.svg create mode 100644 poky/documentation/template/yocto-project-qs.png create mode 100644 poky/documentation/test-manual/figures/ab-test-cluster.png create mode 100644 poky/documentation/test-manual/figures/test-manual-title.png create mode 100644 poky/documentation/test-manual/index.rst create mode 100644 poky/documentation/test-manual/intro.rst create mode 100644 poky/documentation/test-manual/reproducible-builds.rst create mode 100644 poky/documentation/test-manual/test-process.rst create mode 100644 poky/documentation/test-manual/understand-autobuilder.rst create mode 100644 poky/documentation/test-manual/yocto-project-compatible.rst create mode 100644 poky/documentation/toaster-manual/figures/add-variable.png create mode 100644 poky/documentation/toaster-manual/figures/bash-oecore.png create mode 100644 poky/documentation/toaster-manual/figures/compatible-layers.png create mode 100644 poky/documentation/toaster-manual/figures/hosted-service.png create mode 100644 poky/documentation/toaster-manual/figures/import-layer.png create mode 100644 poky/documentation/toaster-manual/figures/new-project.png create mode 100644 poky/documentation/toaster-manual/figures/set-variable.png create mode 100644 poky/documentation/toaster-manual/figures/simple-configuration.png create mode 100644 poky/documentation/toaster-manual/figures/toaster-title.png create mode 100644 poky/documentation/toaster-manual/figures/variable-added.png create mode 100644 poky/documentation/toaster-manual/index.rst create mode 100644 poky/documentation/toaster-manual/intro.rst create mode 100644 poky/documentation/toaster-manual/reference.rst create mode 100644 poky/documentation/toaster-manual/setup-and-use.rst create mode 100644 poky/documentation/toaster-manual/start.rst create mode 100644 poky/documentation/tools/update-documentation-conf create mode 100644 poky/documentation/transitioning-to-a-custom-environment.rst create mode 100644 poky/documentation/what-i-wish-id-known.rst create mode 100644 poky/meta-poky/README.poky.md create mode 100644 poky/meta-poky/classes/poky-sanity.bbclass create mode 100644 poky/meta-poky/conf/bblayers.conf.sample create mode 100644 poky/meta-poky/conf/conf-notes.txt create mode 100644 poky/meta-poky/conf/distro/include/gcsections.inc create mode 100644 poky/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc create mode 100644 poky/meta-poky/conf/distro/include/poky-floating-revisions.inc create mode 100644 poky/meta-poky/conf/distro/include/poky-world-exclude.inc create mode 100644 poky/meta-poky/conf/distro/poky-altcfg.conf create mode 100644 poky/meta-poky/conf/distro/poky-bleeding.conf create mode 100644 poky/meta-poky/conf/distro/poky-tiny.conf create mode 100644 poky/meta-poky/conf/distro/poky.conf create mode 100644 poky/meta-poky/conf/layer.conf create mode 100644 poky/meta-poky/conf/local.conf.sample create mode 100644 poky/meta-poky/conf/local.conf.sample.extended create mode 100644 poky/meta-poky/conf/site.conf.sample create mode 100644 poky/meta-poky/recipes-core/busybox/busybox/poky-tiny/defconfig create mode 100644 poky/meta-poky/recipes-core/busybox/busybox_%.bbappend create mode 100644 poky/meta-poky/recipes-core/psplash/files/psplash-poky-img.h create mode 100644 poky/meta-poky/recipes-core/psplash/psplash_git.bbappend create mode 100644 poky/meta-poky/recipes-core/tiny-init/files/init create mode 100644 poky/meta-poky/recipes-core/tiny-init/files/rc.local.sample create mode 100644 poky/meta-poky/recipes-core/tiny-init/tiny-init.bb create mode 100644 poky/meta-selftest/README create mode 100644 poky/meta-selftest/classes/test-mkimage-wrapper.bbclass create mode 100644 poky/meta-selftest/classes/test_events.bbclass create mode 100644 poky/meta-selftest/conf/layer.conf create mode 100644 poky/meta-selftest/conf/machine/qemux86copy.conf create mode 100644 poky/meta-selftest/conf/multiconfig/muslmc.conf create mode 100644 poky/meta-selftest/files/signing/key.passphrase create mode 100644 poky/meta-selftest/files/signing/key.pub create mode 100644 poky/meta-selftest/files/signing/key.secret create mode 100644 poky/meta-selftest/files/static-group create mode 100644 poky/meta-selftest/files/static-passwd create mode 100644 poky/meta-selftest/lib/devtool/__init__.py create mode 100644 poky/meta-selftest/lib/devtool/bbpath.py create mode 100644 poky/meta-selftest/lib/devtool/test.py create mode 100644 poky/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py create mode 100644 poky/meta-selftest/lib/oeqa/runtime/cases/selftest.json create mode 100644 poky/meta-selftest/lib/oeqa/runtime/cases/selftest.py create mode 100644 poky/meta-selftest/lib/oeqa/runtime/cases/virgl.py create mode 100644 poky/meta-selftest/lib/oeqa/selftest/cases/external-layer.py create mode 100644 poky/meta-selftest/lib/pseudo_pyc_test1.py create mode 100644 poky/meta-selftest/lib/pseudo_pyc_test2.py create mode 100644 poky/meta-selftest/lib/recipetool/bbpath.py create mode 100644 poky/meta-selftest/recipes-devtools/python/python-async-test.inc create mode 100644 poky/meta-selftest/recipes-devtools/python/python3-async-test_0.6.2.bb create mode 100644 poky/meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb create mode 100644 poky/meta-selftest/recipes-test/aspell/aspell_0.60.8.bbappend create mode 100644 poky/meta-selftest/recipes-test/base-files/base-files_%.bbappend create mode 100644 poky/meta-selftest/recipes-test/container-image/container-image-testpkg.bb create mode 100644 poky/meta-selftest/recipes-test/container-image/container-test-image.bb create mode 100644 poky/meta-selftest/recipes-test/delay/delay.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-patch-overrides.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-patch-overrides/qemuarm/arm.patch create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-patch-overrides/qemux86/x86.patch create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-patch-overrides/source create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-ignored.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-ignored/devtool-test-ignored.patch create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-ignored/devtool-test-ignored.patch.expected create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-ignored/devtool-test-ignored.tar.gz create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-local/file1 create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-local/file2 create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-local/file3 create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-local_6.03.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-localonly.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-localonly/file1 create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-localonly/file2 create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-localonly/file3 create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-long-filename.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-long-filename/0001-I-ll-patch-you-only-if-devtool-lets-me-to-do-it-corr.patch create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-long-filename/0001-I-ll-patch-you-only-if-devtool-lets-me-to-do-it-corr.patch.expected create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-long-filename/devtool-test-long-filename.tar.gz create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-patch-gz.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-patch-gz/readme.patch.gz create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-subdir.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-subdir/devtool-test-subdir.tar.gz create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-test-subdir/testfile create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test1-1.5.3/0001-Add-a-note-line-to-the-quick-reference.patch create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test1-1.5.3/backported.patch create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test1_1.5.3.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test1_1.5.3.bb.upgraded create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test2_git.bb create mode 100644 poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test2_git.bb.upgraded create mode 100644 poky/meta-selftest/recipes-test/emptytest/emptytest.bb create mode 100644 poky/meta-selftest/recipes-test/error/error.bb create mode 100644 poky/meta-selftest/recipes-test/fortran/files/hello.f95 create mode 100644 poky/meta-selftest/recipes-test/fortran/fortran-helloworld.bb create mode 100644 poky/meta-selftest/recipes-test/git-submodule-test/git-submodule-test.bb create mode 100644 poky/meta-selftest/recipes-test/gitrepotest/gitrepotest.bb create mode 100644 poky/meta-selftest/recipes-test/gitrepotest/gitrepotest/0001-testpatch.patch create mode 100644 poky/meta-selftest/recipes-test/gitunpackoffline/gitunpackoffline-fail.bb create mode 100644 poky/meta-selftest/recipes-test/gitunpackoffline/gitunpackoffline.bb create mode 100644 poky/meta-selftest/recipes-test/images/error-image.bb create mode 100644 poky/meta-selftest/recipes-test/images/oe-selftest-image.bb create mode 100644 poky/meta-selftest/recipes-test/images/test-empty-image.bb create mode 100644 poky/meta-selftest/recipes-test/images/wic-image-minimal.bb create mode 100644 poky/meta-selftest/recipes-test/images/wic-image-minimal.wks create mode 100644 poky/meta-selftest/recipes-test/license/incompatible-license-alias.bb create mode 100644 poky/meta-selftest/recipes-test/license/incompatible-license.bb create mode 100644 poky/meta-selftest/recipes-test/license/incompatible-licenses.bb create mode 100644 poky/meta-selftest/recipes-test/license/incompatible-nonspdx-license.bb create mode 100644 poky/meta-selftest/recipes-test/logging-test/logging-test.bb create mode 100644 poky/meta-selftest/recipes-test/m4/m4_%.bbappend create mode 100644 poky/meta-selftest/recipes-test/man-db/files/0001-Test-patch-here.patch create mode 100644 poky/meta-selftest/recipes-test/man-db/man-db_%.bbappend create mode 100644 poky/meta-selftest/recipes-test/multiconfig/multiconfig-image-packager_0.1.bb create mode 100644 poky/meta-selftest/recipes-test/multiconfig/multiconfig-test-parse.bb create mode 100644 poky/meta-selftest/recipes-test/nopackages/selftest-nopackages.bb create mode 100644 poky/meta-selftest/recipes-test/overlayfs-user/overlayfs-user.bb create mode 100644 poky/meta-selftest/recipes-test/poison/poison.bb create mode 100644 poky/meta-selftest/recipes-test/postinst/postinst_1.0.bb create mode 100644 poky/meta-selftest/recipes-test/pseudo-pyc-test/pseudo-pyc-test.bb create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/add-file.patch create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/file1 create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/installscript.sh create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/selftest-replaceme-inst-func create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/selftest-replaceme-inst-globfile create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/selftest-replaceme-inst-todir-globfile create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/selftest-replaceme-orig create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/selftest-replaceme-todir create mode 100644 poky/meta-selftest/recipes-test/recipetool/files/subdir/fileinsubdir create mode 100644 poky/meta-selftest/recipes-test/recipetool/selftest-recipetool-appendfile.bb create mode 100644 poky/meta-selftest/recipes-test/recipeutils/recipeutils-test.inc create mode 100644 poky/meta-selftest/recipes-test/recipeutils/recipeutils-test/anotherfile create mode 100644 poky/meta-selftest/recipes-test/recipeutils/recipeutils-test/somefile create mode 100644 poky/meta-selftest/recipes-test/recipeutils/recipeutils-test_1.2.bb create mode 100644 poky/meta-selftest/recipes-test/selftest-chown/selftest-chown.bb create mode 100644 poky/meta-selftest/recipes-test/selftest-ed/selftest-ed_0.5.bb create mode 100644 poky/meta-selftest/recipes-test/selftest-ed/selftest-ed_1.14.1.bb create mode 100644 poky/meta-selftest/recipes-test/selftest-hardlink/selftest-hardlink.bb create mode 100755 poky/meta-selftest/recipes-test/selftest-hardlink/selftest-hardlink/gdb.sh create mode 100644 poky/meta-selftest/recipes-test/selftest-hardlink/selftest-hardlink/hello.c create mode 100644 poky/meta-selftest/recipes-test/sysroot-test/sysroot-test-arch1_1.0.bb create mode 100644 poky/meta-selftest/recipes-test/sysroot-test/sysroot-test-arch2_1.0.bb create mode 100644 poky/meta-selftest/recipes-test/sysroot-test/sysroot-test_1.0.bb create mode 100644 poky/meta-selftest/recipes-test/systemd-machine-units/systemd-machine-units_%.bbappend create mode 100644 poky/meta-selftest/recipes-test/xcursor-transparent-theme/xcursor-transparent-theme_%.bbappend create mode 100644 poky/meta-selftest/wic/overlayfs_etc.wks.in create mode 100644 poky/meta-selftest/wic/test_biosplusefi_plugin.wks create mode 100644 poky/meta-selftest/wic/test_efi_plugin.wks create mode 100644 poky/meta-selftest/wic/test_empty_plugin.wks create mode 100644 poky/meta-selftest/wic/test_rawcopy_plugin.wks.in create mode 100644 poky/meta-selftest/wic/wictestdisk.wks create mode 100644 poky/meta-skeleton/README.skeleton create mode 100644 poky/meta-skeleton/conf/layer.conf create mode 100644 poky/meta-skeleton/conf/multilib-example.conf create mode 100644 poky/meta-skeleton/conf/multilib-example2.conf create mode 100644 poky/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb create mode 100644 poky/meta-skeleton/recipes-core/busybox/busybox/no_rfkill.cfg create mode 100644 poky/meta-skeleton/recipes-core/busybox/busybox_%.bbappend create mode 100644 poky/meta-skeleton/recipes-kernel/hello-mod/files/COPYING create mode 100644 poky/meta-skeleton/recipes-kernel/hello-mod/files/Makefile create mode 100644 poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c create mode 100644 poky/meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb create mode 100644 poky/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb create mode 100644 poky/meta-skeleton/recipes-kernel/linux/linux-yocto-custom/0001-linux-version-tweak.patch create mode 100644 poky/meta-skeleton/recipes-kernel/linux/linux-yocto-custom/feature.scc create mode 100644 poky/meta-skeleton/recipes-kernel/linux/linux-yocto-custom/smp.cfg create mode 100644 poky/meta-skeleton/recipes-multilib/images/core-image-multilib-example.bb create mode 100644 poky/meta-skeleton/recipes-skeleton/hello-autotools/hello_2.10.bb create mode 100644 poky/meta-skeleton/recipes-skeleton/hello-single/files/helloworld.c create mode 100644 poky/meta-skeleton/recipes-skeleton/hello-single/hello_1.0.bb create mode 100644 poky/meta-skeleton/recipes-skeleton/libxpm/libxpm_3.5.6.bb create mode 100644 poky/meta-skeleton/recipes-skeleton/service/service/COPYRIGHT create mode 100644 poky/meta-skeleton/recipes-skeleton/service/service/skeleton create mode 100644 poky/meta-skeleton/recipes-skeleton/service/service/skeleton_test.c create mode 100644 poky/meta-skeleton/recipes-skeleton/service/service_0.1.bb create mode 100644 poky/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb create mode 100644 poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file1 create mode 100644 poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file2 create mode 100644 poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file3 create mode 100644 poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file4 create mode 100644 poky/meta-stargazer/COPYING.MIT create mode 100644 poky/meta-stargazer/README create mode 100644 poky/meta-stargazer/conf/layer.conf create mode 100644 poky/meta-stargazer/recipes-connectivity/wpa-supplicant/files/wpa_supplicant-nl80211-wlan0.conf create mode 100644 poky/meta-stargazer/recipes-connectivity/wpa-supplicant/wpa-supplicant_%.bbappend create mode 100755 poky/meta-stargazer/recipes-core/libraries/files/libflutter_pty.so create mode 100644 poky/meta-stargazer/recipes-core/libraries/files/libperiphery_arm.so create mode 100644 poky/meta-stargazer/recipes-core/libraries/files/libperiphery_arm64.so create mode 100644 poky/meta-stargazer/recipes-core/libraries/flutter-libraries_1.00.bb create mode 100644 poky/meta-stargazer/recipes-core/systemd-conf/files/en.network create mode 100644 poky/meta-stargazer/recipes-core/systemd-conf/files/eth.network create mode 100644 poky/meta-stargazer/recipes-core/systemd-conf/files/wlan.network create mode 100644 poky/meta-stargazer/recipes-core/systemd-conf/systemd-conf_%.bbappend create mode 100644 poky/meta-stargazer/recipes-core/systemd/files/flutter.service create mode 100644 poky/meta-stargazer/recipes-core/systemd/flutter-service_1.00.bb create mode 100644 poky/meta-stargazer/recipes-core/systemd/systemd_%.bbappend create mode 100644 poky/meta-stargazer/recipes-example/example/example_0.1.bb create mode 100644 poky/meta-yocto-bsp/README.hardware.md create mode 100644 poky/meta-yocto-bsp/conf/layer.conf create mode 100644 poky/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf create mode 100644 poky/meta-yocto-bsp/conf/machine/edgerouter.conf create mode 100644 poky/meta-yocto-bsp/conf/machine/genericx86-64.conf create mode 100644 poky/meta-yocto-bsp/conf/machine/genericx86.conf create mode 100644 poky/meta-yocto-bsp/conf/machine/include/genericx86-common.inc create mode 100644 poky/meta-yocto-bsp/lib/oeqa/controllers/__init__.py create mode 100644 poky/meta-yocto-bsp/lib/oeqa/controllers/beaglebonetarget.py create mode 100644 poky/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py create mode 100644 poky/meta-yocto-bsp/lib/oeqa/controllers/grubtarget.py create mode 100644 poky/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py create mode 100644 poky/meta-yocto-bsp/recipes-bsp/formfactor/formfactor/beaglebone-yocto/machconfig create mode 100644 poky/meta-yocto-bsp/recipes-bsp/formfactor/formfactor/genericx86-64/machconfig create mode 100644 poky/meta-yocto-bsp/recipes-bsp/formfactor/formfactor/genericx86/machconfig create mode 100644 poky/meta-yocto-bsp/recipes-bsp/formfactor/formfactor_0.0.bbappend create mode 100644 poky/meta-yocto-bsp/recipes-bsp/gma500-gfx-check/gma500-gfx-check/gma500-gfx-check.conf create mode 100644 poky/meta-yocto-bsp/recipes-bsp/gma500-gfx-check/gma500-gfx-check/gma500-gfx-check.sh create mode 100644 poky/meta-yocto-bsp/recipes-bsp/gma500-gfx-check/gma500-gfx-check_1.0.bb create mode 100644 poky/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/beaglebone-yocto/xorg.conf create mode 100644 poky/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/genericx86-64/xorg.conf create mode 100644 poky/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/genericx86/xorg.conf create mode 100644 poky/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend create mode 100644 poky/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-dev.bbappend create mode 100644 poky/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_5.10.bbappend create mode 100644 poky/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_5.15.bbappend create mode 100644 poky/meta-yocto-bsp/wic/beaglebone-yocto.wks create mode 100644 poky/meta-yocto-bsp/wic/edgerouter.wks create mode 100644 poky/meta-yocto-bsp/wic/genericx86.wks.in create mode 100644 poky/meta/COPYING.MIT create mode 100644 poky/meta/classes/allarch.bbclass create mode 100644 poky/meta/classes/archiver.bbclass create mode 100644 poky/meta/classes/autotools-brokensep.bbclass create mode 100644 poky/meta/classes/autotools.bbclass create mode 100644 poky/meta/classes/baremetal-image.bbclass create mode 100644 poky/meta/classes/base.bbclass create mode 100644 poky/meta/classes/bash-completion.bbclass create mode 100644 poky/meta/classes/bin_package.bbclass create mode 100644 poky/meta/classes/binconfig-disabled.bbclass create mode 100644 poky/meta/classes/binconfig.bbclass create mode 100644 poky/meta/classes/buildhistory.bbclass create mode 100644 poky/meta/classes/buildstats-summary.bbclass create mode 100644 poky/meta/classes/buildstats.bbclass create mode 100644 poky/meta/classes/cargo.bbclass create mode 100644 poky/meta/classes/cargo_common.bbclass create mode 100644 poky/meta/classes/ccache.bbclass create mode 100644 poky/meta/classes/ccmake.bbclass create mode 100644 poky/meta/classes/chrpath.bbclass create mode 100644 poky/meta/classes/cmake.bbclass create mode 100644 poky/meta/classes/cml1.bbclass create mode 100644 poky/meta/classes/compress_doc.bbclass create mode 100644 poky/meta/classes/copyleft_compliance.bbclass create mode 100644 poky/meta/classes/copyleft_filter.bbclass create mode 100644 poky/meta/classes/core-image.bbclass create mode 100644 poky/meta/classes/cpan-base.bbclass create mode 100644 poky/meta/classes/cpan.bbclass create mode 100644 poky/meta/classes/cpan_build.bbclass create mode 100644 poky/meta/classes/create-spdx.bbclass create mode 100644 poky/meta/classes/cross-canadian.bbclass create mode 100644 poky/meta/classes/cross.bbclass create mode 100644 poky/meta/classes/crosssdk.bbclass create mode 100644 poky/meta/classes/cve-check.bbclass create mode 100644 poky/meta/classes/debian.bbclass create mode 100644 poky/meta/classes/deploy.bbclass create mode 100644 poky/meta/classes/devicetree.bbclass create mode 100644 poky/meta/classes/devshell.bbclass create mode 100644 poky/meta/classes/devtool-source.bbclass create mode 100644 poky/meta/classes/devupstream.bbclass create mode 100644 poky/meta/classes/distro_features_check.bbclass create mode 100644 poky/meta/classes/distrooverrides.bbclass create mode 100644 poky/meta/classes/dos2unix.bbclass create mode 100644 poky/meta/classes/externalsrc.bbclass create mode 100644 poky/meta/classes/extrausers.bbclass create mode 100644 poky/meta/classes/features_check.bbclass create mode 100644 poky/meta/classes/fontcache.bbclass create mode 100644 poky/meta/classes/fs-uuid.bbclass create mode 100644 poky/meta/classes/gconf.bbclass create mode 100644 poky/meta/classes/gettext.bbclass create mode 100644 poky/meta/classes/gi-docgen.bbclass create mode 100644 poky/meta/classes/gio-module-cache.bbclass create mode 100644 poky/meta/classes/glide.bbclass create mode 100644 poky/meta/classes/gnomebase.bbclass create mode 100644 poky/meta/classes/go-mod.bbclass create mode 100644 poky/meta/classes/go-ptest.bbclass create mode 100644 poky/meta/classes/go.bbclass create mode 100644 poky/meta/classes/goarch.bbclass create mode 100644 poky/meta/classes/gobject-introspection-data.bbclass create mode 100644 poky/meta/classes/gobject-introspection.bbclass create mode 100644 poky/meta/classes/grub-efi-cfg.bbclass create mode 100644 poky/meta/classes/grub-efi.bbclass create mode 100644 poky/meta/classes/gsettings.bbclass create mode 100644 poky/meta/classes/gtk-doc.bbclass create mode 100644 poky/meta/classes/gtk-icon-cache.bbclass create mode 100644 poky/meta/classes/gtk-immodules-cache.bbclass create mode 100644 poky/meta/classes/icecc.bbclass create mode 100644 poky/meta/classes/image-artifact-names.bbclass create mode 100644 poky/meta/classes/image-buildinfo.bbclass create mode 100644 poky/meta/classes/image-combined-dbg.bbclass create mode 100644 poky/meta/classes/image-container.bbclass create mode 100644 poky/meta/classes/image-live.bbclass create mode 100644 poky/meta/classes/image-postinst-intercepts.bbclass create mode 100644 poky/meta/classes/image.bbclass create mode 100644 poky/meta/classes/image_types.bbclass create mode 100644 poky/meta/classes/image_types_wic.bbclass create mode 100644 poky/meta/classes/insane.bbclass create mode 100644 poky/meta/classes/kernel-arch.bbclass create mode 100644 poky/meta/classes/kernel-artifact-names.bbclass create mode 100644 poky/meta/classes/kernel-devicetree.bbclass create mode 100644 poky/meta/classes/kernel-fitimage.bbclass create mode 100644 poky/meta/classes/kernel-grub.bbclass create mode 100644 poky/meta/classes/kernel-module-split.bbclass create mode 100644 poky/meta/classes/kernel-uboot.bbclass create mode 100644 poky/meta/classes/kernel-uimage.bbclass create mode 100644 poky/meta/classes/kernel-yocto.bbclass create mode 100644 poky/meta/classes/kernel.bbclass create mode 100644 poky/meta/classes/kernelsrc.bbclass create mode 100644 poky/meta/classes/lib_package.bbclass create mode 100644 poky/meta/classes/libc-package.bbclass create mode 100644 poky/meta/classes/license.bbclass create mode 100644 poky/meta/classes/license_image.bbclass create mode 100644 poky/meta/classes/linux-dummy.bbclass create mode 100644 poky/meta/classes/linux-kernel-base.bbclass create mode 100644 poky/meta/classes/linuxloader.bbclass create mode 100644 poky/meta/classes/live-vm-common.bbclass create mode 100644 poky/meta/classes/logging.bbclass create mode 100644 poky/meta/classes/manpages.bbclass create mode 100644 poky/meta/classes/mcextend.bbclass create mode 100644 poky/meta/classes/meson-routines.bbclass create mode 100644 poky/meta/classes/meson.bbclass create mode 100644 poky/meta/classes/metadata_scm.bbclass create mode 100644 poky/meta/classes/migrate_localcount.bbclass create mode 100644 poky/meta/classes/mime-xdg.bbclass create mode 100644 poky/meta/classes/mime.bbclass create mode 100644 poky/meta/classes/mirrors.bbclass create mode 100644 poky/meta/classes/module-base.bbclass create mode 100644 poky/meta/classes/module.bbclass create mode 100644 poky/meta/classes/multilib.bbclass create mode 100644 poky/meta/classes/multilib_global.bbclass create mode 100644 poky/meta/classes/multilib_header.bbclass create mode 100644 poky/meta/classes/multilib_script.bbclass create mode 100644 poky/meta/classes/native.bbclass create mode 100644 poky/meta/classes/nativesdk.bbclass create mode 100644 poky/meta/classes/nopackages.bbclass create mode 100644 poky/meta/classes/npm.bbclass create mode 100644 poky/meta/classes/oelint.bbclass create mode 100644 poky/meta/classes/overlayfs-etc.bbclass create mode 100644 poky/meta/classes/overlayfs.bbclass create mode 100644 poky/meta/classes/own-mirrors.bbclass create mode 100644 poky/meta/classes/package.bbclass create mode 100644 poky/meta/classes/package_deb.bbclass create mode 100644 poky/meta/classes/package_ipk.bbclass create mode 100644 poky/meta/classes/package_pkgdata.bbclass create mode 100644 poky/meta/classes/package_rpm.bbclass create mode 100644 poky/meta/classes/package_tar.bbclass create mode 100644 poky/meta/classes/packagedata.bbclass create mode 100644 poky/meta/classes/packagegroup.bbclass create mode 100644 poky/meta/classes/patch.bbclass create mode 100644 poky/meta/classes/perl-version.bbclass create mode 100644 poky/meta/classes/perlnative.bbclass create mode 100644 poky/meta/classes/pixbufcache.bbclass create mode 100644 poky/meta/classes/pkgconfig.bbclass create mode 100644 poky/meta/classes/populate_sdk.bbclass create mode 100644 poky/meta/classes/populate_sdk_base.bbclass create mode 100644 poky/meta/classes/populate_sdk_ext.bbclass create mode 100644 poky/meta/classes/prexport.bbclass create mode 100644 poky/meta/classes/primport.bbclass create mode 100644 poky/meta/classes/ptest-gnome.bbclass create mode 100644 poky/meta/classes/ptest-perl.bbclass create mode 100644 poky/meta/classes/ptest.bbclass create mode 100644 poky/meta/classes/pypi.bbclass create mode 100644 poky/meta/classes/python3-dir.bbclass create mode 100644 poky/meta/classes/python3native.bbclass create mode 100644 poky/meta/classes/python3targetconfig.bbclass create mode 100644 poky/meta/classes/python_flit_core.bbclass create mode 100644 poky/meta/classes/python_pep517.bbclass create mode 100644 poky/meta/classes/python_poetry_core.bbclass create mode 100644 poky/meta/classes/python_pyo3.bbclass create mode 100644 poky/meta/classes/python_setuptools3_rust.bbclass create mode 100644 poky/meta/classes/python_setuptools_build_meta.bbclass create mode 100644 poky/meta/classes/qemu.bbclass create mode 100644 poky/meta/classes/qemuboot.bbclass create mode 100644 poky/meta/classes/recipe_sanity.bbclass create mode 100644 poky/meta/classes/relative_symlinks.bbclass create mode 100644 poky/meta/classes/relocatable.bbclass create mode 100644 poky/meta/classes/remove-libtool.bbclass create mode 100644 poky/meta/classes/report-error.bbclass create mode 100644 poky/meta/classes/rm_work.bbclass create mode 100644 poky/meta/classes/rm_work_and_downloads.bbclass create mode 100644 poky/meta/classes/rootfs-postcommands.bbclass create mode 100644 poky/meta/classes/rootfs_deb.bbclass create mode 100644 poky/meta/classes/rootfs_ipk.bbclass create mode 100644 poky/meta/classes/rootfs_rpm.bbclass create mode 100644 poky/meta/classes/rootfsdebugfiles.bbclass create mode 100644 poky/meta/classes/rust-bin.bbclass create mode 100644 poky/meta/classes/rust-common.bbclass create mode 100644 poky/meta/classes/rust.bbclass create mode 100644 poky/meta/classes/sanity.bbclass create mode 100644 poky/meta/classes/scons.bbclass create mode 100644 poky/meta/classes/setuptools3-base.bbclass create mode 100644 poky/meta/classes/setuptools3.bbclass create mode 100644 poky/meta/classes/setuptools3_legacy.bbclass create mode 100644 poky/meta/classes/sign_ipk.bbclass create mode 100644 poky/meta/classes/sign_package_feed.bbclass create mode 100644 poky/meta/classes/sign_rpm.bbclass create mode 100644 poky/meta/classes/siteconfig.bbclass create mode 100644 poky/meta/classes/siteinfo.bbclass create mode 100644 poky/meta/classes/sstate.bbclass create mode 100644 poky/meta/classes/staging.bbclass create mode 100644 poky/meta/classes/syslinux.bbclass create mode 100644 poky/meta/classes/systemd-boot-cfg.bbclass create mode 100644 poky/meta/classes/systemd-boot.bbclass create mode 100644 poky/meta/classes/systemd.bbclass create mode 100644 poky/meta/classes/terminal.bbclass create mode 100644 poky/meta/classes/testexport.bbclass create mode 100644 poky/meta/classes/testimage.bbclass create mode 100644 poky/meta/classes/testsdk.bbclass create mode 100644 poky/meta/classes/texinfo.bbclass create mode 100644 poky/meta/classes/toaster.bbclass create mode 100644 poky/meta/classes/toolchain-scripts-base.bbclass create mode 100644 poky/meta/classes/toolchain-scripts.bbclass create mode 100644 poky/meta/classes/typecheck.bbclass create mode 100644 poky/meta/classes/uboot-config.bbclass create mode 100644 poky/meta/classes/uboot-extlinux-config.bbclass create mode 100644 poky/meta/classes/uboot-sign.bbclass create mode 100644 poky/meta/classes/uninative.bbclass create mode 100644 poky/meta/classes/update-alternatives.bbclass create mode 100644 poky/meta/classes/update-rc.d.bbclass create mode 100644 poky/meta/classes/upstream-version-is-even.bbclass create mode 100644 poky/meta/classes/useradd-staticids.bbclass create mode 100644 poky/meta/classes/useradd.bbclass create mode 100644 poky/meta/classes/useradd_base.bbclass create mode 100644 poky/meta/classes/utility-tasks.bbclass create mode 100644 poky/meta/classes/utils.bbclass create mode 100644 poky/meta/classes/vala.bbclass create mode 100644 poky/meta/classes/waf.bbclass create mode 100644 poky/meta/classes/xmlcatalog.bbclass create mode 100644 poky/meta/classes/yocto-check-layer.bbclass create mode 100644 poky/meta/conf/abi_version.conf create mode 100644 poky/meta/conf/bitbake.conf create mode 100644 poky/meta/conf/ccache.conf create mode 100644 poky/meta/conf/conf-notes.txt create mode 100644 poky/meta/conf/distro/defaultsetup.conf create mode 100644 poky/meta/conf/distro/include/cve-extra-exclusions.inc create mode 100644 poky/meta/conf/distro/include/default-distrovars.inc create mode 100644 poky/meta/conf/distro/include/default-providers.inc create mode 100644 poky/meta/conf/distro/include/default-versions.inc create mode 100644 poky/meta/conf/distro/include/distro_alias.inc create mode 100644 poky/meta/conf/distro/include/init-manager-mdev-busybox.inc create mode 100644 poky/meta/conf/distro/include/init-manager-none.inc create mode 100644 poky/meta/conf/distro/include/init-manager-systemd.inc create mode 100644 poky/meta/conf/distro/include/init-manager-sysvinit.inc create mode 100644 poky/meta/conf/distro/include/lto.inc create mode 100644 poky/meta/conf/distro/include/maintainers.inc create mode 100644 poky/meta/conf/distro/include/no-static-libs.inc create mode 100644 poky/meta/conf/distro/include/ptest-packagelists.inc create mode 100644 poky/meta/conf/distro/include/rust_security_flags.inc create mode 100644 poky/meta/conf/distro/include/security_flags.inc create mode 100644 poky/meta/conf/distro/include/tclibc-baremetal.inc create mode 100644 poky/meta/conf/distro/include/tclibc-glibc.inc create mode 100644 poky/meta/conf/distro/include/tclibc-musl.inc create mode 100644 poky/meta/conf/distro/include/tclibc-newlib.inc create mode 100644 poky/meta/conf/distro/include/tcmode-default.inc create mode 100644 poky/meta/conf/distro/include/uninative-flags.inc create mode 100644 poky/meta/conf/distro/include/yocto-uninative.inc create mode 100644 poky/meta/conf/documentation.conf create mode 100644 poky/meta/conf/image-uefi.conf create mode 100644 poky/meta/conf/layer.conf create mode 100644 poky/meta/conf/licenses.conf create mode 100644 poky/meta/conf/machine-sdk/aarch64.conf create mode 100644 poky/meta/conf/machine-sdk/i586.conf create mode 100644 poky/meta/conf/machine-sdk/i686.conf create mode 100644 poky/meta/conf/machine-sdk/ppc64.conf create mode 100644 poky/meta/conf/machine-sdk/ppc64le.conf create mode 100644 poky/meta/conf/machine-sdk/x86_64.conf create mode 100644 poky/meta/conf/machine/include/README create mode 100644 poky/meta/conf/machine/include/arm/README create mode 100644 poky/meta/conf/machine/include/arm/arch-arm.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-arm64.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv4.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv5-dsp.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv5.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv6.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv6m.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv7a.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv7em.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv7m.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv7r.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv7ve.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8-1m-main.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8-2a.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8-5a.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8a.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8m-base.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8m-main.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv8r.inc create mode 100644 poky/meta/conf/machine/include/arm/arch-armv9a.inc create mode 100644 poky/meta/conf/machine/include/arm/armv4/tune-arm920t.inc create mode 100644 poky/meta/conf/machine/include/arm/armv4/tune-arm9tdmi.inc create mode 100644 poky/meta/conf/machine/include/arm/armv4/tune-ep9312.inc create mode 100644 poky/meta/conf/machine/include/arm/armv4/tune-strongarm1100.inc create mode 100644 poky/meta/conf/machine/include/arm/armv5/tune-arm926ejs.inc create mode 100644 poky/meta/conf/machine/include/arm/armv5/tune-iwmmxt.inc create mode 100644 poky/meta/conf/machine/include/arm/armv5/tune-xscale.inc create mode 100644 poky/meta/conf/machine/include/arm/armv6/tune-arm1136jf-s.inc create mode 100644 poky/meta/conf/machine/include/arm/armv6/tune-arm1176jz-s.inc create mode 100644 poky/meta/conf/machine/include/arm/armv6m/tune-cortexm0.inc create mode 100644 poky/meta/conf/machine/include/arm/armv6m/tune-cortexm0plus.inc create mode 100644 poky/meta/conf/machine/include/arm/armv6m/tune-cortexm1.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7a/tune-cortexa15.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7a/tune-cortexa17.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7a/tune-cortexa5.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7a/tune-cortexa7.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7a/tune-cortexa8.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7a/tune-cortexa9.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7m/tune-cortexm3.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7m/tune-cortexm4.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7m/tune-cortexm7.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7r/tune-cortexr4.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7r/tune-cortexr4f.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7r/tune-cortexr5.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7r/tune-cortexr7.inc create mode 100644 poky/meta/conf/machine/include/arm/armv7r/tune-cortexr8.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-1m/tune-cortexm55.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa55.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa65.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa65ae.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa75-cortexa55.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa75.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa76-cortexa55.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa76.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa76ae.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-cortexa77.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-neoversee1.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-neoversen1.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-2a/tune-octeontx2.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-m/tune-cortexm23.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-m/tune-cortexm33.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8-m/tune-cortexm35p.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa32.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa34.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa35.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa53.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa57-cortexa53.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa57.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa72-cortexa53.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa72.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa73-cortexa35.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa73-cortexa53.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-cortexa73.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8a/tune-thunderx.inc create mode 100644 poky/meta/conf/machine/include/arm/armv8r/tune-cortexr52.inc create mode 100644 poky/meta/conf/machine/include/arm/armv9a/tune-neoversen2.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-crc.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-crypto.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-dsp.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-idiv.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-neon.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-simd.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-thumb.inc create mode 100644 poky/meta/conf/machine/include/arm/feature-arm-vfp.inc create mode 100644 poky/meta/conf/machine/include/m68k/arch-m68k.inc create mode 100644 poky/meta/conf/machine/include/m68k/tune-mcf5441x.inc create mode 100644 poky/meta/conf/machine/include/microblaze/arch-microblaze.inc create mode 100644 poky/meta/conf/machine/include/microblaze/feature-microblaze-math.inc create mode 100644 poky/meta/conf/machine/include/microblaze/feature-microblaze-versions.inc create mode 100644 poky/meta/conf/machine/include/microblaze/tune-microblaze.inc create mode 100644 poky/meta/conf/machine/include/mips/README create mode 100644 poky/meta/conf/machine/include/mips/arch-mips.inc create mode 100644 poky/meta/conf/machine/include/mips/feature-mips-mips16e.inc create mode 100644 poky/meta/conf/machine/include/mips/qemuboot-mips.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips-24k.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips-74k.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips32.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips32r2.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips32r6.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips64.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips64r2.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-mips64r6.inc create mode 100644 poky/meta/conf/machine/include/mips/tune-octeon.inc create mode 100644 poky/meta/conf/machine/include/powerpc/README create mode 100644 poky/meta/conf/machine/include/powerpc/arch-powerpc.inc create mode 100644 poky/meta/conf/machine/include/powerpc/arch-powerpc64.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-power5.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-power6.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-power7.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-power9.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppc476.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppc603e.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppc7400.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce300c2.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce300c3.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce500.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce500mc.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce500v2.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce5500.inc create mode 100644 poky/meta/conf/machine/include/powerpc/tune-ppce6500.inc create mode 100644 poky/meta/conf/machine/include/qemu.inc create mode 100644 poky/meta/conf/machine/include/riscv/arch-riscv.inc create mode 100644 poky/meta/conf/machine/include/riscv/qemuriscv.inc create mode 100644 poky/meta/conf/machine/include/riscv/tune-riscv.inc create mode 100644 poky/meta/conf/machine/include/sh/README create mode 100644 poky/meta/conf/machine/include/sh/arch-sh.inc create mode 100644 poky/meta/conf/machine/include/sh/tune-sh3.inc create mode 100644 poky/meta/conf/machine/include/sh/tune-sh4.inc create mode 100644 poky/meta/conf/machine/include/soc-family.inc create mode 100644 poky/meta/conf/machine/include/x86/README create mode 100644 poky/meta/conf/machine/include/x86/arch-x86.inc create mode 100644 poky/meta/conf/machine/include/x86/qemuboot-x86.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-atom.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-c3.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-core2.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-corei7.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-i586-nlp.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-i586.inc create mode 100644 poky/meta/conf/machine/include/x86/tune-i686.inc create mode 100644 poky/meta/conf/machine/include/x86/x86-base.inc create mode 100644 poky/meta/conf/machine/qemuarm.conf create mode 100644 poky/meta/conf/machine/qemuarm64.conf create mode 100644 poky/meta/conf/machine/qemuarmv5.conf create mode 100644 poky/meta/conf/machine/qemumips.conf create mode 100644 poky/meta/conf/machine/qemumips64.conf create mode 100644 poky/meta/conf/machine/qemuppc.conf create mode 100644 poky/meta/conf/machine/qemuppc64.conf create mode 100644 poky/meta/conf/machine/qemuriscv32.conf create mode 100644 poky/meta/conf/machine/qemuriscv64.conf create mode 100644 poky/meta/conf/machine/qemux86-64.conf create mode 100644 poky/meta/conf/machine/qemux86.conf create mode 100644 poky/meta/conf/migrate_localcount.conf create mode 100644 poky/meta/conf/multiconfig/default.conf create mode 100644 poky/meta/conf/multilib.conf create mode 100644 poky/meta/conf/prexport.conf create mode 100644 poky/meta/conf/primport.conf create mode 100644 poky/meta/conf/sanity.conf create mode 100644 poky/meta/files/common-licenses/0BSD create mode 100644 poky/meta/files/common-licenses/AAL create mode 100644 poky/meta/files/common-licenses/ADSL create mode 100644 poky/meta/files/common-licenses/AFL-1.1 create mode 100644 poky/meta/files/common-licenses/AFL-1.2 create mode 100644 poky/meta/files/common-licenses/AFL-2.0 create mode 100644 poky/meta/files/common-licenses/AFL-2.1 create mode 100644 poky/meta/files/common-licenses/AFL-3.0 create mode 100644 poky/meta/files/common-licenses/AGPL-1.0-only create mode 100644 poky/meta/files/common-licenses/AGPL-1.0-or-later create mode 100644 poky/meta/files/common-licenses/AGPL-3.0-only create mode 100644 poky/meta/files/common-licenses/AGPL-3.0-or-later create mode 100644 poky/meta/files/common-licenses/AMDPLPA create mode 100644 poky/meta/files/common-licenses/AML create mode 100644 poky/meta/files/common-licenses/AMPAS create mode 100644 poky/meta/files/common-licenses/ANTLR-PD create mode 100644 poky/meta/files/common-licenses/ANTLR-PD-fallback create mode 100644 poky/meta/files/common-licenses/APAFML create mode 100644 poky/meta/files/common-licenses/APL-1.0 create mode 100644 poky/meta/files/common-licenses/APSL-1.0 create mode 100644 poky/meta/files/common-licenses/APSL-1.1 create mode 100644 poky/meta/files/common-licenses/APSL-1.2 create mode 100644 poky/meta/files/common-licenses/APSL-2.0 create mode 100644 poky/meta/files/common-licenses/Abstyles create mode 100644 poky/meta/files/common-licenses/Adobe create mode 100644 poky/meta/files/common-licenses/Adobe-2006 create mode 100644 poky/meta/files/common-licenses/Adobe-Glyph create mode 100644 poky/meta/files/common-licenses/Afmparse create mode 100644 poky/meta/files/common-licenses/Aladdin create mode 100644 poky/meta/files/common-licenses/Apache-1.0 create mode 100644 poky/meta/files/common-licenses/Apache-1.1 create mode 100644 poky/meta/files/common-licenses/Apache-2.0 create mode 100644 poky/meta/files/common-licenses/Apache-2.0-with-LLVM-exception create mode 100644 poky/meta/files/common-licenses/Artistic-1.0 create mode 100644 poky/meta/files/common-licenses/Artistic-1.0-Perl create mode 100644 poky/meta/files/common-licenses/Artistic-1.0-cl8 create mode 100644 poky/meta/files/common-licenses/Artistic-2.0 create mode 100644 poky/meta/files/common-licenses/BSD-1-Clause create mode 100644 poky/meta/files/common-licenses/BSD-2-Clause create mode 100644 poky/meta/files/common-licenses/BSD-2-Clause-Patent create mode 100644 poky/meta/files/common-licenses/BSD-2-Clause-Views create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-Attribution create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-Clear create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-LBNL create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-Modification create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-No-Military-License create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-No-Nuclear-License create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-No-Nuclear-License-2014 create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-No-Nuclear-Warranty create mode 100644 poky/meta/files/common-licenses/BSD-3-Clause-Open-MPI create mode 100644 poky/meta/files/common-licenses/BSD-4-Clause create mode 100644 poky/meta/files/common-licenses/BSD-4-Clause-Shortened create mode 100644 poky/meta/files/common-licenses/BSD-4-Clause-UC create mode 100644 poky/meta/files/common-licenses/BSD-Protection create mode 100644 poky/meta/files/common-licenses/BSD-Source-Code create mode 100644 poky/meta/files/common-licenses/BSL-1.0 create mode 100644 poky/meta/files/common-licenses/BUSL-1.1 create mode 100644 poky/meta/files/common-licenses/Bahyph create mode 100644 poky/meta/files/common-licenses/Barr create mode 100644 poky/meta/files/common-licenses/Beerware create mode 100644 poky/meta/files/common-licenses/BitTorrent-1.0 create mode 100644 poky/meta/files/common-licenses/BitTorrent-1.1 create mode 100644 poky/meta/files/common-licenses/BitstreamVera create mode 100644 poky/meta/files/common-licenses/BlueOak-1.0.0 create mode 100644 poky/meta/files/common-licenses/Borceux create mode 100644 poky/meta/files/common-licenses/C-UDA-1.0 create mode 100644 poky/meta/files/common-licenses/CAL-1.0 create mode 100644 poky/meta/files/common-licenses/CAL-1.0-Combined-Work-Exception create mode 100644 poky/meta/files/common-licenses/CATOSL-1.1 create mode 100644 poky/meta/files/common-licenses/CC-BY-1.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-2.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-2.5 create mode 100644 poky/meta/files/common-licenses/CC-BY-2.5-AU create mode 100644 poky/meta/files/common-licenses/CC-BY-3.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-3.0-AT create mode 100644 poky/meta/files/common-licenses/CC-BY-3.0-DE create mode 100644 poky/meta/files/common-licenses/CC-BY-3.0-NL create mode 100644 poky/meta/files/common-licenses/CC-BY-3.0-US create mode 100644 poky/meta/files/common-licenses/CC-BY-4.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-1.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-2.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-2.5 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-3.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-3.0-DE create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-4.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-1.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-2.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-2.5 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-3.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-3.0-DE create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-3.0-IGO create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-ND-4.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-1.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-2.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-2.0-FR create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-2.0-UK create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-2.5 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-3.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-3.0-DE create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-3.0-IGO create mode 100644 poky/meta/files/common-licenses/CC-BY-NC-SA-4.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-ND-1.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-ND-2.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-ND-2.5 create mode 100644 poky/meta/files/common-licenses/CC-BY-ND-3.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-ND-3.0-DE create mode 100644 poky/meta/files/common-licenses/CC-BY-ND-4.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-1.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-2.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-2.0-UK create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-2.1-JP create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-2.5 create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-3.0 create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-3.0-AT create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-3.0-DE create mode 100644 poky/meta/files/common-licenses/CC-BY-SA-4.0 create mode 100644 poky/meta/files/common-licenses/CC-PDDC create mode 100644 poky/meta/files/common-licenses/CC0-1.0 create mode 100644 poky/meta/files/common-licenses/CDDL-1.0 create mode 100644 poky/meta/files/common-licenses/CDDL-1.1 create mode 100644 poky/meta/files/common-licenses/CDL-1.0 create mode 100644 poky/meta/files/common-licenses/CDLA-Permissive-1.0 create mode 100644 poky/meta/files/common-licenses/CDLA-Permissive-2.0 create mode 100644 poky/meta/files/common-licenses/CDLA-Sharing-1.0 create mode 100644 poky/meta/files/common-licenses/CECILL-1.0 create mode 100644 poky/meta/files/common-licenses/CECILL-1.1 create mode 100644 poky/meta/files/common-licenses/CECILL-2.0 create mode 100644 poky/meta/files/common-licenses/CECILL-2.1 create mode 100644 poky/meta/files/common-licenses/CECILL-B create mode 100644 poky/meta/files/common-licenses/CECILL-C create mode 100644 poky/meta/files/common-licenses/CERN-OHL-1.1 create mode 100644 poky/meta/files/common-licenses/CERN-OHL-1.2 create mode 100644 poky/meta/files/common-licenses/CERN-OHL-P-2.0 create mode 100644 poky/meta/files/common-licenses/CERN-OHL-S-2.0 create mode 100644 poky/meta/files/common-licenses/CERN-OHL-W-2.0 create mode 100644 poky/meta/files/common-licenses/CNRI-Jython create mode 100644 poky/meta/files/common-licenses/CNRI-Python create mode 100644 poky/meta/files/common-licenses/CNRI-Python-GPL-Compatible create mode 100644 poky/meta/files/common-licenses/CPAL-1.0 create mode 100644 poky/meta/files/common-licenses/CPL-1.0 create mode 100644 poky/meta/files/common-licenses/CPOL-1.02 create mode 100644 poky/meta/files/common-licenses/CUA-OPL-1.0 create mode 100644 poky/meta/files/common-licenses/Caldera create mode 100644 poky/meta/files/common-licenses/ClArtistic create mode 100644 poky/meta/files/common-licenses/Condor-1.1 create mode 100644 poky/meta/files/common-licenses/Crossword create mode 100644 poky/meta/files/common-licenses/CrystalStacker create mode 100644 poky/meta/files/common-licenses/Cube create mode 100644 poky/meta/files/common-licenses/D-FSL-1.0 create mode 100644 poky/meta/files/common-licenses/DOC create mode 100644 poky/meta/files/common-licenses/DRL-1.0 create mode 100644 poky/meta/files/common-licenses/DSDP create mode 100644 poky/meta/files/common-licenses/DSSSL create mode 100644 poky/meta/files/common-licenses/Dotseqn create mode 100644 poky/meta/files/common-licenses/ECL-1.0 create mode 100644 poky/meta/files/common-licenses/ECL-2.0 create mode 100644 poky/meta/files/common-licenses/EDL-1.0 create mode 100644 poky/meta/files/common-licenses/EFL-1.0 create mode 100644 poky/meta/files/common-licenses/EFL-2.0 create mode 100644 poky/meta/files/common-licenses/EPICS create mode 100644 poky/meta/files/common-licenses/EPL-1.0 create mode 100644 poky/meta/files/common-licenses/EPL-2.0 create mode 100644 poky/meta/files/common-licenses/EUDatagrid create mode 100644 poky/meta/files/common-licenses/EUPL-1.0 create mode 100644 poky/meta/files/common-licenses/EUPL-1.1 create mode 100644 poky/meta/files/common-licenses/EUPL-1.2 create mode 100644 poky/meta/files/common-licenses/Entessa create mode 100644 poky/meta/files/common-licenses/ErlPL-1.1 create mode 100644 poky/meta/files/common-licenses/Eurosym create mode 100644 poky/meta/files/common-licenses/FSF-Unlimited create mode 100644 poky/meta/files/common-licenses/FSFAP create mode 100644 poky/meta/files/common-licenses/FSFUL create mode 100644 poky/meta/files/common-licenses/FSFULLR create mode 100644 poky/meta/files/common-licenses/FTL create mode 100644 poky/meta/files/common-licenses/Fair create mode 100644 poky/meta/files/common-licenses/Frameworx-1.0 create mode 100644 poky/meta/files/common-licenses/FreeBSD-DOC create mode 100644 poky/meta/files/common-licenses/FreeImage create mode 100644 poky/meta/files/common-licenses/GD create mode 100644 poky/meta/files/common-licenses/GFDL-1.1 create mode 100644 poky/meta/files/common-licenses/GFDL-1.1-invariants-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.1-invariants-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.1-no-invariants-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.1-no-invariants-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.1-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.1-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.2 create mode 100644 poky/meta/files/common-licenses/GFDL-1.2-invariants-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.2-invariants-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.2-no-invariants-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.2-no-invariants-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.2-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.2-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.3 create mode 100644 poky/meta/files/common-licenses/GFDL-1.3-invariants-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.3-invariants-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.3-no-invariants-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.3-no-invariants-or-later create mode 100644 poky/meta/files/common-licenses/GFDL-1.3-only create mode 100644 poky/meta/files/common-licenses/GFDL-1.3-or-later create mode 100644 poky/meta/files/common-licenses/GL2PS create mode 100644 poky/meta/files/common-licenses/GLWTPL create mode 100644 poky/meta/files/common-licenses/GPL-1.0-only create mode 100644 poky/meta/files/common-licenses/GPL-1.0-or-later create mode 100644 poky/meta/files/common-licenses/GPL-2-with-bison-exception create mode 100644 poky/meta/files/common-licenses/GPL-2.0-only create mode 100644 poky/meta/files/common-licenses/GPL-2.0-or-later create mode 100644 poky/meta/files/common-licenses/GPL-2.0-with-GCC-exception create mode 100644 poky/meta/files/common-licenses/GPL-2.0-with-OpenSSL-exception create mode 100644 poky/meta/files/common-licenses/GPL-2.0-with-autoconf-exception create mode 100644 poky/meta/files/common-licenses/GPL-2.0-with-classpath-exception create mode 100644 poky/meta/files/common-licenses/GPL-2.0-with-font-exception create mode 100644 poky/meta/files/common-licenses/GPL-3-with-bison-exception create mode 100644 poky/meta/files/common-licenses/GPL-3.0-only create mode 100644 poky/meta/files/common-licenses/GPL-3.0-or-later create mode 100644 poky/meta/files/common-licenses/GPL-3.0-with-GCC-exception create mode 100644 poky/meta/files/common-licenses/GPL-3.0-with-autoconf-exception create mode 100644 poky/meta/files/common-licenses/Giftware create mode 100644 poky/meta/files/common-licenses/Glide create mode 100644 poky/meta/files/common-licenses/Glulxe create mode 100644 poky/meta/files/common-licenses/HPND create mode 100644 poky/meta/files/common-licenses/HPND-sell-variant create mode 100644 poky/meta/files/common-licenses/HTMLTIDY create mode 100644 poky/meta/files/common-licenses/HaskellReport create mode 100644 poky/meta/files/common-licenses/Hippocratic-2.1 create mode 100644 poky/meta/files/common-licenses/IBM-pibs create mode 100644 poky/meta/files/common-licenses/ICU create mode 100644 poky/meta/files/common-licenses/IJG create mode 100644 poky/meta/files/common-licenses/IPA create mode 100644 poky/meta/files/common-licenses/IPL-1.0 create mode 100644 poky/meta/files/common-licenses/ISC create mode 100644 poky/meta/files/common-licenses/ImageMagick create mode 100644 poky/meta/files/common-licenses/Imlib2 create mode 100644 poky/meta/files/common-licenses/Info-ZIP create mode 100644 poky/meta/files/common-licenses/Intel create mode 100644 poky/meta/files/common-licenses/Intel-ACPI create mode 100644 poky/meta/files/common-licenses/Interbase-1.0 create mode 100644 poky/meta/files/common-licenses/JPNIC create mode 100644 poky/meta/files/common-licenses/JSON create mode 100644 poky/meta/files/common-licenses/JasPer-2.0 create mode 100644 poky/meta/files/common-licenses/LAL-1.2 create mode 100644 poky/meta/files/common-licenses/LAL-1.3 create mode 100644 poky/meta/files/common-licenses/LGPL-2.0-only create mode 100644 poky/meta/files/common-licenses/LGPL-2.0-or-later create mode 100644 poky/meta/files/common-licenses/LGPL-2.1-only create mode 100644 poky/meta/files/common-licenses/LGPL-2.1-or-later create mode 100644 poky/meta/files/common-licenses/LGPL-3.0-only create mode 100644 poky/meta/files/common-licenses/LGPL-3.0-or-later create mode 100644 poky/meta/files/common-licenses/LGPLLR create mode 100644 poky/meta/files/common-licenses/LPL-1.0 create mode 100644 poky/meta/files/common-licenses/LPL-1.02 create mode 100644 poky/meta/files/common-licenses/LPPL-1.0 create mode 100644 poky/meta/files/common-licenses/LPPL-1.1 create mode 100644 poky/meta/files/common-licenses/LPPL-1.2 create mode 100644 poky/meta/files/common-licenses/LPPL-1.3a create mode 100644 poky/meta/files/common-licenses/LPPL-1.3c create mode 100644 poky/meta/files/common-licenses/Latex2e create mode 100644 poky/meta/files/common-licenses/Leptonica create mode 100644 poky/meta/files/common-licenses/LiLiQ-P-1.1 create mode 100644 poky/meta/files/common-licenses/LiLiQ-R-1.1 create mode 100644 poky/meta/files/common-licenses/LiLiQ-Rplus-1.1 create mode 100644 poky/meta/files/common-licenses/Libpng create mode 100644 poky/meta/files/common-licenses/Linux-OpenIB create mode 100644 poky/meta/files/common-licenses/MIT create mode 100644 poky/meta/files/common-licenses/MIT-0 create mode 100644 poky/meta/files/common-licenses/MIT-CMU create mode 100644 poky/meta/files/common-licenses/MIT-Modern-Variant create mode 100644 poky/meta/files/common-licenses/MIT-advertising create mode 100644 poky/meta/files/common-licenses/MIT-enna create mode 100644 poky/meta/files/common-licenses/MIT-feh create mode 100644 poky/meta/files/common-licenses/MIT-open-group create mode 100644 poky/meta/files/common-licenses/MITNFA create mode 100644 poky/meta/files/common-licenses/MPL-1.0 create mode 100644 poky/meta/files/common-licenses/MPL-1.1 create mode 100644 poky/meta/files/common-licenses/MPL-2.0 create mode 100644 poky/meta/files/common-licenses/MPL-2.0-no-copyleft-exception create mode 100644 poky/meta/files/common-licenses/MS-PL create mode 100644 poky/meta/files/common-licenses/MS-RL create mode 100644 poky/meta/files/common-licenses/MTLL create mode 100644 poky/meta/files/common-licenses/MakeIndex create mode 100644 poky/meta/files/common-licenses/MirOS create mode 100644 poky/meta/files/common-licenses/Motosoto create mode 100644 poky/meta/files/common-licenses/MulanPSL-1.0 create mode 100644 poky/meta/files/common-licenses/MulanPSL-2.0 create mode 100644 poky/meta/files/common-licenses/Multics create mode 100644 poky/meta/files/common-licenses/Mup create mode 100644 poky/meta/files/common-licenses/NAIST-2003 create mode 100644 poky/meta/files/common-licenses/NASA-1.3 create mode 100644 poky/meta/files/common-licenses/NBPL-1.0 create mode 100644 poky/meta/files/common-licenses/NCGL-UK-2.0 create mode 100644 poky/meta/files/common-licenses/NCSA create mode 100644 poky/meta/files/common-licenses/NGPL create mode 100644 poky/meta/files/common-licenses/NIST-PD create mode 100644 poky/meta/files/common-licenses/NIST-PD-fallback create mode 100644 poky/meta/files/common-licenses/NLOD-1.0 create mode 100644 poky/meta/files/common-licenses/NLOD-2.0 create mode 100644 poky/meta/files/common-licenses/NLPL create mode 100644 poky/meta/files/common-licenses/NOSL create mode 100644 poky/meta/files/common-licenses/NPL-1.0 create mode 100644 poky/meta/files/common-licenses/NPL-1.1 create mode 100644 poky/meta/files/common-licenses/NPOSL-3.0 create mode 100644 poky/meta/files/common-licenses/NRL create mode 100644 poky/meta/files/common-licenses/NTP create mode 100644 poky/meta/files/common-licenses/NTP-0 create mode 100644 poky/meta/files/common-licenses/Naumen create mode 100644 poky/meta/files/common-licenses/Net-SNMP create mode 100644 poky/meta/files/common-licenses/NetCDF create mode 100644 poky/meta/files/common-licenses/Newsletr create mode 100644 poky/meta/files/common-licenses/Nokia create mode 100644 poky/meta/files/common-licenses/Noweb create mode 100644 poky/meta/files/common-licenses/O-UDA-1.0 create mode 100644 poky/meta/files/common-licenses/OASIS create mode 100644 poky/meta/files/common-licenses/OCCT-PL create mode 100644 poky/meta/files/common-licenses/OCLC-2.0 create mode 100644 poky/meta/files/common-licenses/ODC-By-1.0 create mode 100644 poky/meta/files/common-licenses/ODbL-1.0 create mode 100644 poky/meta/files/common-licenses/OFL-1.0 create mode 100644 poky/meta/files/common-licenses/OFL-1.0-RFN create mode 100644 poky/meta/files/common-licenses/OFL-1.0-no-RFN create mode 100644 poky/meta/files/common-licenses/OFL-1.1 create mode 100644 poky/meta/files/common-licenses/OFL-1.1-RFN create mode 100644 poky/meta/files/common-licenses/OFL-1.1-no-RFN create mode 100644 poky/meta/files/common-licenses/OGC-1.0 create mode 100644 poky/meta/files/common-licenses/OGDL-Taiwan-1.0 create mode 100644 poky/meta/files/common-licenses/OGL-Canada-2.0 create mode 100644 poky/meta/files/common-licenses/OGL-UK-1.0 create mode 100644 poky/meta/files/common-licenses/OGL-UK-2.0 create mode 100644 poky/meta/files/common-licenses/OGL-UK-3.0 create mode 100644 poky/meta/files/common-licenses/OGTSL create mode 100644 poky/meta/files/common-licenses/OLDAP-1.1 create mode 100644 poky/meta/files/common-licenses/OLDAP-1.2 create mode 100644 poky/meta/files/common-licenses/OLDAP-1.3 create mode 100644 poky/meta/files/common-licenses/OLDAP-1.4 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.0 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.0.1 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.1 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.2 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.2.1 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.2.2 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.3 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.4 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.5 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.6 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.7 create mode 100644 poky/meta/files/common-licenses/OLDAP-2.8 create mode 100644 poky/meta/files/common-licenses/OML create mode 100644 poky/meta/files/common-licenses/OPL-1.0 create mode 100644 poky/meta/files/common-licenses/OPUBL-1.0 create mode 100644 poky/meta/files/common-licenses/OSET-PL-2.1 create mode 100644 poky/meta/files/common-licenses/OSL-1.0 create mode 100644 poky/meta/files/common-licenses/OSL-1.1 create mode 100644 poky/meta/files/common-licenses/OSL-2.0 create mode 100644 poky/meta/files/common-licenses/OSL-2.1 create mode 100644 poky/meta/files/common-licenses/OSL-3.0 create mode 100644 poky/meta/files/common-licenses/OpenSSL create mode 100644 poky/meta/files/common-licenses/PD create mode 100644 poky/meta/files/common-licenses/PDDL-1.0 create mode 100644 poky/meta/files/common-licenses/PHP-3.0 create mode 100644 poky/meta/files/common-licenses/PHP-3.01 create mode 100644 poky/meta/files/common-licenses/PSF-2.0 create mode 100644 poky/meta/files/common-licenses/ParaTypeFFL-1.3 create mode 100644 poky/meta/files/common-licenses/Parity-6.0.0 create mode 100644 poky/meta/files/common-licenses/Parity-7.0.0 create mode 100644 poky/meta/files/common-licenses/Plexus create mode 100644 poky/meta/files/common-licenses/PolyForm-Noncommercial-1.0.0 create mode 100644 poky/meta/files/common-licenses/PolyForm-Small-Business-1.0.0 create mode 100644 poky/meta/files/common-licenses/PostgreSQL create mode 100644 poky/meta/files/common-licenses/Proprietary create mode 100644 poky/meta/files/common-licenses/Python-2.0 create mode 100644 poky/meta/files/common-licenses/QPL-1.0 create mode 100644 poky/meta/files/common-licenses/Qhull create mode 100644 poky/meta/files/common-licenses/RHeCos-1 create mode 100644 poky/meta/files/common-licenses/RHeCos-1.1 create mode 100644 poky/meta/files/common-licenses/RPL-1.1 create mode 100644 poky/meta/files/common-licenses/RPL-1.5 create mode 100644 poky/meta/files/common-licenses/RPSL-1.0 create mode 100644 poky/meta/files/common-licenses/RSA-MD create mode 100644 poky/meta/files/common-licenses/RSCPL create mode 100644 poky/meta/files/common-licenses/Rdisc create mode 100644 poky/meta/files/common-licenses/Ruby create mode 100644 poky/meta/files/common-licenses/SAX-PD create mode 100644 poky/meta/files/common-licenses/SCEA create mode 100644 poky/meta/files/common-licenses/SGI-1 create mode 100644 poky/meta/files/common-licenses/SGI-B-1.0 create mode 100644 poky/meta/files/common-licenses/SGI-B-1.1 create mode 100644 poky/meta/files/common-licenses/SGI-B-2.0 create mode 100644 poky/meta/files/common-licenses/SHL-0.5 create mode 100644 poky/meta/files/common-licenses/SHL-0.51 create mode 100644 poky/meta/files/common-licenses/SISSL create mode 100644 poky/meta/files/common-licenses/SISSL-1.2 create mode 100644 poky/meta/files/common-licenses/SMAIL_GPL create mode 100644 poky/meta/files/common-licenses/SMLNJ create mode 100644 poky/meta/files/common-licenses/SMPPL create mode 100644 poky/meta/files/common-licenses/SNIA create mode 100644 poky/meta/files/common-licenses/SPL-1.0 create mode 100644 poky/meta/files/common-licenses/SSH-OpenSSH create mode 100644 poky/meta/files/common-licenses/SSH-short create mode 100644 poky/meta/files/common-licenses/SSPL-1.0 create mode 100644 poky/meta/files/common-licenses/SWL create mode 100644 poky/meta/files/common-licenses/Saxpath create mode 100644 poky/meta/files/common-licenses/Sendmail create mode 100644 poky/meta/files/common-licenses/Sendmail-8.23 create mode 100644 poky/meta/files/common-licenses/SimPL-2.0 create mode 100644 poky/meta/files/common-licenses/Simple-2.0 create mode 100644 poky/meta/files/common-licenses/Sleepycat create mode 100644 poky/meta/files/common-licenses/Spencer-86 create mode 100644 poky/meta/files/common-licenses/Spencer-94 create mode 100644 poky/meta/files/common-licenses/Spencer-99 create mode 100644 poky/meta/files/common-licenses/SugarCRM-1 create mode 100644 poky/meta/files/common-licenses/SugarCRM-1.1.3 create mode 100644 poky/meta/files/common-licenses/TAPR-OHL-1.0 create mode 100644 poky/meta/files/common-licenses/TCL create mode 100644 poky/meta/files/common-licenses/TCP-wrappers create mode 100644 poky/meta/files/common-licenses/TMate create mode 100644 poky/meta/files/common-licenses/TORQUE-1.1 create mode 100644 poky/meta/files/common-licenses/TOSL create mode 100644 poky/meta/files/common-licenses/TU-Berlin-1.0 create mode 100644 poky/meta/files/common-licenses/TU-Berlin-2.0 create mode 100644 poky/meta/files/common-licenses/UCB create mode 100644 poky/meta/files/common-licenses/UCL-1.0 create mode 100644 poky/meta/files/common-licenses/UPL-1.0 create mode 100644 poky/meta/files/common-licenses/Unicode-DFS-2015 create mode 100644 poky/meta/files/common-licenses/Unicode-DFS-2016 create mode 100644 poky/meta/files/common-licenses/Unicode-TOU create mode 100644 poky/meta/files/common-licenses/Unlicense create mode 100644 poky/meta/files/common-licenses/VOSTROM create mode 100644 poky/meta/files/common-licenses/VSL-1.0 create mode 100644 poky/meta/files/common-licenses/Vim create mode 100644 poky/meta/files/common-licenses/W3C create mode 100644 poky/meta/files/common-licenses/W3C-19980720 create mode 100644 poky/meta/files/common-licenses/W3C-20150513 create mode 100644 poky/meta/files/common-licenses/WTFPL create mode 100644 poky/meta/files/common-licenses/WXwindows create mode 100644 poky/meta/files/common-licenses/Watcom-1.0 create mode 100644 poky/meta/files/common-licenses/Wsuipa create mode 100644 poky/meta/files/common-licenses/X11 create mode 100644 poky/meta/files/common-licenses/XFree86-1.0 create mode 100644 poky/meta/files/common-licenses/XFree86-1.1 create mode 100644 poky/meta/files/common-licenses/XSL create mode 100644 poky/meta/files/common-licenses/XSkat create mode 100644 poky/meta/files/common-licenses/Xerox create mode 100644 poky/meta/files/common-licenses/Xnet create mode 100644 poky/meta/files/common-licenses/YPL-1.0 create mode 100644 poky/meta/files/common-licenses/YPL-1.1 create mode 100644 poky/meta/files/common-licenses/ZPL-1.1 create mode 100644 poky/meta/files/common-licenses/ZPL-2.0 create mode 100644 poky/meta/files/common-licenses/ZPL-2.1 create mode 100644 poky/meta/files/common-licenses/Zed create mode 100644 poky/meta/files/common-licenses/Zend-2.0 create mode 100644 poky/meta/files/common-licenses/Zimbra-1.3 create mode 100644 poky/meta/files/common-licenses/Zimbra-1.4 create mode 100644 poky/meta/files/common-licenses/Zlib create mode 100644 poky/meta/files/common-licenses/blessing create mode 100644 poky/meta/files/common-licenses/bzip2-1.0.4 create mode 100644 poky/meta/files/common-licenses/bzip2-1.0.5 create mode 100644 poky/meta/files/common-licenses/bzip2-1.0.6 create mode 100644 poky/meta/files/common-licenses/copyleft-next-0.3.0 create mode 100644 poky/meta/files/common-licenses/copyleft-next-0.3.1 create mode 100644 poky/meta/files/common-licenses/curl create mode 100644 poky/meta/files/common-licenses/diffmark create mode 100644 poky/meta/files/common-licenses/dvipdfm create mode 100644 poky/meta/files/common-licenses/eCos-2.0 create mode 100644 poky/meta/files/common-licenses/eGenix create mode 100644 poky/meta/files/common-licenses/etalab-2.0 create mode 100644 poky/meta/files/common-licenses/gSOAP-1 create mode 100644 poky/meta/files/common-licenses/gSOAP-1.3b create mode 100644 poky/meta/files/common-licenses/gnuplot create mode 100644 poky/meta/files/common-licenses/iMatix create mode 100644 poky/meta/files/common-licenses/libpng-2.0 create mode 100644 poky/meta/files/common-licenses/libselinux-1.0 create mode 100644 poky/meta/files/common-licenses/libtiff create mode 100644 poky/meta/files/common-licenses/mpich2 create mode 100644 poky/meta/files/common-licenses/pkgconf create mode 100644 poky/meta/files/common-licenses/psfrag create mode 100644 poky/meta/files/common-licenses/psutils create mode 100644 poky/meta/files/common-licenses/unfs3 create mode 100644 poky/meta/files/common-licenses/xinetd create mode 100644 poky/meta/files/common-licenses/xpp create mode 100644 poky/meta/files/common-licenses/zlib-acknowledgement create mode 100644 poky/meta/files/device_table-minimal.txt create mode 100644 poky/meta/files/ext-sdk-prepare.py create mode 100644 poky/meta/files/fs-perms-persistent-log.txt create mode 100644 poky/meta/files/fs-perms.txt create mode 100644 poky/meta/files/overlayfs-all-overlays.service.in create mode 100644 poky/meta/files/overlayfs-create-dirs.service.in create mode 100644 poky/meta/files/overlayfs-etc-preinit.sh.in create mode 100644 poky/meta/files/overlayfs-unit.mount.in create mode 100644 poky/meta/files/ptest-perl/run-ptest create mode 100644 poky/meta/files/spdx-licenses.json create mode 100644 poky/meta/files/toolchain-shar-extract.sh create mode 100644 poky/meta/files/toolchain-shar-relocate.sh create mode 100644 poky/meta/lib/bblayers/create.py create mode 100644 poky/meta/lib/bblayers/templates/README create mode 100644 poky/meta/lib/bblayers/templates/example.bb create mode 100644 poky/meta/lib/bblayers/templates/layer.conf create mode 100644 poky/meta/lib/buildstats.py create mode 100644 poky/meta/lib/oe/__init__.py create mode 100644 poky/meta/lib/oe/buildhistory_analysis.py create mode 100644 poky/meta/lib/oe/cachedpath.py create mode 100644 poky/meta/lib/oe/classextend.py create mode 100644 poky/meta/lib/oe/classutils.py create mode 100644 poky/meta/lib/oe/copy_buildsystem.py create mode 100644 poky/meta/lib/oe/cve_check.py create mode 100644 poky/meta/lib/oe/data.py create mode 100644 poky/meta/lib/oe/distro_check.py create mode 100644 poky/meta/lib/oe/elf.py create mode 100644 poky/meta/lib/oe/gpg_sign.py create mode 100644 poky/meta/lib/oe/license.py create mode 100644 poky/meta/lib/oe/lsb.py create mode 100644 poky/meta/lib/oe/maketype.py create mode 100644 poky/meta/lib/oe/manifest.py create mode 100644 poky/meta/lib/oe/npm_registry.py create mode 100644 poky/meta/lib/oe/overlayfs.py create mode 100644 poky/meta/lib/oe/package.py create mode 100644 poky/meta/lib/oe/package_manager/__init__.py create mode 100644 poky/meta/lib/oe/package_manager/deb/__init__.py create mode 100644 poky/meta/lib/oe/package_manager/deb/manifest.py create mode 100644 poky/meta/lib/oe/package_manager/deb/rootfs.py create mode 100644 poky/meta/lib/oe/package_manager/deb/sdk.py create mode 100644 poky/meta/lib/oe/package_manager/ipk/__init__.py create mode 100644 poky/meta/lib/oe/package_manager/ipk/manifest.py create mode 100644 poky/meta/lib/oe/package_manager/ipk/rootfs.py create mode 100644 poky/meta/lib/oe/package_manager/ipk/sdk.py create mode 100644 poky/meta/lib/oe/package_manager/rpm/__init__.py create mode 100644 poky/meta/lib/oe/package_manager/rpm/manifest.py create mode 100644 poky/meta/lib/oe/package_manager/rpm/rootfs.py create mode 100644 poky/meta/lib/oe/package_manager/rpm/sdk.py create mode 100644 poky/meta/lib/oe/packagedata.py create mode 100644 poky/meta/lib/oe/packagegroup.py create mode 100644 poky/meta/lib/oe/patch.py create mode 100644 poky/meta/lib/oe/path.py create mode 100644 poky/meta/lib/oe/prservice.py create mode 100644 poky/meta/lib/oe/qa.py create mode 100644 poky/meta/lib/oe/recipeutils.py create mode 100644 poky/meta/lib/oe/reproducible.py create mode 100644 poky/meta/lib/oe/rootfs.py create mode 100644 poky/meta/lib/oe/rust.py create mode 100644 poky/meta/lib/oe/sbom.py create mode 100644 poky/meta/lib/oe/sdk.py create mode 100644 poky/meta/lib/oe/spdx.py create mode 100644 poky/meta/lib/oe/sstatesig.py create mode 100644 poky/meta/lib/oe/terminal.py create mode 100644 poky/meta/lib/oe/types.py create mode 100644 poky/meta/lib/oe/useradd.py create mode 100644 poky/meta/lib/oe/utils.py create mode 100644 poky/meta/lib/oeqa/buildperf/__init__.py create mode 100644 poky/meta/lib/oeqa/buildperf/base.py create mode 100644 poky/meta/lib/oeqa/buildperf/test_basic.py create mode 100644 poky/meta/lib/oeqa/controllers/__init__.py create mode 100644 poky/meta/lib/oeqa/controllers/controllerimage.py create mode 100644 poky/meta/lib/oeqa/controllers/testtargetloader.py create mode 100644 poky/meta/lib/oeqa/core/README create mode 100644 poky/meta/lib/oeqa/core/__init__.py create mode 100644 poky/meta/lib/oeqa/core/case.py create mode 100644 poky/meta/lib/oeqa/core/cases/__init__.py create mode 100644 poky/meta/lib/oeqa/core/cases/example/data.json create mode 100644 poky/meta/lib/oeqa/core/cases/example/test_basic.py create mode 100644 poky/meta/lib/oeqa/core/context.py create mode 100644 poky/meta/lib/oeqa/core/decorator/__init__.py create mode 100644 poky/meta/lib/oeqa/core/decorator/data.py create mode 100644 poky/meta/lib/oeqa/core/decorator/depends.py create mode 100644 poky/meta/lib/oeqa/core/decorator/oetimeout.py create mode 100644 poky/meta/lib/oeqa/core/exception.py create mode 100644 poky/meta/lib/oeqa/core/loader.py create mode 100644 poky/meta/lib/oeqa/core/runner.py create mode 100644 poky/meta/lib/oeqa/core/target/__init__.py create mode 100644 poky/meta/lib/oeqa/core/target/qemu.py create mode 100644 poky/meta/lib/oeqa/core/target/ssh.py create mode 100644 poky/meta/lib/oeqa/core/tests/__init__.py create mode 100644 poky/meta/lib/oeqa/core/tests/cases/data.py create mode 100644 poky/meta/lib/oeqa/core/tests/cases/depends.py create mode 100644 poky/meta/lib/oeqa/core/tests/cases/loader/valid/another.py create mode 100644 poky/meta/lib/oeqa/core/tests/cases/oetag.py create mode 100644 poky/meta/lib/oeqa/core/tests/cases/timeout.py create mode 100644 poky/meta/lib/oeqa/core/tests/common.py create mode 100755 poky/meta/lib/oeqa/core/tests/test_data.py create mode 100755 poky/meta/lib/oeqa/core/tests/test_decorators.py create mode 100755 poky/meta/lib/oeqa/core/tests/test_loader.py create mode 100755 poky/meta/lib/oeqa/core/tests/test_runner.py create mode 100644 poky/meta/lib/oeqa/core/utils/__init__.py create mode 100644 poky/meta/lib/oeqa/core/utils/concurrencytest.py create mode 100644 poky/meta/lib/oeqa/core/utils/path.py create mode 100644 poky/meta/lib/oeqa/core/utils/test.py create mode 100644 poky/meta/lib/oeqa/files/buildhistory_filelist1.txt create mode 100644 poky/meta/lib/oeqa/files/buildhistory_filelist2.txt create mode 100644 poky/meta/lib/oeqa/files/test.c create mode 100644 poky/meta/lib/oeqa/files/test.cpp create mode 100644 poky/meta/lib/oeqa/files/testresults/testresults.json create mode 100644 poky/meta/lib/oeqa/manual/abat.patch create mode 100644 poky/meta/lib/oeqa/manual/bsp-hw.json create mode 100644 poky/meta/lib/oeqa/manual/build-appliance.json create mode 100644 poky/meta/lib/oeqa/manual/crops.json create mode 100644 poky/meta/lib/oeqa/manual/eclipse-plugin.json create mode 100644 poky/meta/lib/oeqa/manual/kernel-dev.json create mode 100644 poky/meta/lib/oeqa/manual/oe-core.json create mode 100644 poky/meta/lib/oeqa/manual/sdk.json create mode 100644 poky/meta/lib/oeqa/manual/toaster-managed-mode.json create mode 100644 poky/meta/lib/oeqa/manual/toaster-unmanaged-mode.json create mode 100644 poky/meta/lib/oeqa/oetest.py create mode 100755 poky/meta/lib/oeqa/runexported.py create mode 100644 poky/meta/lib/oeqa/runtime/case.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/_qemutiny.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/apt.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/boot.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/buildcpio.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/buildgalculator.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/buildlzip.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/connman.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/date.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/df.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/dnf.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ethernet_ip_connman.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/gcc.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/gi.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/go.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/gstreamer.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/kernelmodule.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ksample.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ldd.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/logrotate.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ltp.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ltp_compliance.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ltp_stress.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/multilib.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/oe_syslog.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/opkg.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/pam.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/parselogs.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/perl.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ping.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ptest.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/python.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/rpm.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/rt.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/rtc.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/runlevel.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/rust.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/scons.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/scp.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/skeletoninit.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/ssh.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/stap.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/storage.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/suspend.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/systemd.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/terminal.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/usb_hid.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/weston.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/x32lib.py create mode 100644 poky/meta/lib/oeqa/runtime/cases/xorg.py create mode 100644 poky/meta/lib/oeqa/runtime/context.py create mode 100644 poky/meta/lib/oeqa/runtime/decorator/package.py create mode 100644 poky/meta/lib/oeqa/runtime/files/SConstruct create mode 100644 poky/meta/lib/oeqa/runtime/files/hello.c create mode 100644 poky/meta/lib/oeqa/runtime/files/hellomod.c create mode 100644 poky/meta/lib/oeqa/runtime/files/hellomod_makefile create mode 100644 poky/meta/lib/oeqa/runtime/files/testmakefile create mode 100644 poky/meta/lib/oeqa/runtime/loader.py create mode 100644 poky/meta/lib/oeqa/runtime/utils/__init__.py create mode 100644 poky/meta/lib/oeqa/runtime/utils/targetbuildproject.py create mode 100644 poky/meta/lib/oeqa/sdk/__init__.py create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-cases/README create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-cases/build.py create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-cases/gcc.py create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-cases/https.py create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-cases/sanity.py create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-docs-cases/README create mode 100644 poky/meta/lib/oeqa/sdk/buildtools-docs-cases/build.py create mode 100644 poky/meta/lib/oeqa/sdk/case.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/assimp.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/buildcpio.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/buildepoxy.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/buildgalculator.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/buildlzip.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/gcc.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/perl.py create mode 100644 poky/meta/lib/oeqa/sdk/cases/python.py create mode 100644 poky/meta/lib/oeqa/sdk/context.py create mode 100644 poky/meta/lib/oeqa/sdk/files/testsdkmakefile create mode 100644 poky/meta/lib/oeqa/sdk/testsdk.py create mode 100644 poky/meta/lib/oeqa/sdk/utils/__init__.py create mode 100644 poky/meta/lib/oeqa/sdk/utils/sdkbuildproject.py create mode 100644 poky/meta/lib/oeqa/sdkext/__init__.py create mode 100644 poky/meta/lib/oeqa/sdkext/case.py create mode 100644 poky/meta/lib/oeqa/sdkext/cases/devtool.py create mode 100644 poky/meta/lib/oeqa/sdkext/context.py create mode 100644 poky/meta/lib/oeqa/sdkext/files/myapp/Makefile create mode 100644 poky/meta/lib/oeqa/sdkext/files/myapp/myapp.c create mode 100644 poky/meta/lib/oeqa/sdkext/files/myapp_cmake/CMakeLists.txt create mode 100644 poky/meta/lib/oeqa/sdkext/files/myapp_cmake/myapp.c create mode 100644 poky/meta/lib/oeqa/sdkext/testsdk.py create mode 100644 poky/meta/lib/oeqa/selftest/case.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/_sstatetests_noauto.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/archiver.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/bblayers.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/bblogging.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/bbtests.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/binutils.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/buildhistory.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/buildoptions.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/containerimage.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/cve_check.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/devtool.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/diffoscope/A/file.txt create mode 100644 poky/meta/lib/oeqa/selftest/cases/diffoscope/B/file.txt create mode 100644 poky/meta/lib/oeqa/selftest/cases/distrodata.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/eSDK.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/efibootpartition.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/externalsrc.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/fetch.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/fitimage.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/gcc.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/glibc.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/gotoolchain.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/image_typedep.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/imagefeatures.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/incompatible_lic.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/intercept.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/kerneldevelopment.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/layerappend.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/liboe.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/lic_checksum.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/locales.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/manifest.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/meta_ide.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/minidebuginfo.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/multiconfig.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/newlib.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/__init__.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/elf.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/license.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/path.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/types.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oelib/utils.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/oescripts.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/overlayfs.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/package.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/pkgdata.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/prservice.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/pseudo.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/recipetool.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/recipeutils.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/reproducible.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/resulttooltests.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/runcmd.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/runqemu.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/runtime_test.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/selftest.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/signing.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/sstate.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/sstatetests.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/sysroot.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/tinfoil.py create mode 100644 poky/meta/lib/oeqa/selftest/cases/wic.py create mode 100644 poky/meta/lib/oeqa/selftest/context.py create mode 100644 poky/meta/lib/oeqa/targetcontrol.py create mode 100644 poky/meta/lib/oeqa/utils/__init__.py create mode 100644 poky/meta/lib/oeqa/utils/buildproject.py create mode 100644 poky/meta/lib/oeqa/utils/commands.py create mode 100644 poky/meta/lib/oeqa/utils/decorators.py create mode 100644 poky/meta/lib/oeqa/utils/dump.py create mode 100644 poky/meta/lib/oeqa/utils/ftools.py create mode 100644 poky/meta/lib/oeqa/utils/git.py create mode 100644 poky/meta/lib/oeqa/utils/gitarchive.py create mode 100644 poky/meta/lib/oeqa/utils/httpserver.py create mode 100644 poky/meta/lib/oeqa/utils/logparser.py create mode 100644 poky/meta/lib/oeqa/utils/metadata.py create mode 100644 poky/meta/lib/oeqa/utils/network.py create mode 100644 poky/meta/lib/oeqa/utils/nfs.py create mode 100644 poky/meta/lib/oeqa/utils/package_manager.py create mode 100644 poky/meta/lib/oeqa/utils/qemurunner.py create mode 100644 poky/meta/lib/oeqa/utils/qemutinyrunner.py create mode 100644 poky/meta/lib/oeqa/utils/sshcontrol.py create mode 100644 poky/meta/lib/oeqa/utils/subprocesstweak.py create mode 100644 poky/meta/lib/oeqa/utils/targetbuild.py create mode 100644 poky/meta/lib/oeqa/utils/testexport.py create mode 100644 poky/meta/lib/rootfspostcommands.py create mode 100644 poky/meta/recipes-bsp/acpid/acpid.inc create mode 100644 poky/meta/recipes-bsp/acpid/acpid/acpid.service create mode 100755 poky/meta/recipes-bsp/acpid/acpid/init create mode 100644 poky/meta/recipes-bsp/acpid/acpid_2.0.33.bb create mode 100644 poky/meta/recipes-bsp/alsa-state/alsa-state.bb create mode 100755 poky/meta/recipes-bsp/alsa-state/alsa-state/alsa-state-init create mode 100644 poky/meta/recipes-bsp/alsa-state/alsa-state/asound.conf create mode 100644 poky/meta/recipes-bsp/alsa-state/alsa-state/asound.state create mode 100644 poky/meta/recipes-bsp/apmd/apmd/apmd.service create mode 100644 poky/meta/recipes-bsp/apmd/apmd/apmd_proxy create mode 100644 poky/meta/recipes-bsp/apmd/apmd/apmd_proxy.conf create mode 100644 poky/meta/recipes-bsp/apmd/apmd/default create mode 100755 poky/meta/recipes-bsp/apmd/apmd/init create mode 100644 poky/meta/recipes-bsp/apmd/apmd/legacy.patch create mode 100644 poky/meta/recipes-bsp/apmd/apmd/libtool.patch create mode 100644 poky/meta/recipes-bsp/apmd/apmd/linkage.patch create mode 100644 poky/meta/recipes-bsp/apmd/apmd/unlinux.patch create mode 100644 poky/meta/recipes-bsp/apmd/apmd/wexitcode.patch create mode 100644 poky/meta/recipes-bsp/apmd/apmd_3.2.2-15.bb create mode 100644 poky/meta/recipes-bsp/efibootmgr/efibootmgr/0001-remove-extra-decl.patch create mode 100644 poky/meta/recipes-bsp/efibootmgr/efibootmgr/0001-src-make-compatible-with-efivar-38.patch create mode 100644 poky/meta/recipes-bsp/efibootmgr/efibootmgr/97668ae0bce776a36ea2001dea63d376be8274ac.patch create mode 100644 poky/meta/recipes-bsp/efibootmgr/efibootmgr_17.bb create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0001-Remove-deprecated-add-needed-linker-flag.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0001-docs-do-not-build-efisecdb-manpage.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0001-src-Makefile-build-util.c-separately-for-makeguids.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0002-Add-T-workaround-for-GNU-ld-2.36.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0003-Set-LC_ALL-C-to-force-English-output-from-ld.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0004-LLD-fix-detection-and-remove-not-needed-workarounds.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/0005-Revamp-efi_well_known_-variable-handling.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar/efisecdb-fix-build-with-musl-libc.patch create mode 100644 poky/meta/recipes-bsp/efivar/efivar_38.bb create mode 100755 poky/meta/recipes-bsp/formfactor/files/config create mode 100755 poky/meta/recipes-bsp/formfactor/files/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuarm/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuarmv6/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuarmv7/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemumips/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemumips64/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuppc/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuppc64/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemux86/machconfig create mode 100644 poky/meta/recipes-bsp/formfactor/formfactor_0.0.bb create mode 100644 poky/meta/recipes-bsp/gnu-efi/gnu-efi/gnu-efi-3.0.9-fix-clang-build.patch create mode 100644 poky/meta/recipes-bsp/gnu-efi/gnu-efi/lib-Makefile-fix-parallel-issue.patch create mode 100644 poky/meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make-archives.patch create mode 100644 poky/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.14.bb create mode 100644 poky/meta/recipes-bsp/grub/files/0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch create mode 100644 poky/meta/recipes-bsp/grub/files/0001-RISC-V-Restore-the-typcast-to-long.patch create mode 100644 poky/meta/recipes-bsp/grub/files/0001-configure.ac-Use-_zicsr_zifencei-extentions-on-riscv.patch create mode 100644 poky/meta/recipes-bsp/grub/files/0001-font-Fix-size-overflow-in-grub_font_get_glyph_intern.patch create mode 100644 poky/meta/recipes-bsp/grub/files/0001-grub.d-10_linux.in-add-oe-s-kernel-name.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2021-3695-video-readers-png-Drop-greyscale-support-to-fix-heap.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2021-3696-video-readers-png-Avoid-heap-OOB-R-W-inserting-huff.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2021-3697-video-readers-jpeg-Block-int-underflow-wild-pointer.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2021-3981-grub-mkconfig-Restore-umask-for-the-grub.cfg.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-2601.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-28733-net-ip-Do-IP-fragment-maths-safely.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-28734-net-http-Error-out-on-headers-with-LF-without-CR.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-28734-net-http-Fix-OOB-write-for-split-http-headers.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-28735-kern-efi-sb-Reject-non-kernel-files-in-the-shim_lock.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-28736-loader-efi-chainloader-Use-grub_loader_set_ex.patch create mode 100644 poky/meta/recipes-bsp/grub/files/CVE-2022-3775.patch create mode 100644 poky/meta/recipes-bsp/grub/files/autogen.sh-exclude-pc.patch create mode 100644 poky/meta/recipes-bsp/grub/files/cfg create mode 100644 poky/meta/recipes-bsp/grub/files/commands-boot-Add-API-to-pass-context-to-loader.patch create mode 100644 poky/meta/recipes-bsp/grub/files/determinism.patch create mode 100644 poky/meta/recipes-bsp/grub/files/grub-module-explicitly-keeps-symbole-.module_license.patch create mode 100644 poky/meta/recipes-bsp/grub/files/loader-efi-chainloader-Simplify-the-loader-state.patch create mode 100644 poky/meta/recipes-bsp/grub/files/video-Remove-trailing-whitespaces.patch create mode 100644 poky/meta/recipes-bsp/grub/files/video-readers-jpeg-Abort-sooner-if-a-read-operation-.patch create mode 100644 poky/meta/recipes-bsp/grub/files/video-readers-jpeg-Refuse-to-handle-multiple-start-o.patch create mode 100644 poky/meta/recipes-bsp/grub/grub-bootconf_1.00.bb create mode 100644 poky/meta/recipes-bsp/grub/grub-efi_2.06.bb create mode 100644 poky/meta/recipes-bsp/grub/grub2.inc create mode 100644 poky/meta/recipes-bsp/grub/grub_2.06.bb create mode 100755 poky/meta/recipes-bsp/keymaps/files/keymap.sh create mode 100644 poky/meta/recipes-bsp/keymaps/keymaps_1.0.bb create mode 100644 poky/meta/recipes-bsp/libacpi/files/0001-libacpi-Fix-build-witth-fno-commom.patch create mode 100644 poky/meta/recipes-bsp/libacpi/files/ldflags.patch create mode 100644 poky/meta/recipes-bsp/libacpi/files/libacpi_fix_for_x32.patch create mode 100644 poky/meta/recipes-bsp/libacpi/files/makefile-fix.patch create mode 100644 poky/meta/recipes-bsp/libacpi/files/use_correct_strip_in_cross_environment.patch create mode 100644 poky/meta/recipes-bsp/libacpi/libacpi_0.2.bb create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/0001-Fix-cross-compilation-using-autoconf-detected-AR.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/autotools-update.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/autotools.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/cve-2018-10195.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/include.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz-check-locale.h.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/makefile.patch create mode 100644 poky/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb create mode 100644 poky/meta/recipes-bsp/opensbi/opensbi-payloads.inc create mode 100644 poky/meta/recipes-bsp/opensbi/opensbi_1.0.bb create mode 100644 poky/meta/recipes-bsp/pciutils/pciutils/configure.patch create mode 100644 poky/meta/recipes-bsp/pciutils/pciutils_3.7.0.bb create mode 100644 poky/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb create mode 100644 poky/meta/recipes-bsp/setserial/setserial/add_stdlib.patch create mode 100644 poky/meta/recipes-bsp/setserial/setserial/ldflags.patch create mode 100644 poky/meta/recipes-bsp/setserial/setserial_2.17.bb create mode 100644 poky/meta/recipes-bsp/u-boot/files/0001-fs-squashfs-Use-kcalloc-when-relevant.patch create mode 100644 poky/meta/recipes-bsp/u-boot/files/0001-fs-squashfs-sqfs_read-Prevent-arbitrary-code-executi.patch create mode 100644 poky/meta/recipes-bsp/u-boot/files/0001-i2c-fix-stack-buffer-overflow-vulnerability-in-i2c-m.patch create mode 100644 poky/meta/recipes-bsp/u-boot/files/0001-net-Check-for-the-minimum-IP-fragmented-datagram-siz.patch create mode 100644 poky/meta/recipes-bsp/u-boot/files/0001-riscv-fix-build-with-binutils-2.38.patch create mode 100644 poky/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch create mode 100644 poky/meta/recipes-bsp/u-boot/libubootenv_0.3.2.bb create mode 100644 poky/meta/recipes-bsp/u-boot/u-boot-common.inc create mode 100644 poky/meta/recipes-bsp/u-boot/u-boot-configure.inc create mode 100644 poky/meta/recipes-bsp/u-boot/u-boot-tools.inc create mode 100644 poky/meta/recipes-bsp/u-boot/u-boot-tools_2022.01.bb create mode 100644 poky/meta/recipes-bsp/u-boot/u-boot.inc create mode 100644 poky/meta/recipes-bsp/u-boot/u-boot_2022.01.bb create mode 100644 poky/meta/recipes-bsp/usbinit/usbinit.bb create mode 100644 poky/meta/recipes-bsp/usbinit/usbinit/COPYING.GPL create mode 100755 poky/meta/recipes-bsp/usbinit/usbinit/usb-gether create mode 100644 poky/meta/recipes-bsp/usbutils/usbutils_014.bb create mode 100644 poky/meta/recipes-bsp/v86d/v86d/Support-for-cross-compilation.patch create mode 100644 poky/meta/recipes-bsp/v86d/v86d/Update-x86emu-from-X.org.patch create mode 100644 poky/meta/recipes-bsp/v86d/v86d/ar-from-env.patch create mode 100644 poky/meta/recipes-bsp/v86d/v86d_0.1.10.bb create mode 100644 poky/meta/recipes-connectivity/avahi/avahi_0.8.bb create mode 100644 poky/meta/recipes-connectivity/avahi/files/0001-Fix-opening-etc-resolv.conf-error.patch create mode 100644 poky/meta/recipes-connectivity/avahi/files/00avahi-autoipd create mode 100644 poky/meta/recipes-connectivity/avahi/files/99avahi-autoipd create mode 100644 poky/meta/recipes-connectivity/avahi/files/handle-hup.patch create mode 100644 poky/meta/recipes-connectivity/avahi/files/initscript.patch create mode 100644 poky/meta/recipes-connectivity/avahi/files/local-ping.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/0001-avoid-start-failure-with-bind-user.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/0001-named-lwresd-V-and-start-log-hide-build-options.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/bind-ensure-searching-for-json-headers-searches-sysr.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/bind9 create mode 100644 poky/meta/recipes-connectivity/bind/bind/conf.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/generate-rndc-key.sh create mode 100644 poky/meta/recipes-connectivity/bind/bind/init.d-add-support-for-read-only-rootfs.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/make-etc-initd-bind-stop-work.patch create mode 100644 poky/meta/recipes-connectivity/bind/bind/named.service create mode 100644 poky/meta/recipes-connectivity/bind/bind_9.18.19.bb create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5.inc create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5/0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5/0001-test-gatt-Fix-hung-issue.patch create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5/init create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5/run-ptest create mode 100644 poky/meta/recipes-connectivity/bluez5/bluez5_5.65.bb create mode 100644 poky/meta/recipes-connectivity/connman/connman-conf.bb create mode 100644 poky/meta/recipes-connectivity/connman/connman-conf/main.conf create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/0001-Port-to-Gtk3.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/0001-Removed-icon-from-connman-gnome-about-applet.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/connman-gnome-fix-dbus-interface-name.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/images/connman-signal-01.png create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/images/connman-signal-02.png create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/images/connman-signal-03.png create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/images/connman-signal-04.png create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/images/connman-signal-05.png create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome/null_check_for_ipv4_config.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman-gnome_0.7.bb create mode 100644 poky/meta/recipes-connectivity/connman/connman.inc create mode 100644 poky/meta/recipes-connectivity/connman/connman/0001-connman.service-stop-systemd-resolved-when-we-use-co.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/0002-resolve-musl-does-not-implement-res_ninit.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/CVE-2022-32292.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/CVE-2022-32293_p1.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/CVE-2022-32293_p2.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/CVE-2023-28488.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman/connman create mode 100644 poky/meta/recipes-connectivity/connman/connman/no-version-scripts.patch create mode 100644 poky/meta/recipes-connectivity/connman/connman_1.41.bb create mode 100644 poky/meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.1.bb create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/0001-20-resolv.conf-improve-the-sitation-of-working-with-.patch create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/0001-privsep-Allow-getrandom-sysctl-for-newer-glibc.patch create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/0001-privsep-linux-fix-SECCOMP_AUDIT_ARCH-missing-ppc64le.patch create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/0002-privsep-Allow-newfstatat-syscall-as-well.patch create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/dhcpcd.service create mode 100644 poky/meta/recipes-connectivity/dhcpcd/files/dhcpcd@.service create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/0001-CVE-2023-40303-ftpd-rcp-rlogin-rsh-rshd-uucpd-fix-ch.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/0001-ftpd-telnetd-Fix-multiple-definitions-of-errcatch-an.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/0002-CVE-2023-40303-Indent-changes-in-previous-commit.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/CVE-2022-39028.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/fix-buffer-fortify-tfpt.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/fix-disable-ipv6.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/inetutils-1.8-0001-printf-parse-pull-in-features.h-for-__GLIBC__.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/inetutils-1.8-0003-wchar.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/inetutils-1.9-PATH_PROCNET_DEV.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/inetutils-only-check-pam_appl.h-when-pam-enabled.patch create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/rexec.xinetd.inetutils create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/rlogin.xinetd.inetutils create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/rsh.xinetd.inetutils create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/telnet.xinetd.inetutils create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils/tftpd.xinetd.inetutils create mode 100644 poky/meta/recipes-connectivity/inetutils/inetutils_2.2.bb create mode 100644 poky/meta/recipes-connectivity/iproute2/iproute2.inc create mode 100644 poky/meta/recipes-connectivity/iproute2/iproute2/0001-libc-compat.h-add-musl-workaround.patch create mode 100644 poky/meta/recipes-connectivity/iproute2/iproute2_5.17.0.bb create mode 100644 poky/meta/recipes-connectivity/iw/iw/0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch create mode 100644 poky/meta/recipes-connectivity/iw/iw/separate-objdir.patch create mode 100644 poky/meta/recipes-connectivity/iw/iw_5.16.bb create mode 100644 poky/meta/recipes-connectivity/kea/files/0001-src-lib-log-logger_unittest_support.cc-do-not-write-.patch create mode 100644 poky/meta/recipes-connectivity/kea/files/fix-multilib-conflict.patch create mode 100644 poky/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch create mode 100644 poky/meta/recipes-connectivity/kea/files/kea-dhcp-ddns-server create mode 100644 poky/meta/recipes-connectivity/kea/files/kea-dhcp-ddns.service create mode 100644 poky/meta/recipes-connectivity/kea/files/kea-dhcp4-server create mode 100644 poky/meta/recipes-connectivity/kea/files/kea-dhcp4.service create mode 100644 poky/meta/recipes-connectivity/kea/files/kea-dhcp6-server create mode 100644 poky/meta/recipes-connectivity/kea/files/kea-dhcp6.service create mode 100644 poky/meta/recipes-connectivity/kea/kea_2.0.2.bb create mode 100644 poky/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.15.1.bb create mode 100644 poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb create mode 100644 poky/meta/recipes-connectivity/libuv/libuv_1.44.2.bb create mode 100644 poky/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info_git.bb create mode 100644 poky/meta/recipes-connectivity/neard/neard/0001-Add-header-dependency-to-nciattach.o.patch create mode 100644 poky/meta/recipes-connectivity/neard/neard/Makefile.am-do-not-ship-version.h.patch create mode 100644 poky/meta/recipes-connectivity/neard/neard/Makefile.am-fix-parallel-issue.patch create mode 100644 poky/meta/recipes-connectivity/neard/neard/neard.in create mode 100644 poky/meta/recipes-connectivity/neard/neard_0.16.bb create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/bugfix-adjust-statd-service-name.patch create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/clang-warnings.patch create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfs-mountd.service create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfs-server.service create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfs-statd.service create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfs-utils-debianize-start-statd.patch create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfs-utils.conf create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfscommon create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils/proc-fs-nfsd.mount create mode 100644 poky/meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.1.bb create mode 100644 poky/meta/recipes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch create mode 100644 poky/meta/recipes-connectivity/ofono/ofono/0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch create mode 100644 poky/meta/recipes-connectivity/ofono/ofono/ofono create mode 100644 poky/meta/recipes-connectivity/ofono/ofono_1.34.bb create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/0001-Default-to-not-using-sandbox-when-cross-compiling.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/0001-upstream-include-destination-constraints-for-smartca.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/7280401bdd77ca54be6867a154cc01e0d72612e0.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/CVE-2023-38408-0001.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/CVE-2023-38408-0002.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/CVE-2023-38408-0003.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/CVE-2023-38408-0004.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/add-test-support-for-busybox.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/f107467179428a0e3ea9e4aa9738ac12ff02822d.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/fix-potential-signed-overflow-in-pointer-arithmatic.patch create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/init create mode 100755 poky/meta/recipes-connectivity/openssh/openssh/run-ptest create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/ssh_config create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/sshd create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/sshd.socket create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/sshd@.service create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/sshd_check_keys create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/sshd_config create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/sshdgenkeys.service create mode 100644 poky/meta/recipes-connectivity/openssh/openssh/volatiles.99_sshd create mode 100644 poky/meta/recipes-connectivity/openssh/openssh_8.9p1.bb create mode 100644 poky/meta/recipes-connectivity/openssl/files/environment.d-openssl.sh create mode 100644 poky/meta/recipes-connectivity/openssl/openssl/0001-Configure-do-not-tweak-mips-cflags.patch create mode 100644 poky/meta/recipes-connectivity/openssl/openssl/0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch create mode 100644 poky/meta/recipes-connectivity/openssl/openssl/afalg.patch create mode 100644 poky/meta/recipes-connectivity/openssl/openssl/run-ptest create mode 100644 poky/meta/recipes-connectivity/openssl/openssl_3.0.11.bb create mode 100644 poky/meta/recipes-connectivity/ppp-dialin/files/host-peer create mode 100644 poky/meta/recipes-connectivity/ppp-dialin/files/ppp-dialin create mode 100644 poky/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/0001-ppp-fix-build-against-5.15-headers.patch create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/08setupdns create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/92removedns create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/CVE-2022-4603.patch create mode 100755 poky/meta/recipes-connectivity/ppp/ppp/init create mode 100755 poky/meta/recipes-connectivity/ppp/ppp/ip-down create mode 100755 poky/meta/recipes-connectivity/ppp/ppp/ip-up create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/makefix.patch create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/pap create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/poff create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/pon create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/ppp@.service create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/ppp_on_boot create mode 100644 poky/meta/recipes-connectivity/ppp/ppp/provider create mode 100644 poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb create mode 100644 poky/meta/recipes-connectivity/resolvconf/resolvconf/0001-avoid-using-m-option-for-readlink.patch create mode 100644 poky/meta/recipes-connectivity/resolvconf/resolvconf/99_resolvconf create mode 100644 poky/meta/recipes-connectivity/resolvconf/resolvconf_1.91.bb create mode 100644 poky/meta/recipes-connectivity/socat/socat_1.7.4.4.bb create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/dropbear_rsa_host_key create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/openssh/ssh_host_ecdsa_key create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/openssh/ssh_host_ecdsa_key.pub create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/openssh/ssh_host_ed25519_key create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/openssh/ssh_host_ed25519_key.pub create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/openssh/ssh_host_rsa_key create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys/openssh/ssh_host_rsa_key.pub create mode 100644 poky/meta/recipes-connectivity/ssh-pregen-hostkeys/ssh-pregen-hostkeys_1.0.bb create mode 100644 poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/99_wpa_supplicant create mode 100644 poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/defconfig create mode 100644 poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/wpa-supplicant.sh create mode 100644 poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/wpa_supplicant.conf create mode 100644 poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/wpa_supplicant.conf-sane create mode 100644 poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.10.bb create mode 100644 poky/meta/recipes-core/base-files/base-files/fstab create mode 100644 poky/meta/recipes-core/base-files/base-files/host.conf create mode 100644 poky/meta/recipes-core/base-files/base-files/hosts create mode 100644 poky/meta/recipes-core/base-files/base-files/issue create mode 100644 poky/meta/recipes-core/base-files/base-files/issue.net create mode 100644 poky/meta/recipes-core/base-files/base-files/licenses/GPL-2 create mode 100644 poky/meta/recipes-core/base-files/base-files/motd create mode 100644 poky/meta/recipes-core/base-files/base-files/nsswitch.conf create mode 100644 poky/meta/recipes-core/base-files/base-files/profile create mode 100644 poky/meta/recipes-core/base-files/base-files/rotation create mode 100644 poky/meta/recipes-core/base-files/base-files/share/dot.bashrc create mode 100644 poky/meta/recipes-core/base-files/base-files/share/dot.profile create mode 100644 poky/meta/recipes-core/base-files/base-files/shells create mode 100644 poky/meta/recipes-core/base-files/base-files_3.0.14.bb create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/add_shutdown.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/disable-docs.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/disable-shell.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/input.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/kvm.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/nobash.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd/noshadow.patch create mode 100644 poky/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb create mode 100644 poky/meta/recipes-core/busybox/busybox-inittab_1.35.0.bb create mode 100644 poky/meta/recipes-core/busybox/busybox.inc create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-depmod-Ignore-.debug-directories.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-devmem-add-128-bit-width.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-du-l-works-fix-to-use-145-instead-of-144.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-sysctl-ignore-EIO-of-stable_secret-below-proc-sys-ne.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-testsuite-check-uudecode-before-using-it.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0001-testsuite-use-www.example.org-for-wget-test-cases.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/CVE-2022-30065.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/CVE-2022-48174.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/busybox-cross-menuconfig.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/busybox-udhcpc-no_deconfig.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/defconfig create mode 100644 poky/meta/recipes-core/busybox/busybox/fail_on_no_media.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/getopts.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/init.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/login-utilities.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/longopts.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/makefile-libbb-race.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/mdev.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/mount-via-label.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/musl.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/pgrep.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/recognize_connmand.patch create mode 100644 poky/meta/recipes-core/busybox/busybox/resize.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/rev.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/sha1sum.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/sha256sum.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/syslog.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox/unicode.cfg create mode 100644 poky/meta/recipes-core/busybox/busybox_1.35.0.bb create mode 100755 poky/meta/recipes-core/busybox/files/busybox-cron create mode 100755 poky/meta/recipes-core/busybox/files/busybox-httpd create mode 100644 poky/meta/recipes-core/busybox/files/busybox-klogd.service.in create mode 100644 poky/meta/recipes-core/busybox/files/busybox-syslog.default create mode 100644 poky/meta/recipes-core/busybox/files/busybox-syslog.service.in create mode 100755 poky/meta/recipes-core/busybox/files/busybox-udhcpd create mode 100644 poky/meta/recipes-core/busybox/files/default.script create mode 100644 poky/meta/recipes-core/busybox/files/find-touchscreen.sh create mode 100644 poky/meta/recipes-core/busybox/files/hwclock.sh create mode 100644 poky/meta/recipes-core/busybox/files/inetd create mode 100644 poky/meta/recipes-core/busybox/files/inetd.conf create mode 100644 poky/meta/recipes-core/busybox/files/inittab create mode 100755 poky/meta/recipes-core/busybox/files/mdev create mode 100644 poky/meta/recipes-core/busybox/files/mdev-mount.sh create mode 100644 poky/meta/recipes-core/busybox/files/mdev.conf create mode 100644 poky/meta/recipes-core/busybox/files/rcK create mode 100644 poky/meta/recipes-core/busybox/files/rcS create mode 100644 poky/meta/recipes-core/busybox/files/rcS.default create mode 100644 poky/meta/recipes-core/busybox/files/run-ptest create mode 100644 poky/meta/recipes-core/busybox/files/simple.script create mode 100644 poky/meta/recipes-core/busybox/files/syslog create mode 100644 poky/meta/recipes-core/busybox/files/syslog-startup.conf create mode 100644 poky/meta/recipes-core/busybox/files/syslog.conf create mode 100644 poky/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch create mode 100644 poky/meta/recipes-core/coreutils/coreutils/0001-uname-report-processor-and-hardware-correctly.patch create mode 100644 poky/meta/recipes-core/coreutils/coreutils/e8b56ebd536e82b15542a00c888109471936bfda.patch create mode 100644 poky/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch create mode 100644 poky/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-from-m4.patch create mode 100755 poky/meta/recipes-core/coreutils/coreutils/run-ptest create mode 100644 poky/meta/recipes-core/coreutils/coreutils_9.0.bb create mode 100644 poky/meta/recipes-core/dbus-wait/dbus-wait_git.bb create mode 100644 poky/meta/recipes-core/dbus/dbus-glib/no-examples.patch create mode 100644 poky/meta/recipes-core/dbus/dbus-glib/test-install-makefile.patch create mode 100644 poky/meta/recipes-core/dbus/dbus-glib_0.112.bb create mode 100644 poky/meta/recipes-core/dbus/dbus/dbus-1.init create mode 100755 poky/meta/recipes-core/dbus/dbus/run-ptest create mode 100644 poky/meta/recipes-core/dbus/dbus/tmpdir.patch create mode 100644 poky/meta/recipes-core/dbus/dbus_1.14.8.bb create mode 100644 poky/meta/recipes-core/dropbear/dropbear.inc create mode 100644 poky/meta/recipes-core/dropbear/dropbear/0001-urandom-xauth-changes-to-options.h.patch create mode 100644 poky/meta/recipes-core/dropbear/dropbear/0005-dropbear-enable-pam.patch create mode 100644 poky/meta/recipes-core/dropbear/dropbear/0006-dropbear-configuration-file.patch create mode 100644 poky/meta/recipes-core/dropbear/dropbear/CVE-2021-36369.patch create mode 100644 poky/meta/recipes-core/dropbear/dropbear/CVE-2023-36328.patch create mode 100644 poky/meta/recipes-core/dropbear/dropbear/dropbear create mode 100644 poky/meta/recipes-core/dropbear/dropbear/dropbear-disable-weak-ciphers.patch create mode 100644 poky/meta/recipes-core/dropbear/dropbear/dropbear.default create mode 100644 poky/meta/recipes-core/dropbear/dropbear/dropbear.socket create mode 100644 poky/meta/recipes-core/dropbear/dropbear/dropbear@.service create mode 100644 poky/meta/recipes-core/dropbear/dropbear/dropbearkey.service create mode 100755 poky/meta/recipes-core/dropbear/dropbear/init create mode 100644 poky/meta/recipes-core/dropbear/dropbear_2020.81.bb create mode 100644 poky/meta/recipes-core/ell/ell_0.50.bb create mode 100644 poky/meta/recipes-core/expat/expat/run-ptest create mode 100644 poky/meta/recipes-core/expat/expat_2.5.0.bb create mode 100644 poky/meta/recipes-core/fts/fts_1.2.7.bb create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/0001-init-env.in-do-not-add-C-CXX-parameters.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/0001-libtextstyle-fix-builds-with-automake-1.16.4-and-new.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/0001-msgmerge-29-Add-executable-file-mode-bits.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/0001-tests-autopoint-3-unset-MAKEFLAGS.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/mingw.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/parallel.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/run-ptest create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/serial-tests-config.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-0.21/use-pkgconfig.patch create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/COPYING create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/Makefile.in.in create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/gettext.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/host-cpu-c-abi.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/iconv.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/intlmacosx.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/lib-ld.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/lib-link.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/lib-prefix.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/nls.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/po.m4 create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/progtest.m4 create mode 100755 poky/meta/recipes-core/gettext/gettext-minimal-0.21/config.rpath create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-0.21/remove-potcdate.sin create mode 100644 poky/meta/recipes-core/gettext/gettext-minimal-native_0.21.bb create mode 100644 poky/meta/recipes-core/gettext/gettext_0.21.bb create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-ignore-return-value-of-write.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-write-bindir-into-pkg-config-files.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-Install-gio-querymodules-as-libexec_PROGRAM.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-Set-host_machine-correctly-when-building-with-mingw3.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-gio-tests-g-file-info-don-t-assume-million-in-one-ev.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0001-meson-Run-atomics-test-on-clang-as-well.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/0010-Do-not-hardcode-python-path-into-various-tools.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-29499.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32611-0001.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32611-0002.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32636.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32643.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0001.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0002.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0003.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0004.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0005.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0006.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0007.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0008.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/CVE-2023-32665-0009.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/meson.cross.d/common create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/meson.cross.d/common-glibc create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/meson.cross.d/common-linux create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/meson.cross.d/common-mingw create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/meson.cross.d/common-musl create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/relocate-modules.patch create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0/run-ptest create mode 100644 poky/meta/recipes-core/glib-2.0/glib-2.0_2.72.3.bb create mode 100644 poky/meta/recipes-core/glib-2.0/glib.inc create mode 100644 poky/meta/recipes-core/glib-networking/glib-networking/run-ptest create mode 100644 poky/meta/recipes-core/glib-networking/glib-networking_2.72.2.bb create mode 100644 poky/meta/recipes-core/glibc/cross-localedef-native_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/glibc-collateral.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-common.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-ld.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-locale.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-locale_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/glibc-mtrace.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-mtrace_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/glibc-package.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-scripts.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-scripts_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/glibc-tests.inc create mode 100644 poky/meta/recipes-core/glibc/glibc-tests_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/glibc-testsuite_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/glibc-version.inc create mode 100644 poky/meta/recipes-core/glibc/glibc.inc create mode 100644 poky/meta/recipes-core/glibc/glibc/0001-Revert-Linux-Implement-a-useful-version-of-_startup_.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0001-localedef-Add-hardlink-resolver-from-util-linux.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0002-localedef-fix-ups-hardlink-to-make-it-compile.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0003-nativesdk-glibc-Look-for-host-system-ld.so.cache-as-.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0004-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0005-nativesdk-glibc-Raise-the-size-of-arrays-containing-.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0006-nativesdk-glibc-Allow-64-bit-atomics-for-x86.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0007-nativesdk-glibc-Make-relocatable-install-for-locales.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0008-nativesdk-glibc-Fall-back-to-faccessat-on-faccess2-r.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0009-yes-within-the-path-sets-wrong-config-variables.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0010-eglibc-Cross-building-and-testing-instructions.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0011-eglibc-Help-bootstrap-cross-toolchain.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0012-eglibc-Resolve-__fpscr_values-on-SH4.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0013-eglibc-Forward-port-cross-locale-generation-support.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0014-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0016-locale-prevent-maybe-uninitialized-errors-with-Os-BZ.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0017-readlib-Add-OECORE_KNOWN_INTERPRETER_NAMES-to-known-.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0018-wordsize.h-Unify-the-header-between-arm-and-aarch64.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0019-powerpc-Do-not-ask-compiler-for-finding-arch.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0021-Replace-echo-with-printf-builtin-in-nscd-init-script.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0022-sysdeps-gnu-configure.ac-Set-libc_cv_rootsbindir-onl.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0023-timezone-Make-shell-interpreter-overridable-in-tzsel.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/0024-fix-create-thread-failed-in-unprivileged-process-BZ-.patch create mode 100644 poky/meta/recipes-core/glibc/glibc/check-test-wrapper create mode 100644 poky/meta/recipes-core/glibc/glibc/etc/ld.so.conf create mode 100644 poky/meta/recipes-core/glibc/glibc/generate-supported.mk create mode 100755 poky/meta/recipes-core/glibc/glibc/makedbs.sh create mode 100644 poky/meta/recipes-core/glibc/glibc/reproducible-paths.patch create mode 100755 poky/meta/recipes-core/glibc/glibc/run-ptest create mode 100644 poky/meta/recipes-core/glibc/glibc_2.35.bb create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/32and64bit.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/README create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/add-64-bit-flag-for-ELF64-entries.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/add-riscv-support.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/endian-ness_handling.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/endian-ness_handling_fix.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/endianess-header.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/flag_fix.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-default-to-all-multilib-dirs.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-native-2.12.1.tar.bz2 create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig_aux-cache_path_fix.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/no-aux-cache.patch create mode 100644 poky/meta/recipes-core/glibc/ldconfig-native_2.12.1.bb create mode 100644 poky/meta/recipes-core/ifupdown/files/0001-Define-FNM_EXTMATCH-for-musl.patch create mode 100644 poky/meta/recipes-core/ifupdown/files/0001-Makefile-do-not-use-dpkg-for-determining-OS-type.patch create mode 100644 poky/meta/recipes-core/ifupdown/files/0001-ifupdown-skip-wrong-test-case.patch create mode 100644 poky/meta/recipes-core/ifupdown/files/99_network create mode 100644 poky/meta/recipes-core/ifupdown/files/defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch create mode 100644 poky/meta/recipes-core/ifupdown/files/run-ptest create mode 100644 poky/meta/recipes-core/ifupdown/files/tweak-ptest-script.patch create mode 100644 poky/meta/recipes-core/ifupdown/ifupdown_0.8.39.bb create mode 100644 poky/meta/recipes-core/images/build-appliance-image/README_VirtualBox_Guest_Additions.txt create mode 100644 poky/meta/recipes-core/images/build-appliance-image/README_VirtualBox_Toaster.txt create mode 100644 poky/meta/recipes-core/images/build-appliance-image/Yocto_Build_Appliance.vmx create mode 100644 poky/meta/recipes-core/images/build-appliance-image/Yocto_Build_Appliance.vmxf create mode 100644 poky/meta/recipes-core/images/build-appliance-image_15.0.0.bb create mode 100644 poky/meta/recipes-core/images/core-image-base.bb create mode 100644 poky/meta/recipes-core/images/core-image-minimal-dev.bb create mode 100644 poky/meta/recipes-core/images/core-image-minimal-initramfs.bb create mode 100644 poky/meta/recipes-core/images/core-image-minimal-mtdutils.bb create mode 100644 poky/meta/recipes-core/images/core-image-minimal.bb create mode 100644 poky/meta/recipes-core/images/core-image-ptest-all.bb create mode 100644 poky/meta/recipes-core/images/core-image-ptest-fast.bb create mode 100644 poky/meta/recipes-core/images/core-image-tiny-initramfs.bb create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/copyright create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/init create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/interfaces create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/nfsroot create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/qemuall/interfaces create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/files/init-boot.sh create mode 100644 poky/meta/recipes-core/initrdscripts/files/init-install-efi-testfs.sh create mode 100644 poky/meta/recipes-core/initrdscripts/files/init-install-efi.sh create mode 100644 poky/meta/recipes-core/initrdscripts/files/init-install-testfs.sh create mode 100644 poky/meta/recipes-core/initrdscripts/files/init-install.sh create mode 100755 poky/meta/recipes-core/initrdscripts/files/init-live.sh create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/debug create mode 100755 poky/meta/recipes-core/initrdscripts/initramfs-framework/e2fs create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/exec create mode 100755 poky/meta/recipes-core/initrdscripts/initramfs-framework/finish create mode 100755 poky/meta/recipes-core/initrdscripts/initramfs-framework/init create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/lvm create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/mdev create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/nfsrootfs create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/overlayroot create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/rootfs create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/setup-live create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework/udev create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-live-install-efi-testfs_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-live-install-testfs_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb create mode 100644 poky/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb create mode 100644 poky/meta/recipes-core/initscripts/init-system-helpers_1.62.bb create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/alignment.sh create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/banner.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/checkfs.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/devpts create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/devpts.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/dmesg.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/functions create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/halt create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/logrotate-dmesg.conf create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/mountall.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/read-only-rootfs-hook.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/reboot create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/rmnologin.sh create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/save-rtc.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/sendsigs create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/single create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/sushell create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/sysfs.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/umountfs create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/umountnfs.sh create mode 100755 poky/meta/recipes-core/initscripts/initscripts-1.0/urandom create mode 100644 poky/meta/recipes-core/initscripts/initscripts-1.0/volatiles create mode 100644 poky/meta/recipes-core/initscripts/initscripts_1.0.bb create mode 100644 poky/meta/recipes-core/kbd/kbd_2.4.0.bb create mode 100644 poky/meta/recipes-core/libcgroup/libcgroup_2.0.2.bb create mode 100644 poky/meta/recipes-core/libxcrypt/files/0001-Make-BuildCommon.pm-compatible-with-latest-perl.patch create mode 100644 poky/meta/recipes-core/libxcrypt/files/0002-Remove-smartmatch-usage-from-gen-crypt-h.patch create mode 100644 poky/meta/recipes-core/libxcrypt/files/fix_cflags_handling.patch create mode 100644 poky/meta/recipes-core/libxcrypt/libxcrypt-compat_4.4.33.bb create mode 100644 poky/meta/recipes-core/libxcrypt/libxcrypt.inc create mode 100644 poky/meta/recipes-core/libxcrypt/libxcrypt_4.4.33.bb create mode 100644 poky/meta/recipes-core/libxml/libxml2/0001-Make-ptest-run-the-python-tests-if-python-is-enabled.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/0001-Port-gentest.py-to-Python-3.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/CVE-2022-40303.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/CVE-2022-40304.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/CVE-2023-28484.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/CVE-2023-29469.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/CVE-2023-39615-0001.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/CVE-2023-39615-0002.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/fix-execution-of-ptests.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/libxml-64bit.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/python-sitepackages-dir.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/remove-fuzz-from-ptests.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2/run-ptest create mode 100644 poky/meta/recipes-core/libxml/libxml2/runtest.patch create mode 100644 poky/meta/recipes-core/libxml/libxml2_2.9.14.bb create mode 100644 poky/meta/recipes-core/meta/build-sysroots.bb create mode 100644 poky/meta/recipes-core/meta/buildtools-docs-tarball.bb create mode 100644 poky/meta/recipes-core/meta/buildtools-extended-tarball.bb create mode 100644 poky/meta/recipes-core/meta/buildtools-tarball.bb create mode 100644 poky/meta/recipes-core/meta/cve-update-db-native.bb create mode 100644 poky/meta/recipes-core/meta/cve-update-nvd2-native.bb create mode 100644 poky/meta/recipes-core/meta/dummy-sdk-package.inc create mode 100644 poky/meta/recipes-core/meta/meta-environment-extsdk.bb create mode 100644 poky/meta/recipes-core/meta/meta-environment.bb create mode 100644 poky/meta/recipes-core/meta/meta-extsdk-toolchain.bb create mode 100644 poky/meta/recipes-core/meta/meta-go-toolchain.bb create mode 100644 poky/meta/recipes-core/meta/meta-ide-support.bb create mode 100644 poky/meta/recipes-core/meta/meta-toolchain.bb create mode 100644 poky/meta/recipes-core/meta/meta-world-pkgdata.bb create mode 100644 poky/meta/recipes-core/meta/nativesdk-buildtools-perl-dummy.bb create mode 100644 poky/meta/recipes-core/meta/nativesdk-sdk-provides-dummy.bb create mode 100644 poky/meta/recipes-core/meta/package-index.bb create mode 100644 poky/meta/recipes-core/meta/signing-keys.bb create mode 100644 poky/meta/recipes-core/meta/target-sdk-provides-dummy.bb create mode 100644 poky/meta/recipes-core/meta/testexport-tarball.bb create mode 100644 poky/meta/recipes-core/meta/uninative-tarball.bb create mode 100644 poky/meta/recipes-core/meta/wic-tools.bb create mode 100644 poky/meta/recipes-core/musl/bsd-headers.bb create mode 100644 poky/meta/recipes-core/musl/bsd-headers/sys-cdefs.h create mode 100644 poky/meta/recipes-core/musl/bsd-headers/sys-queue.h create mode 100644 poky/meta/recipes-core/musl/bsd-headers/sys-tree.h create mode 100644 poky/meta/recipes-core/musl/gcompat/0001-make-Static-PIE-does-not-work-on-musl-ppc.patch create mode 100644 poky/meta/recipes-core/musl/gcompat_git.bb create mode 100644 poky/meta/recipes-core/musl/libssp-nonshared.bb create mode 100644 poky/meta/recipes-core/musl/libssp-nonshared/stack_chk.c create mode 100644 poky/meta/recipes-core/musl/libucontext_1.2.bb create mode 100644 poky/meta/recipes-core/musl/musl-obstack.bb create mode 100644 poky/meta/recipes-core/musl/musl-utils.bb create mode 100644 poky/meta/recipes-core/musl/musl.inc create mode 100644 poky/meta/recipes-core/musl/musl/0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch create mode 100644 poky/meta/recipes-core/musl/musl/0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch create mode 100644 poky/meta/recipes-core/musl/musl_git.bb create mode 100644 poky/meta/recipes-core/ncurses/files/0001-tic-hang.patch create mode 100644 poky/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch create mode 100644 poky/meta/recipes-core/ncurses/files/0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch create mode 100644 poky/meta/recipes-core/ncurses/files/CVE-2023-29491.patch create mode 100644 poky/meta/recipes-core/ncurses/ncurses.inc create mode 100644 poky/meta/recipes-core/ncurses/ncurses_6.3+20220423.bb create mode 100644 poky/meta/recipes-core/ncurses/site_config/headers create mode 100644 poky/meta/recipes-core/netbase/netbase_6.3.bb create mode 100644 poky/meta/recipes-core/newlib/libgloss/fix-rs6000-crt0.patch create mode 100644 poky/meta/recipes-core/newlib/libgloss/fix_makefile_include_arm_h.patch create mode 100644 poky/meta/recipes-core/newlib/libgloss_4.2.0.bb create mode 100644 poky/meta/recipes-core/newlib/newlib.inc create mode 100644 poky/meta/recipes-core/newlib/newlib_4.2.0.bb create mode 100644 poky/meta/recipes-core/os-release/os-release.bb create mode 100644 poky/meta/recipes-core/ovmf/ovmf-shell-image.bb create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0001-BaseTools-fix-gcc12-warning-1.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0001-BaseTools-fix-gcc12-warning.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0001-ovmf-update-path-to-native-BaseTools.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0002-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0003-ovmf-Update-to-latest.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0005-debug-prefix-map.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/0006-reproducible.patch create mode 100644 poky/meta/recipes-core/ovmf/ovmf/ovmf-shell-image.wks create mode 100644 poky/meta/recipes-core/ovmf/ovmf_git.bb create mode 100644 poky/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-base.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-boot.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-buildessential.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-nfs.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-ssh-openssh.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-standalone-sdk-target.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-tools-debug.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-cross-canadian.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-go-cross-canadian.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-go-sdk-target.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-rust-cross-canadian.bb create mode 100644 poky/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb create mode 100755 poky/meta/recipes-core/psplash/files/psplash-init create mode 100644 poky/meta/recipes-core/psplash/files/psplash-poky-img.h create mode 100644 poky/meta/recipes-core/psplash/files/psplash-start.service create mode 100644 poky/meta/recipes-core/psplash/files/psplash-systemd.service create mode 100644 poky/meta/recipes-core/psplash/psplash_git.bb create mode 100644 poky/meta/recipes-core/readline/files/inputrc create mode 100644 poky/meta/recipes-core/readline/files/rl-native.map create mode 100644 poky/meta/recipes-core/readline/readline.inc create mode 100644 poky/meta/recipes-core/readline/readline/configure-fix.patch create mode 100644 poky/meta/recipes-core/readline/readline/norpath.patch create mode 100644 poky/meta/recipes-core/readline/readline_8.1.2.bb create mode 100644 poky/meta/recipes-core/seatd/seatd/init create mode 100644 poky/meta/recipes-core/seatd/seatd_0.6.4.bb create mode 100644 poky/meta/recipes-core/sysfsutils/sysfsutils-2.1.0/obsolete_automake_macros.patch create mode 100644 poky/meta/recipes-core/sysfsutils/sysfsutils-2.1.0/separatebuild.patch create mode 100644 poky/meta/recipes-core/sysfsutils/sysfsutils-2.1.0/sysfsutils-2.0.0-class-dup.patch create mode 100644 poky/meta/recipes-core/sysfsutils/sysfsutils_2.1.0.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-boot_250.5.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-bootconf_1.00.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-compat-units.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-conf/journald.conf create mode 100644 poky/meta/recipes-core/systemd/systemd-conf/logind.conf create mode 100644 poky/meta/recipes-core/systemd/systemd-conf/system.conf create mode 100644 poky/meta/recipes-core/systemd/systemd-conf/system.conf-qemuall create mode 100644 poky/meta/recipes-core/systemd/systemd-conf/wired.network create mode 100644 poky/meta/recipes-core/systemd/systemd-conf_1.0.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-machine-units_1.0.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-serialgetty.bb create mode 100644 poky/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service create mode 100644 poky/meta/recipes-core/systemd/systemd-systemctl-native.bb create mode 100755 poky/meta/recipes-core/systemd/systemd-systemctl/systemctl create mode 100644 poky/meta/recipes-core/systemd/systemd.inc create mode 100644 poky/meta/recipes-core/systemd/systemd/00-create-volatile.conf create mode 100644 poky/meta/recipes-core/systemd/systemd/00-hostnamed-network-user.conf create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-Adjust-for-musl-headers.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-Move-sysusers.d-sysctl.d-binfmt.d-modules-load.d-to-.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-binfmt-Don-t-install-dependency-links-at-install-tim.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-network-remove-only-managed-configs-on-reconfigure-o.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-nspawn-make-sure-host-root-can-write-to-the-uidmappe.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-pass-correct-parameters-to-getdents64.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-resolve-Use-sockaddr-pointer-type-for-bind.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0001-shared-json-allow-json_variant_dump-to-return-an-err.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0002-Add-sys-stat.h-for-S_IFDIR.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0003-implment-systemd-sysv-install-for-OE.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0003-missing_type.h-add-comparison_fn_t.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0004-add-fallback-parse_printf_format-implementation.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0005-src-basic-missing.h-check-for-missing-strndupa.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0007-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0008-add-missing-FTW_-macros-for-musl.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0009-fix-missing-of-__register_atfork-for-non-glibc-build.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0010-Use-uintmax_t-for-handling-rlim_t.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0011-test-sizeof.c-Disable-tests-for-missing-typedefs-in-.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0012-don-t-pass-AT_SYMLINK_NOFOLLOW-flag-to-faccessat.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0013-Define-glibc-compatible-basename-for-non-glibc-syste.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0014-Do-not-disable-buffering-when-writing-to-oom_score_a.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0015-distinguish-XSI-compliant-strerror_r-from-GNU-specif.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0018-avoid-redefinition-of-prctl_mm_map-structure.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0021-test-json.c-define-M_PIl.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0022-do-not-disable-buffer-in-writing-files.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0025-Handle-__cpu_mask-usage.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0026-Handle-missing-gshadow.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/0028-missing_syscall.h-Define-MIPS-ABI-defines-for-musl.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/99-default.preset create mode 100644 poky/meta/recipes-core/systemd/systemd/CVE-2022-3821.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/CVE-2022-4415-1.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/CVE-2022-4415-2.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/CVE-2022-45873.patch create mode 100644 poky/meta/recipes-core/systemd/systemd/init create mode 100644 poky/meta/recipes-core/systemd/systemd/org.freedesktop.hostname1_no_polkit.conf create mode 100644 poky/meta/recipes-core/systemd/systemd/systemd-pager.sh create mode 100644 poky/meta/recipes-core/systemd/systemd/touchscreen.rules create mode 100644 poky/meta/recipes-core/systemd/systemd_250.5.bb create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit-inittab/inittab create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit-inittab/start_getty create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/0001-include-sys-sysmacros.h-for-major-minor-defines-in-g.patch create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/01_bootlogd create mode 100755 poky/meta/recipes-core/sysvinit/sysvinit/bootlogd.init create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/crypt-lib.patch create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/install.patch create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/pidof-add-m-option.patch create mode 100755 poky/meta/recipes-core/sysvinit/sysvinit/rc create mode 100755 poky/meta/recipes-core/sysvinit/sysvinit/rcS create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/rcS-default create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit/realpath.patch create mode 100644 poky/meta/recipes-core/sysvinit/sysvinit_3.01.bb create mode 100644 poky/meta/recipes-core/udev/eudev/0014-Revert-rules-remove-firmware-loading-rules.patch create mode 100644 poky/meta/recipes-core/udev/eudev/Revert-udev-remove-userspace-firmware-loading-suppor.patch create mode 100644 poky/meta/recipes-core/udev/eudev/devfs-udev.rules create mode 100644 poky/meta/recipes-core/udev/eudev/init create mode 100644 poky/meta/recipes-core/udev/eudev/links.conf create mode 100644 poky/meta/recipes-core/udev/eudev/local.rules create mode 100644 poky/meta/recipes-core/udev/eudev/permissions.rules create mode 100644 poky/meta/recipes-core/udev/eudev/run.rules create mode 100644 poky/meta/recipes-core/udev/eudev/udev.rules create mode 100644 poky/meta/recipes-core/udev/eudev_3.2.10.bb create mode 100644 poky/meta/recipes-core/udev/udev-extraconf/automount.rules create mode 100644 poky/meta/recipes-core/udev/udev-extraconf/autonet.rules create mode 100644 poky/meta/recipes-core/udev/udev-extraconf/localextra.rules create mode 100644 poky/meta/recipes-core/udev/udev-extraconf/mount.ignorelist create mode 100644 poky/meta/recipes-core/udev/udev-extraconf/mount.sh create mode 100644 poky/meta/recipes-core/udev/udev-extraconf/network.sh create mode 100644 poky/meta/recipes-core/udev/udev-extraconf_1.1.bb create mode 100644 poky/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb create mode 100644 poky/meta/recipes-core/util-linux/util-linux-libuuid_2.37.4.bb create mode 100644 poky/meta/recipes-core/util-linux/util-linux.inc create mode 100644 poky/meta/recipes-core/util-linux/util-linux/avoid_parallel_tests.patch create mode 100644 poky/meta/recipes-core/util-linux/util-linux/configure-sbindir.patch create mode 100644 poky/meta/recipes-core/util-linux/util-linux/display_testname_for_subtest.patch create mode 100644 poky/meta/recipes-core/util-linux/util-linux/ptest.patch create mode 100644 poky/meta/recipes-core/util-linux/util-linux/run-ptest create mode 100644 poky/meta/recipes-core/util-linux/util-linux/runuser-l.pamd create mode 100644 poky/meta/recipes-core/util-linux/util-linux/runuser.pamd create mode 100644 poky/meta/recipes-core/util-linux/util-linux_2.37.4.bb create mode 100644 poky/meta/recipes-core/volatile-binds/files/COPYING.MIT create mode 100755 poky/meta/recipes-core/volatile-binds/files/mount-copybind create mode 100644 poky/meta/recipes-core/volatile-binds/files/volatile-binds.service.in create mode 100644 poky/meta/recipes-core/volatile-binds/volatile-binds.bb create mode 100644 poky/meta/recipes-core/zlib/site_config/headers create mode 100644 poky/meta/recipes-core/zlib/zlib/0001-configure-Pass-LDFLAGS-to-link-tests.patch create mode 100644 poky/meta/recipes-core/zlib/zlib/CVE-2018-25032.patch create mode 100644 poky/meta/recipes-core/zlib/zlib/CVE-2022-37434.patch create mode 100644 poky/meta/recipes-core/zlib/zlib/ldflags-tests.patch create mode 100644 poky/meta/recipes-core/zlib/zlib/run-ptest create mode 100644 poky/meta/recipes-core/zlib/zlib_1.2.11.bb create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-CMakeLists.txt-avoid-changing-install-paths-based-on.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-Disable-documentation-directory-altogether.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-Do-not-init-tables-from-dpkg-configuration.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-Fix-musl-build.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-Hide-fstatat64-and-prlimit64-defines-on-musl.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-aptwebserver.cc-Include-array.patch create mode 100644 poky/meta/recipes-devtools/apt/apt/0001-cmake-Do-not-build-po-files.patch create mode 100755 poky/meta/recipes-devtools/apt/apt/triehash create mode 100644 poky/meta/recipes-devtools/apt/apt_2.4.5.bb create mode 100644 poky/meta/recipes-devtools/autoconf-archive/autoconf-archive_2022.02.11.bb create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/0001-Port-to-compilers-that-moan-about-K-R-func-decls.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/autoreconf-exclude.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/autotest-automake-result-format.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/man-host-perl.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/no-man.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/preferbash.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf/remove-usr-local-lib-from-m4.patch create mode 100644 poky/meta/recipes-devtools/autoconf/autoconf_2.71.bb create mode 100644 poky/meta/recipes-devtools/automake/automake.inc create mode 100644 poky/meta/recipes-devtools/automake/automake/0001-automake-Add-default-libtool_tag-to-cppasm.patch create mode 100644 poky/meta/recipes-devtools/automake/automake/0001-automake-Update-for-python.m4-to-respect-libdir.patch create mode 100644 poky/meta/recipes-devtools/automake/automake/0001-build-fix-race-in-parallel-builds.patch create mode 100644 poky/meta/recipes-devtools/automake/automake/buildtest.patch create mode 100644 poky/meta/recipes-devtools/automake/automake/new_rt_path_for_test-driver.patch create mode 100644 poky/meta/recipes-devtools/automake/automake/performance.patch create mode 100644 poky/meta/recipes-devtools/automake/automake_1.16.5.bb create mode 100644 poky/meta/recipes-devtools/binutils/binutils-2.38.inc create mode 100644 poky/meta/recipes-devtools/binutils/binutils-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/binutils/binutils-cross-canadian_2.38.bb create mode 100644 poky/meta/recipes-devtools/binutils/binutils-cross-testsuite_2.38.bb create mode 100644 poky/meta/recipes-devtools/binutils/binutils-cross.inc create mode 100644 poky/meta/recipes-devtools/binutils/binutils-cross_2.38.bb create mode 100644 poky/meta/recipes-devtools/binutils/binutils-crosssdk_2.38.bb create mode 100644 poky/meta/recipes-devtools/binutils/binutils.inc create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0005-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0006-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0007-warn-for-uses-of-system-directories-when-cross-linki.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0008-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0009-Use-libtool-2.4.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0010-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0011-sync-with-OE-libtool-changes.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0012-Check-for-clang-before-checking-gcc-version.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0013-Avoid-as-info-race-condition.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0014-CVE-2019-1010204.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0015-CVE-2022-38533.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0016-CVE-2022-38126.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0017-CVE-2022-38127-1.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0017-CVE-2022-38127-2.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0017-CVE-2022-38127-3.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0017-CVE-2022-38127-4.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0018-CVE-2022-38128-1.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0018-CVE-2022-38128-2.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0018-CVE-2022-38128-3.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0019-CVE-2022-4285.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0020-CVE-2023-22608-1.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0020-CVE-2023-22608-2.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0020-CVE-2023-22608-3.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0021-CVE-2023-1579-1.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0021-CVE-2023-1579-2.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0021-CVE-2023-1579-3.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0021-CVE-2023-1579-4.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0022-CVE-2023-25584-1.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0022-CVE-2023-25584-2.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0022-CVE-2023-25584-3.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0023-CVE-2023-25585.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0025-CVE-2023-25588.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0026-CVE-2023-1972.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0029-CVE-2022-48065-1.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0029-CVE-2022-48065-2.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils/0029-CVE-2022-48065-3.patch create mode 100644 poky/meta/recipes-devtools/binutils/binutils_2.38.bb create mode 100644 poky/meta/recipes-devtools/bison/bison/add-with-bisonlocaledir.patch create mode 100644 poky/meta/recipes-devtools/bison/bison_3.8.2.bb create mode 100644 poky/meta/recipes-devtools/bootchart2/bootchart2/0001-bootchartd.in-make-sure-only-one-bootchartd-process.patch create mode 100644 poky/meta/recipes-devtools/bootchart2/bootchart2/0001-collector-Allocate-space-on-heap-for-chunks.patch create mode 100644 poky/meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh create mode 100644 poky/meta/recipes-devtools/bootchart2/bootchart2_0.14.9.bb create mode 100644 poky/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-a-possibility-to-specify-where-python-modules-ar.patch create mode 100644 poky/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.16.2.bb create mode 100644 poky/meta/recipes-devtools/cargo/cargo-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/cargo/cargo-cross-canadian_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/cargo/cargo.inc create mode 100644 poky/meta/recipes-devtools/cargo/cargo_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/ccache/ccache/0001-build-Fix-FTBFS-with-not-yet-released-GCC-13.patch create mode 100644 poky/meta/recipes-devtools/ccache/ccache_4.6.bb create mode 100644 poky/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb create mode 100644 poky/meta/recipes-devtools/cdrtools/cdrtools/0001-Don-t-set-uid-gid-during-install.patch create mode 100644 poky/meta/recipes-devtools/chrpath/chrpath/standarddoc.patch create mode 100644 poky/meta/recipes-devtools/chrpath/chrpath_0.16.bb create mode 100644 poky/meta/recipes-devtools/cmake/cmake-native_3.22.3.bb create mode 100644 poky/meta/recipes-devtools/cmake/cmake.inc create mode 100644 poky/meta/recipes-devtools/cmake/cmake/0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch create mode 100644 poky/meta/recipes-devtools/cmake/cmake/0003-cmake-support-OpenEmbedded-Qt4-tool-binary-names.patch create mode 100644 poky/meta/recipes-devtools/cmake/cmake/0004-Fail-silently-if-system-Qt-installation-is-broken.patch create mode 100644 poky/meta/recipes-devtools/cmake/cmake/0005-Disable-use-of-ext2fs-ext2_fs.h-by-cmake-s-internal-.patch create mode 100644 poky/meta/recipes-devtools/cmake/cmake/OEToolchainConfig.cmake create mode 100644 poky/meta/recipes-devtools/cmake/cmake/SDKToolchainConfig.cmake.template create mode 100755 poky/meta/recipes-devtools/cmake/cmake/cmake-setup.py create mode 100644 poky/meta/recipes-devtools/cmake/cmake/environment.d-cmake.sh create mode 100644 poky/meta/recipes-devtools/cmake/cmake_3.22.3.bb create mode 100644 poky/meta/recipes-devtools/createrepo-c/createrepo-c/0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch create mode 100644 poky/meta/recipes-devtools/createrepo-c/createrepo-c_0.19.0.bb create mode 100644 poky/meta/recipes-devtools/dejagnu/dejagnu_1.6.3.bb create mode 100644 poky/meta/recipes-devtools/desktop-file-utils/desktop-file-utils_0.26.bb create mode 100644 poky/meta/recipes-devtools/devel-config/distcc-config.bb create mode 100644 poky/meta/recipes-devtools/devel-config/distcc-config/distcc.sh create mode 100644 poky/meta/recipes-devtools/devel-config/nfs-export-root.bb create mode 100644 poky/meta/recipes-devtools/devel-config/nfs-export-root/exports create mode 100644 poky/meta/recipes-devtools/diffstat/diffstat/avoid-check-user-break-cc.patch create mode 100644 poky/meta/recipes-devtools/diffstat/diffstat/run-ptest create mode 100644 poky/meta/recipes-devtools/diffstat/diffstat_1.64.bb create mode 100644 poky/meta/recipes-devtools/distcc/distcc_3.4.bb create mode 100644 poky/meta/recipes-devtools/distcc/files/default create mode 100755 poky/meta/recipes-devtools/distcc/files/distcc create mode 100644 poky/meta/recipes-devtools/distcc/files/distcc.service create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode/0001-Committing-changes-from-do_unpack_extra.patch create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode/CVE-2023-30630_1a.patch create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode/CVE-2023-30630_1b.patch create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode/CVE-2023-30630_2.patch create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode/CVE-2023-30630_3.patch create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode/CVE-2023-30630_4.patch create mode 100644 poky/meta/recipes-devtools/dmidecode/dmidecode_3.3.bb create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0001-Corretly-install-tmpfiles.d-configuration.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0001-Do-not-hardcode-etc-and-systemd-unit-directories.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0001-dnf-write-the-log-lock-to-root.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0001-set-python-path-for-completion_helper.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0005-Do-not-prepend-installroot-to-logdir.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0029-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf/0030-Run-python-scripts-using-env.patch create mode 100644 poky/meta/recipes-devtools/dnf/dnf_4.11.1.bb create mode 100644 poky/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4/LICENSE-OASIS create mode 100644 poky/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4/docbook-xml-update-catalog.xml.patch create mode 100644 poky/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb create mode 100644 poky/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets/docbook-xsl-stylesheets-no-bashism-in-docbook-xsl-up.patch create mode 100644 poky/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb create mode 100644 poky/meta/recipes-devtools/dosfstools/dosfstools_4.2.bb create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg.inc create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0001-Add-support-for-riscv32-CPU.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0001-Dpkg-Source-Archive-Prevent-directory-traversal-for-.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0001-build.c-ignore-return-of-1-from-tar-cf.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0001-dpkg-Support-muslx32-build.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0003-Our-pre-postinsts-expect-D-to-be-set-when-running-in.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0006-add-musleabi-to-known-target-tripets.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/add_armeb_triplet_entry.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/arch_pm.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/noman.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/pager.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch create mode 100644 poky/meta/recipes-devtools/dpkg/dpkg_1.21.4.bb create mode 100644 poky/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb create mode 100644 poky/meta/recipes-devtools/dwarfsrcfiles/files/dwarfsrcfiles.c create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/e2fsprogs-fix-missing-check-for-permission-denied.patch create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/extents.patch create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/mkdir_p.patch create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/ptest.patch create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/quiet-debugfs.patch create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/remove.ldconfig.call.patch create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs/run-ptest create mode 100644 poky/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.46.5.bb create mode 100644 poky/meta/recipes-devtools/elfutils/elfutils_0.186.bb create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-debuginfod-debuginfod-client.c-use-long-for-cache-ti.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-debuginfod-fix-compilation-on-platforms-without-erro.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-dso-link-change.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-libasm-may-link-with-libbz2-if-found.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0003-fixheadercheck.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0003-musl-utils.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0006-Fix-build-on-aarch64-musl.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/0015-config-eu.am-do-not-use-Werror.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/ptest.patch create mode 100644 poky/meta/recipes-devtools/elfutils/files/run-ptest create mode 100644 poky/meta/recipes-devtools/erofs-utils/erofs-utils/0001-fsck-main.c-add-missing-include.patch create mode 100644 poky/meta/recipes-devtools/erofs-utils/erofs-utils_1.4.bb create mode 100644 poky/meta/recipes-devtools/expect/expect/0001-Resolve-string-formatting-issues.patch create mode 100644 poky/meta/recipes-devtools/expect/expect/0001-configure.in.patch create mode 100644 poky/meta/recipes-devtools/expect/expect/0001-exp_main_sub.c-Use-PATH_MAX-for-path.patch create mode 100644 poky/meta/recipes-devtools/expect/expect/0001-expect-Fix-segfaults-if-Tcl-is-built-with-stubs-and-.patch create mode 100644 poky/meta/recipes-devtools/expect/expect/0001-expect-install-scripts-without-using-the-fixline1-tc.patch create mode 100644 poky/meta/recipes-devtools/expect/expect/0001-fixline1-fix-line-1.patch create mode 100644 poky/meta/recipes-devtools/expect/expect/0002-tcl.m4.patch create mode 100644 poky/meta/recipes-devtools/expect/expect_5.45.4.bb create mode 100644 poky/meta/recipes-devtools/fdisk/gptfdisk/0001-gptcurses-correct-ncurses-6.3-errors.patch create mode 100644 poky/meta/recipes-devtools/fdisk/gptfdisk/0001-gptcurses-correctly-include-curses.h.patch create mode 100644 poky/meta/recipes-devtools/fdisk/gptfdisk_1.0.8.bb create mode 100644 poky/meta/recipes-devtools/file/file/CVE-2022-48554.patch create mode 100644 poky/meta/recipes-devtools/file/file_5.41.bb create mode 100644 poky/meta/recipes-devtools/flex/flex/0001-Emit-no-line-directives-if-gen_line_dirs-is-false.patch create mode 100644 poky/meta/recipes-devtools/flex/flex/0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch create mode 100644 poky/meta/recipes-devtools/flex/flex/0001-tests-add-a-target-for-building-tests-without-runnin.patch create mode 100644 poky/meta/recipes-devtools/flex/flex/check-funcs.patch create mode 100644 poky/meta/recipes-devtools/flex/flex/disable-tests.patch create mode 100755 poky/meta/recipes-devtools/flex/flex/run-ptest create mode 100644 poky/meta/recipes-devtools/flex/flex_2.6.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-11.4.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-common.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-configure-common.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-cross-canadian_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-cross.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-cross_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-crosssdk.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-crosssdk_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-multilib-config.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-runtime.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-runtime_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-sanitizers.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-sanitizers_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-shared-source.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-source.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-source_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/gcc-target.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc-testsuite.inc create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0001-CVE-2021-42574.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0001-CVE-2021-46195.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0001-aarch64-Update-Neoverse-N2-core-defini.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0002-CVE-2021-42574.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0002-aarch64-add-armv9-a-to-march.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0002-gcc-poison-system-directories.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0003-64-bit-multilib-hack.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0003-CVE-2021-42574.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0003-aarch64-Enable-FP16-feature-by-default-for-Armv9.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0004-CVE-2021-42574.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0004-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0004-arm-add-armv9-a-architecture-to-march.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0005-cpp-honor-sysroot.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0006-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0007-gcc-Fix-argument-list-too-long-error.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0008-libtool.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0009-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0010-Use-the-multilib-config-files-from-B-instead-of-usin.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0011-Avoid-using-libdir-from-.la-which-usually-points-to-.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0012-Ensure-target-gcc-headers-can-be-included.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0013-Don-t-search-host-directory-during-relink-if-inst_pr.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0014-libcc1-fix-libcc1-s-install-path-and-rpath.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0015-Makefile.in-Ensure-build-CPP-CPPFLAGS-is-used-for-bu.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0016-If-CXXFLAGS-contains-something-unsupported-by-the-bu.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0017-handle-sysroot-support-for-nativesdk-gcc.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0018-Search-target-sysroot-gcc-version-specific-dirs-with.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0020-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0021-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0022-sync-gcc-stddef.h-with-musl.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0023-Re-introduce-spe-commandline-options.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0024-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0025-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0026-mingw32-Enable-operation_not_supported.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0027-libatomic-Do-not-enforce-march-on-aarch64.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0028-debug-101473-apply-debug-prefix-maps-before-checksum.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0029-Fix-install-path-of-linux64.h.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/0030-rust-recursion-limit.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc/CVE-2023-4039.patch create mode 100644 poky/meta/recipes-devtools/gcc/gcc_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/libgcc-common.inc create mode 100644 poky/meta/recipes-devtools/gcc/libgcc-initial.inc create mode 100644 poky/meta/recipes-devtools/gcc/libgcc-initial_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/libgcc.inc create mode 100644 poky/meta/recipes-devtools/gcc/libgcc_11.4.bb create mode 100644 poky/meta/recipes-devtools/gcc/libgfortran.inc create mode 100644 poky/meta/recipes-devtools/gcc/libgfortran_11.4.bb create mode 100644 poky/meta/recipes-devtools/gdb/gdb-common.inc create mode 100644 poky/meta/recipes-devtools/gdb/gdb-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/gdb/gdb-cross-canadian_11.2.bb create mode 100644 poky/meta/recipes-devtools/gdb/gdb-cross.inc create mode 100644 poky/meta/recipes-devtools/gdb/gdb-cross_11.2.bb create mode 100644 poky/meta/recipes-devtools/gdb/gdb.inc create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0001-make-man-install-relative-to-DESTDIR.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0002-mips-linux-nat-Define-_ABIO32-if-not-defined.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0003-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0005-Dont-disable-libreadline.a-when-using-disable-static.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0006-use-asm-sgidefs.h.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0007-Change-order-of-CFLAGS.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0008-resolve-restrict-keyword-conflict.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0009-Fix-invalid-sigprocmask-call.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0010-gdbserver-ctrl-c-handling.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb/0011-CVE-2023-39128.patch create mode 100644 poky/meta/recipes-devtools/gdb/gdb_11.2.bb create mode 100644 poky/meta/recipes-devtools/git/git/0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch create mode 100644 poky/meta/recipes-devtools/git/git/CVE-2023-25652.patch create mode 100644 poky/meta/recipes-devtools/git/git/CVE-2023-29007.patch create mode 100644 poky/meta/recipes-devtools/git/git/fixsort.patch create mode 100644 poky/meta/recipes-devtools/git/git_2.35.7.bb create mode 100644 poky/meta/recipes-devtools/glide/glide_0.13.3.bb create mode 100755 poky/meta/recipes-devtools/gnu-config/gnu-config/gnu-configize.in create mode 100644 poky/meta/recipes-devtools/gnu-config/gnu-config_git.bb create mode 100644 poky/meta/recipes-devtools/go/go-1.17.13.inc create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0001-allow-CC-and-CXX-to-have-multiple-words.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0001-exec.go-do-not-write-linker-flags-into-buildids.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0001-net-http-httputil-avoid-query-parameter-smuggling.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0001-src-cmd-dist-buildgo.go-do-not-hardcode-host-compile.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0002-cmd-go-make-content-based-hash-generation-less-pedan.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0003-allow-GOTOOLDIR-to-be-overridden-in-the-environment.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0004-ld-add-soname-to-shareable-objects.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0005-make.bash-override-CC-when-building-dist-and-go_boot.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0006-cmd-dist-separate-host-and-target-builds.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0007-cmd-go-make-GOROOT-precious-by-default.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0008-use-GOBUILDMODE-to-set-buildmode.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/0009-Revert-cmd-go-make-sure-CC-and-CXX-are-absolute.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-27664.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-2879.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-41715.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-41717.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-41720.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-41722.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2022-41723.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-24534.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-24537.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-24538_1.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-24538_2.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-24539.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-29400.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.18/CVE-2023-29406.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-24536_1.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-24536_2.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-24536_3.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-24540.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-29402.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-29404.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-29405.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/CVE-2023-29409.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/add_godebug.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/cve-2022-41724.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.19/cve-2022-41725.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.20/CVE-2023-39319.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.21/CVE-2023-24531_1.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.21/CVE-2023-24531_2.patch create mode 100644 poky/meta/recipes-devtools/go/go-1.21/CVE-2023-39318.patch create mode 100644 poky/meta/recipes-devtools/go/go-binary-native_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/go/go-common.inc create mode 100644 poky/meta/recipes-devtools/go/go-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/go/go-cross-canadian_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/go/go-cross.inc create mode 100644 poky/meta/recipes-devtools/go/go-cross_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/go/go-crosssdk.inc create mode 100644 poky/meta/recipes-devtools/go/go-crosssdk_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/go/go-native_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/go/go-runtime.inc create mode 100644 poky/meta/recipes-devtools/go/go-runtime_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/go/go-target.inc create mode 100644 poky/meta/recipes-devtools/go/go_1.17.13.bb create mode 100644 poky/meta/recipes-devtools/help2man/help2man_1.49.1.bb create mode 100644 poky/meta/recipes-devtools/i2c-tools/i2c-tools_4.3.bb create mode 100755 poky/meta/recipes-devtools/icecc-create-env/icecc-create-env/icecc-create-env create mode 100644 poky/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb create mode 100644 poky/meta/recipes-devtools/icecc-toolchain/icecc-toolchain/icecc-env.sh create mode 100644 poky/meta/recipes-devtools/icecc-toolchain/icecc-toolchain/icecc-setup.sh create mode 100644 poky/meta/recipes-devtools/icecc-toolchain/nativesdk-icecc-toolchain_0.1.bb create mode 100644 poky/meta/recipes-devtools/intltool/intltool/intltool-nowarn.patch create mode 100644 poky/meta/recipes-devtools/intltool/intltool/noperlcheck.patch create mode 100644 poky/meta/recipes-devtools/intltool/intltool/perl-522-deprecations.patch create mode 100644 poky/meta/recipes-devtools/intltool/intltool/remove-perl-check.patch create mode 100644 poky/meta/recipes-devtools/intltool/intltool_0.51.0.bb create mode 100644 poky/meta/recipes-devtools/jquery/jquery_3.6.0.bb create mode 100644 poky/meta/recipes-devtools/json-c/json-c/CVE-2021-32292.patch create mode 100644 poky/meta/recipes-devtools/json-c/json-c/run-ptest create mode 100644 poky/meta/recipes-devtools/json-c/json-c_0.15.bb create mode 100644 poky/meta/recipes-devtools/libcomps/libcomps/0002-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch create mode 100644 poky/meta/recipes-devtools/libcomps/libcomps_0.1.18.bb create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-FindGtkDoc.cmake-drop-the-requirement-for-GTKDOC_SCA.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-Fix-1558-Don-t-assume-inclusion-of-cstdint.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-Get-parameters-for-both-libsolv-and-libsolvext-libdn.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-drop-FindPythonInstDir.cmake.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-libdnf-conf-OptionNumber.hpp-add-missing-cstdint-inc.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-libdnf-dnf-context.cpp-do-not-try-to-access-BDB-data.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0001-libdnf-utils-sqlite3-Sqlite3.hpp-add-missing-cstdint.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/0004-Set-libsolv-variables-with-pkg-config-cmake-s-own-mo.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf/enable_test_data_dir_set.patch create mode 100644 poky/meta/recipes-devtools/libdnf/libdnf_0.66.0.bb create mode 100644 poky/meta/recipes-devtools/libedit/libedit/stdc-predef.patch create mode 100644 poky/meta/recipes-devtools/libedit/libedit_20210910-3.1.bb create mode 100644 poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb create mode 100644 poky/meta/recipes-devtools/librepo/librepo/0002-Do-not-try-to-obtain-PYTHON_INSTALL_DIR-by-running-p.patch create mode 100644 poky/meta/recipes-devtools/librepo/librepo/0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch create mode 100644 poky/meta/recipes-devtools/librepo/librepo_1.14.3.bb create mode 100644 poky/meta/recipes-devtools/libtool/libtool-2.4.7.inc create mode 100644 poky/meta/recipes-devtools/libtool/libtool-cross_2.4.7.bb create mode 100644 poky/meta/recipes-devtools/libtool/libtool-native_2.4.7.bb create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0001-ltmain.in-Parse-additional-clang-options.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0002-libtool.m4-Rename-the-with-sysroot-option-to-avoid-c.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0003-ltmain.in-Add-missing-sysroot-to-library-path.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0004-ltmain.sh-Fix-sysroot-paths-being-encoded-into-RPATH.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0005-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0006-libtool.m4-Handle-as-a-sysroot-correctly.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-support-for-NIOS2-processor.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0008-libtool-Check-for-static-libs-for-internal-compiler-.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0009-Makefile.am-make-sure-autoheader-run-before-autoconf.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0010-Makefile.am-make-sure-autoheader-run-before-automake.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0011-ltmain.in-Handle-prefix-map-compiler-options-correct.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/0012-libtool.m4-For-reproducibility-stop-encoding-hostnam.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/dont-depend-on-help2man.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/fixinstall.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/multilib.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool/nohardcodepaths.patch create mode 100644 poky/meta/recipes-devtools/libtool/libtool_2.4.7.bb create mode 100644 poky/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.7.bb create mode 100644 poky/meta/recipes-devtools/llvm/llvm/0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch create mode 100644 poky/meta/recipes-devtools/llvm/llvm/0001-Support-Add-missing-cstdint-header-to-Signals.h.patch create mode 100644 poky/meta/recipes-devtools/llvm/llvm/0006-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch create mode 100644 poky/meta/recipes-devtools/llvm/llvm/0007-llvm-allow-env-override-of-exe-path.patch create mode 100644 poky/meta/recipes-devtools/llvm/llvm_git.bb create mode 100644 poky/meta/recipes-devtools/log4cplus/log4cplus_2.0.8.bb create mode 100644 poky/meta/recipes-devtools/lua/lua/CVE-2022-28805.patch create mode 100644 poky/meta/recipes-devtools/lua/lua/CVE-2022-33099.patch create mode 100644 poky/meta/recipes-devtools/lua/lua/lua.pc.in create mode 100644 poky/meta/recipes-devtools/lua/lua/run-ptest create mode 100644 poky/meta/recipes-devtools/lua/lua_5.4.4.bb create mode 100644 poky/meta/recipes-devtools/m4/m4-1.4.19.inc create mode 100644 poky/meta/recipes-devtools/m4/m4-native_1.4.19.bb create mode 100644 poky/meta/recipes-devtools/m4/m4/0001-sigsegv-Fix-build-on-ppc-musl.patch create mode 100644 poky/meta/recipes-devtools/m4/m4/ac_config_links.patch create mode 100644 poky/meta/recipes-devtools/m4/m4/run-ptest create mode 100644 poky/meta/recipes-devtools/m4/m4/serial-tests-config.patch create mode 100644 poky/meta/recipes-devtools/m4/m4_1.4.19.bb create mode 100644 poky/meta/recipes-devtools/make/make.inc create mode 100644 poky/meta/recipes-devtools/make/make/0001-m4-getloadavg.m4-restrict-AIX-specific-test-on-AIX.patch create mode 100644 poky/meta/recipes-devtools/make/make/0001-makeinst-Do-not-undef-POSIX-on-clang-arm.patch create mode 100644 poky/meta/recipes-devtools/make/make/0001-src-dir.c-fix-buffer-overflow-warning.patch create mode 100644 poky/meta/recipes-devtools/make/make/0002-modules-fcntl-allow-being-detected-by-importing-proj.patch create mode 100644 poky/meta/recipes-devtools/make/make/0002-w32-compat-dirent.c-follow-header.patch create mode 100644 poky/meta/recipes-devtools/make/make/0003-posixfcn-fcntl-gnulib-make-emulated.patch create mode 100644 poky/meta/recipes-devtools/make/make_4.3.bb create mode 100644 poky/meta/recipes-devtools/makedevs/makedevs/makedevs.c create mode 100644 poky/meta/recipes-devtools/makedevs/makedevs_1.0.1.bb create mode 100644 poky/meta/recipes-devtools/meson/meson/0001-Check-for-clang-before-guessing-gcc-or-lcc.patch create mode 100644 poky/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch create mode 100644 poky/meta/recipes-devtools/meson/meson/0001-is_debianlike-always-return-False.patch create mode 100644 poky/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch create mode 100644 poky/meta/recipes-devtools/meson/meson/0002-Support-building-allarch-recipes-again.patch create mode 100644 poky/meta/recipes-devtools/meson/meson/disable-rpath-handling.patch create mode 100755 poky/meta/recipes-devtools/meson/meson/meson-setup.py create mode 100755 poky/meta/recipes-devtools/meson/meson/meson-wrapper create mode 100644 poky/meta/recipes-devtools/meson/meson_0.61.3.bb create mode 100644 poky/meta/recipes-devtools/mmc/mmc-utils_git.bb create mode 100644 poky/meta/recipes-devtools/mtd/mtd-utils/add-exclusion-to-mkfs-jffs2-git-2.patch create mode 100644 poky/meta/recipes-devtools/mtd/mtd-utils_git.bb create mode 100644 poky/meta/recipes-devtools/mtools/mtools/clang_UNUSED.patch create mode 100644 poky/meta/recipes-devtools/mtools/mtools/disable-hardcoded-configs.patch create mode 100644 poky/meta/recipes-devtools/mtools/mtools/mtools-makeinfo.patch create mode 100644 poky/meta/recipes-devtools/mtools/mtools_4.0.38.bb create mode 100644 poky/meta/recipes-devtools/nasm/nasm/0001-stdlib-Add-strlcat.patch create mode 100644 poky/meta/recipes-devtools/nasm/nasm/0002-Add-debug-prefix-map-option.patch create mode 100644 poky/meta/recipes-devtools/nasm/nasm/CVE-2020-21528.patch create mode 100644 poky/meta/recipes-devtools/nasm/nasm/CVE-2022-44370.patch create mode 100644 poky/meta/recipes-devtools/nasm/nasm/CVE-2022-46457.patch create mode 100644 poky/meta/recipes-devtools/nasm/nasm_2.15.05.bb create mode 100644 poky/meta/recipes-devtools/ninja/ninja_1.10.2.bb create mode 100644 poky/meta/recipes-devtools/opkg-utils/opkg-utils/0001-update-alternatives-correctly-match-priority.patch create mode 100644 poky/meta/recipes-devtools/opkg-utils/opkg-utils_0.5.0.bb create mode 100644 poky/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb create mode 100644 poky/meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb create mode 100644 poky/meta/recipes-devtools/opkg/opkg/0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch create mode 100644 poky/meta/recipes-devtools/opkg/opkg/opkg.conf create mode 100644 poky/meta/recipes-devtools/opkg/opkg/run-ptest create mode 100644 poky/meta/recipes-devtools/opkg/opkg_0.5.0.bb create mode 100644 poky/meta/recipes-devtools/orc/orc_0.4.32.bb create mode 100644 poky/meta/recipes-devtools/patch/patch.inc create mode 100644 poky/meta/recipes-devtools/patch/patch/0001-Don-t-leak-temporary-file-on-failed-ed-style-patch.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0001-Don-t-leak-temporary-file-on-failed-multi-file-ed.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0001-Fix-swapping-fake-lines-in-pch_swap.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0001-Invoke-ed-directly-instead-of-using-the-shell.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0001-Unset-need_charset_alias-when-building-for-musl.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0002-Fix-segfault-with-mangled-rename-patch.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0003-Allow-input-files-to-be-missing-for-ed-style-patches.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/0004-Fix-arbitrary-command-execution-in-ed-style-patches-.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/CVE-2019-13636.patch create mode 100644 poky/meta/recipes-devtools/patch/patch/CVE-2019-20633.patch create mode 100644 poky/meta/recipes-devtools/patch/patch_2.7.6.bb create mode 100644 poky/meta/recipes-devtools/patchelf/patchelf_0.14.5.bb create mode 100644 poky/meta/recipes-devtools/perl-cross/files/0001-Makefile-check-the-file-if-patched-or-not.patch create mode 100644 poky/meta/recipes-devtools/perl-cross/files/0001-perl-cross-add-LDFLAGS-when-linking-libperl.patch create mode 100644 poky/meta/recipes-devtools/perl-cross/files/README.md create mode 100644 poky/meta/recipes-devtools/perl-cross/files/determinism.patch create mode 100644 poky/meta/recipes-devtools/perl-cross/perlcross_1.3.7.bb create mode 100644 poky/meta/recipes-devtools/perl/files/0001-CheckLib.pm-do-not-attempt-to-run-a-cross-executable.patch create mode 100644 poky/meta/recipes-devtools/perl/files/0001-Fix-build-with-gcc-12.patch create mode 100644 poky/meta/recipes-devtools/perl/files/0001-Somehow-this-module-breaks-through-the-perl-wrapper-.patch create mode 100644 poky/meta/recipes-devtools/perl/files/0001-cpan-Sys-Syslog-Makefile.PL-Fix-_PATH_LOG-for-determ.patch create mode 100644 poky/meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch create mode 100644 poky/meta/recipes-devtools/perl/files/CVE-2023-31484.patch create mode 100644 poky/meta/recipes-devtools/perl/files/CVE-2023-31486-0001.patch create mode 100644 poky/meta/recipes-devtools/perl/files/CVE-2023-31486-0002.patch create mode 100644 poky/meta/recipes-devtools/perl/files/determinism.patch create mode 100644 poky/meta/recipes-devtools/perl/files/encodefix.patch create mode 100644 poky/meta/recipes-devtools/perl/files/errno_ver.diff create mode 100644 poky/meta/recipes-devtools/perl/files/native-perlinc.patch create mode 100644 poky/meta/recipes-devtools/perl/files/perl-configpm-switch.patch create mode 100644 poky/meta/recipes-devtools/perl/files/perl-dynloader.patch create mode 100644 poky/meta/recipes-devtools/perl/files/perl-rdepends.txt create mode 100644 poky/meta/recipes-devtools/perl/files/run-ptest create mode 100644 poky/meta/recipes-devtools/perl/liberror-perl_0.17029.bb create mode 100644 poky/meta/recipes-devtools/perl/libmodule-build-perl/run-ptest create mode 100644 poky/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb create mode 100644 poky/meta/recipes-devtools/perl/libtest-needs-perl_0.002009.bb create mode 100644 poky/meta/recipes-devtools/perl/liburi-perl_5.08.bb create mode 100644 poky/meta/recipes-devtools/perl/libxml-parser-perl_2.46.bb create mode 100644 poky/meta/recipes-devtools/perl/libxml-perl_0.08.bb create mode 100644 poky/meta/recipes-devtools/perl/libxml-simple-perl_2.25.bb create mode 100644 poky/meta/recipes-devtools/perl/perl-ptest.inc create mode 100644 poky/meta/recipes-devtools/perl/perl_5.34.1.bb create mode 100644 poky/meta/recipes-devtools/pkgconf/pkgconf/0001-tuple-test-for-and-stop-string-processing-on-truncat.patch create mode 100644 poky/meta/recipes-devtools/pkgconf/pkgconf/pkg-config-esdk.in create mode 100644 poky/meta/recipes-devtools/pkgconf/pkgconf/pkg-config-native.in create mode 100755 poky/meta/recipes-devtools/pkgconf/pkgconf/pkg-config-wrapper create mode 100644 poky/meta/recipes-devtools/pkgconf/pkgconf_1.8.0.bb create mode 100644 poky/meta/recipes-devtools/pkgconfig/pkgconfig/0001-autotools-remove-support-for-the-__int64-type.-See-1.patch create mode 100644 poky/meta/recipes-devtools/pkgconfig/pkgconfig/0001-autotools-use-C99-printf-format-specifiers-on-Window.patch create mode 100644 poky/meta/recipes-devtools/pkgconfig/pkgconfig/0001-glib-gettext.m4-Update-AM_GLIB_GNU_GETTEXT-to-match-.patch create mode 100644 poky/meta/recipes-devtools/pkgconfig/pkgconfig/pkg-config-esdk.in create mode 100644 poky/meta/recipes-devtools/pkgconfig/pkgconfig/pkg-config-native.in create mode 100644 poky/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb create mode 100644 poky/meta/recipes-devtools/pseudo/files/0001-configure-Prune-PIE-flags.patch create mode 100755 poky/meta/recipes-devtools/pseudo/files/build-oldlibc create mode 100644 poky/meta/recipes-devtools/pseudo/files/fallback-group create mode 100644 poky/meta/recipes-devtools/pseudo/files/fallback-passwd create mode 100644 poky/meta/recipes-devtools/pseudo/files/glibc238.patch create mode 100644 poky/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch create mode 100644 poky/meta/recipes-devtools/pseudo/pseudo.inc create mode 100644 poky/meta/recipes-devtools/pseudo/pseudo_git.bb create mode 100644 poky/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch create mode 100644 poky/meta/recipes-devtools/python/python-async.inc create mode 100644 poky/meta/recipes-devtools/python/python-cython.inc create mode 100644 poky/meta/recipes-devtools/python/python-extras.inc create mode 100644 poky/meta/recipes-devtools/python/python-gitdb.inc create mode 100644 poky/meta/recipes-devtools/python/python-pbr.inc create mode 100644 poky/meta/recipes-devtools/python/python-pyasn1.inc create mode 100644 poky/meta/recipes-devtools/python/python-pycryptodome.inc create mode 100644 poky/meta/recipes-devtools/python/python-rfc3986-validator/0001-setup.py-move-pytest-runner-to-test_requirements.patch create mode 100644 poky/meta/recipes-devtools/python/python-six.inc create mode 100644 poky/meta/recipes-devtools/python/python-testtools.inc create mode 100644 poky/meta/recipes-devtools/python/python3-alabaster_0.7.12.bb create mode 100644 poky/meta/recipes-devtools/python/python3-asn1crypto_1.5.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-async_0.6.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-atomicwrites/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-atomicwrites_1.4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-attrs_21.4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-babel_2.9.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-bcrypt/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-bcrypt_3.2.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-certifi/CVE-2022-23491.patch create mode 100644 poky/meta/recipes-devtools/python/python3-certifi/CVE-2023-37920.patch create mode 100644 poky/meta/recipes-devtools/python/python3-certifi_2021.10.8.bb create mode 100644 poky/meta/recipes-devtools/python/python3-cffi_1.15.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-chardet_4.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography-vectors_36.0.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography/0002-Cargo.toml-edition-2018-2021.patch create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography/CVE-2023-23931.patch create mode 100755 poky/meta/recipes-devtools/python/python3-cryptography/check-memfree.py create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography/fix-leak-metric.patch create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-cryptography_36.0.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-cython_0.29.28.bb create mode 100644 poky/meta/recipes-devtools/python/python3-dbus_1.2.18.bb create mode 100644 poky/meta/recipes-devtools/python/python3-dbusmock_0.27.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-docutils_0.18.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-dtschema_2022.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-extras_1.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-flit-core_3.7.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-git_3.1.37.bb create mode 100644 poky/meta/recipes-devtools/python/python3-gitdb_4.0.9.bb create mode 100644 poky/meta/recipes-devtools/python/python3-hypothesis/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-hypothesis/test_binary_search.py create mode 100644 poky/meta/recipes-devtools/python/python3-hypothesis/test_rle.py create mode 100644 poky/meta/recipes-devtools/python/python3-hypothesis_6.39.5.bb create mode 100644 poky/meta/recipes-devtools/python/python3-idna_3.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-imagesize_1.3.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-importlib-metadata_4.11.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-iniconfig_1.1.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-iniparse_0.5.bb create mode 100644 poky/meta/recipes-devtools/python/python3-installer/interpreter.patch create mode 100644 poky/meta/recipes-devtools/python/python3-installer_0.5.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-iso8601_1.0.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-jinja2/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-jinja2_3.1.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-jsonpointer/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-jsonpointer_2.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-libarchive-c_4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-magic_0.4.25.bb create mode 100644 poky/meta/recipes-devtools/python/python3-mako/CVE-2022-40023.patch create mode 100644 poky/meta/recipes-devtools/python/python3-mako_1.1.6.bb create mode 100644 poky/meta/recipes-devtools/python/python3-markdown_3.3.6.bb create mode 100644 poky/meta/recipes-devtools/python/python3-markupsafe/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-more-itertools/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-more-itertools_8.12.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-ndg-httpsclient_0.5.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-numpy/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch create mode 100644 poky/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-Define-RISCV-32-support.patch create mode 100644 poky/meta/recipes-devtools/python/python3-numpy/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-numpy_1.22.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-packaging_21.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pathlib2_2.3.7.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pbr/0001-change-shebang-to-python3.patch create mode 100644 poky/meta/recipes-devtools/python/python3-pbr_5.8.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pip/0001-change-shebang-to-python3.patch create mode 100644 poky/meta/recipes-devtools/python/python3-pip/no_shebang_mangling.patch create mode 100644 poky/meta/recipes-devtools/python/python3-pip/reproducible.patch create mode 100644 poky/meta/recipes-devtools/python/python3-pip_22.0.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pluggy/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-pluggy_1.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-ply_3.11.bb create mode 100644 poky/meta/recipes-devtools/python/python3-poetry-core_1.0.8.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pretend_1.0.9.bb create mode 100644 poky/meta/recipes-devtools/python/python3-psutil/0001-fix-failure-test-cases.patch create mode 100644 poky/meta/recipes-devtools/python/python3-psutil_5.9.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-py_1.11.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pyasn1/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-pyasn1_0.4.8.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pycairo_1.21.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pycparser_2.21.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pycryptodome_3.14.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pycryptodomex_3.14.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pyelftools_0.28.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pygments/CVE-2022-40896.patch create mode 100644 poky/meta/recipes-devtools/python/python3-pygments_2.11.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pygobject/0001-Do-not-build-tests.patch create mode 100644 poky/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pyopenssl_22.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pyrsistent_0.18.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pysocks_1.7.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pytest-runner_6.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pytest-subtests_0.7.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pytest_7.1.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pytz/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-pytz_2022.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-pyyaml_6.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-requests/CVE-2023-32681.patch create mode 100644 poky/meta/recipes-devtools/python/python3-requests_2.27.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-rfc3339-validator_0.1.4.bb create mode 100644 poky/meta/recipes-devtools/python/python3-rfc3986-validator_0.1.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-rfc3987_1.3.8.bb create mode 100644 poky/meta/recipes-devtools/python/python3-ruamel-yaml_0.17.21.bb create mode 100644 poky/meta/recipes-devtools/python/python3-scons/0001-Fix-man-page-installation.patch create mode 100644 poky/meta/recipes-devtools/python/python3-scons_4.3.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-semantic-version_2.9.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-setuptools-rust-native_1.1.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-setuptools-scm_6.4.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-setuptools/0001-Limit-the-amount-of-whitespace-to-search-backtrack.-.patch create mode 100644 poky/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch create mode 100644 poky/meta/recipes-devtools/python/python3-setuptools/0001-change-shebang-to-python3.patch create mode 100644 poky/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-six_1.16.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-smartypants/0001-Change-hash-bang-to-python3.patch create mode 100644 poky/meta/recipes-devtools/python/python3-smartypants_2.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-smmap_5.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-snowballstemmer_2.2.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sortedcontainers_2.4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinx-rtd-theme_0.5.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinx_4.4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinxcontrib-jsmath_1.0.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.3.bb create mode 100644 poky/meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.5.bb create mode 100644 poky/meta/recipes-devtools/python/python3-strict-rfc3339/0001-setup.py-use-vendored-_distutils.patch create mode 100644 poky/meta/recipes-devtools/python/python3-strict-rfc3339_0.7.bb create mode 100644 poky/meta/recipes-devtools/python/python3-subunit_1.4.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-testtools_2.5.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-toml_0.10.2.bb create mode 100644 poky/meta/recipes-devtools/python/python3-tomli_2.0.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-typing-extensions_3.10.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-typogrify_2.0.7.bb create mode 100644 poky/meta/recipes-devtools/python/python3-urllib3_1.26.9.bb create mode 100644 poky/meta/recipes-devtools/python/python3-vcversioner_2.16.0.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3-wcwidth/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-wcwidth_0.2.5.bb create mode 100644 poky/meta/recipes-devtools/python/python3-webcolors/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3-webcolors_1.11.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-wheel/0001-Backport-pyproject.toml-from-flit-backend-branch.patch create mode 100644 poky/meta/recipes-devtools/python/python3-wheel/0001-Fixed-potential-DoS-attack-via-WHEEL_INFO_RE.patch create mode 100644 poky/meta/recipes-devtools/python/python3-wheel_0.37.1.bb create mode 100644 poky/meta/recipes-devtools/python/python3-zipp_3.7.0.bb create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Avoid-shebang-overflow-on-python-config.py.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Do-not-use-the-shell-version-of-python-config-that-w.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Lib-pty.py-handle-stdin-I-O-errors-same-way-as-maste.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Makefile-do-not-compile-.pyc-in-parallel.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Makefile.pre-use-qemu-wrapper-when-gathering-profile.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-Use-FLAG_REF-always-for-interned-strings.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-python3-use-cc_basename-to-replace-CC-for-checking-c.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-setup.py-Do-not-detect-multiarch-paths-when-cross-co.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-sysconfig.py-use-platlibdir-also-for-purelib.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-test_ctypes.test_find-skip-without-tools-sdk.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0001-test_locale.py-correct-the-test-output-format.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch create mode 100644 poky/meta/recipes-devtools/python/python3/0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch create mode 100644 poky/meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch create mode 100644 poky/meta/recipes-devtools/python/python3/avoid_warning_about_tkinter.patch create mode 100644 poky/meta/recipes-devtools/python/python3/cgi_py.patch create mode 100755 poky/meta/recipes-devtools/python/python3/check_build_completeness.py create mode 100644 poky/meta/recipes-devtools/python/python3/create_manifest3.py create mode 100644 poky/meta/recipes-devtools/python/python3/crosspythonpath.patch create mode 100644 poky/meta/recipes-devtools/python/python3/deterministic_imports.patch create mode 100644 poky/meta/recipes-devtools/python/python3/get_module_deps3.py create mode 100644 poky/meta/recipes-devtools/python/python3/makerace.patch create mode 100644 poky/meta/recipes-devtools/python/python3/python-config.patch create mode 100644 poky/meta/recipes-devtools/python/python3/python3-manifest.json create mode 100644 poky/meta/recipes-devtools/python/python3/reformat_sysconfig.py create mode 100644 poky/meta/recipes-devtools/python/python3/run-ptest create mode 100644 poky/meta/recipes-devtools/python/python3_3.10.13.bb create mode 100644 poky/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb create mode 100644 poky/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb create mode 100644 poky/meta/recipes-devtools/qemu/qemu-helper/qemu-oe-bridge-helper.c create mode 100644 poky/meta/recipes-devtools/qemu/qemu-helper/tunctl.c create mode 100644 poky/meta/recipes-devtools/qemu/qemu-native.inc create mode 100644 poky/meta/recipes-devtools/qemu/qemu-native_6.2.0.bb create mode 100644 poky/meta/recipes-devtools/qemu/qemu-system-native_6.2.0.bb create mode 100644 poky/meta/recipes-devtools/qemu/qemu-targets.inc create mode 100644 poky/meta/recipes-devtools/qemu/qemu.inc create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-Define-MAP_SYNC-and-MAP_SHARED_VALIDATE-on-needed-li.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-acpi-tpm-Add-missing-device-identification-objects.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-hw-display-qxl-Have-qxl_log_command-Return-early-if-.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-hw-display-qxl-Pass-requested-buffer-size-to-qxl_phy.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-net-tulip-Restrict-DMA-engine-to-memories.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-ppc-Include-asm-ptrace.h-for-pt_regs-struct-definiti.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-qemu-Add-missing-wacom-HID-descriptor.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-qemu-Do-not-include-file-if-not-exists.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-riscv-Set-5.4-as-minimum-kernel-version-for-riscv32.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-softfloat-Extend-float_exception_flags-to-16-bits.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-tests-meson.build-use-relative-path-to-refer-to-file.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-use-uint32t-for-reply-queue-head-tail-values.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0001-vhost-vsock-detach-the-virqueue-element-in-case-of-e.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0002-softfloat-Add-flag-specific-to-Inf-Inf.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0002-virtio-net-fix-map-leaking-on-error-during-receive.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0002_let_dma_memory_valid_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0003-qemu-Add-addition-environment-space-to-boot-loader-q.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0003-softfloat-Add-flag-specific-to-Inf-0.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0003_let_dma_memory_set_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0004-softfloat-Add-flags-specific-to-Inf-Inf-and-0-0.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0004_let_dma_memory_rw_relaxed_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0005-softfloat-Add-flag-specific-to-signaling-nans.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0005_let_dma_memory_rw_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0006-chardev-connect-socket-to-a-spawned-command.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0006-target-ppc-Update-float_invalid_op_addsub-for-new-fl.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0006_let_dma_memory_read_write_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0007-apic-fixup-fallthrough-to-PIC.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0007-target-ppc-Update-float_invalid_op_mul-for-new-flags.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0007_let_dma_memory_map_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0008-target-ppc-Update-float_invalid_op_div-for-new-flags.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0008_have_dma_buf_rw_function_take_a_void_pointer.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0009-target-ppc-Update-fmadd-for-new-flags.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0009_have_dma_buf_read_and_dma_buf_write_functions_take_a_void.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0010-configure-Add-pkg-config-handling-for-libgcrypt.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0010-target-ppc-Split-out-do_fmadd.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0010_let_pci_dma_rw_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0011-target-ppc-Fix-xs-max-min-cj-dp-to-use-VSX-registers.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0011_let_dma_buf_rw_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0012-target-ppc-Move-xs-max-min-cj-dp-to-decodetree.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0012_let_dma_buf_write_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0013-target-ppc-fix-xscvqpdp-register-access.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0013_let_dma_buf_read_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0014-target-ppc-move-xscvqpdp-to-decodetree.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0014_let_dma_buf_rw_function_propagate_MemTxResult.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0015-target-ppc-ppc_store_fpscr-doesn-t-update-bits-0-to-.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0015_let_st_pointer_dma_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0016-target-ppc-Introduce-TRANS-FLAGS-macros.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0016_let_ld_pointer_dma_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0017-target-ppc-Implement-Vector-Expand-Mask.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0017_let_st_pointer_dma_function_propagate_MemTxResult.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0018-target-ppc-Implement-Vector-Extract-Mask.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0018_let_ld_pointer_dma_function_propagate_MemTxResult.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0019-target-ppc-Implement-Vector-Mask-Move-insns.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0019_let_st_pointer_pci_dma_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0020-target-ppc-move-xs-n-madd-am-ds-p-xs-n-msub-am-ds-p-.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0020_let_ld_pointer_pci_dma_function_take_MemTxAttrs_argument.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0021-target-ppc-implement-xs-n-maddqp-o-xs-n-msubqp-o.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0021_let_st_pointer_pci_dma_function_propagate_MemTxResult.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/0022_let_ld_pointer_pci_dma_function_propagate_MemTxResult.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2020-14394.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3611_1.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3611_2.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3638.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3750-1.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3750-2.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3750-3.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-3929.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-4158.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-4206.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2021-4207.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2022-0216_1.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2022-0216_2.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2022-0358.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2022-3165.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2022-35414.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2022-4144.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2023-0330.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2023-2861.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2023-3180.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2023-3255.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2023-3301.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/CVE-2023-3354.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/cross.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/determinism.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/mmap2.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/powerpc_rom.bin create mode 100644 poky/meta/recipes-devtools/qemu/qemu/pvrdma.patch create mode 100644 poky/meta/recipes-devtools/qemu/qemu/run-ptest create mode 100644 poky/meta/recipes-devtools/qemu/qemu_6.2.0.bb create mode 100644 poky/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb create mode 100644 poky/meta/recipes-devtools/quilt/quilt-native_0.67.bb create mode 100644 poky/meta/recipes-devtools/quilt/quilt.inc create mode 100644 poky/meta/recipes-devtools/quilt/quilt/0001-test-Fix-a-race-condition-in-merge.test.patch create mode 100644 poky/meta/recipes-devtools/quilt/quilt/0001-tests-Allow-different-output-from-mv.patch create mode 100644 poky/meta/recipes-devtools/quilt/quilt/Makefile create mode 100644 poky/meta/recipes-devtools/quilt/quilt/faildiff-order.patch create mode 100644 poky/meta/recipes-devtools/quilt/quilt/fix-grep-3.8.patch create mode 100644 poky/meta/recipes-devtools/quilt/quilt/gnu_patch_test_fix_target.patch create mode 100755 poky/meta/recipes-devtools/quilt/quilt/run-ptest create mode 100755 poky/meta/recipes-devtools/quilt/quilt/test.sh create mode 100644 poky/meta/recipes-devtools/quilt/quilt_0.67.bb create mode 100644 poky/meta/recipes-devtools/repo/repo/0001-python3-shebang.patch create mode 100644 poky/meta/recipes-devtools/repo/repo_2.22.bb create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-Add-a-color-setting-for-mips64_n32-binaries.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-Do-not-add-an-unsatisfiable-dependency-when-building.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-Do-not-hardcode-lib-rpm-as-the-installation-path-for.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-Do-not-read-config-files-from-HOME.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-Do-not-reset-the-PATH-environment-variable-before-ru.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-Rip-out-partial-support-for-unused-MD2-and-RIPEMD160.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-When-cross-installing-execute-package-scriptlets-wit.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-build-pack.c-do-not-insert-payloadflags-into-.rpm-me.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-configure.ac-add-linux-gnux32-variant-to-triplet-han.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-docs-do-not-build-manpages-requires-pandoc.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-lib-transaction.c-fix-file-conflicts-for-MIPS64-N32.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-perl-disable-auto-reqs.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0001-tools-Add-error.h-for-non-glibc-case.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0002-Add-support-for-prefixing-etc-from-RPM_ETCCONFIGDIR-.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/0016-rpmscript.c-change-logging-level-around-scriptlets-t.patch create mode 100644 poky/meta/recipes-devtools/rpm/files/environment.d-rpm.sh create mode 100644 poky/meta/recipes-devtools/rpm/rpm_4.17.1.bb create mode 100644 poky/meta/recipes-devtools/rsync/files/0001-Add-missing-prototypes-to-function-declarations.patch create mode 100644 poky/meta/recipes-devtools/rsync/files/0001-Turn-on-pedantic-errors-at-the-end-of-configure.patch create mode 100644 poky/meta/recipes-devtools/rsync/files/determism.patch create mode 100644 poky/meta/recipes-devtools/rsync/files/makefile-no-rebuild.patch create mode 100644 poky/meta/recipes-devtools/rsync/files/rsyncd.conf create mode 100644 poky/meta/recipes-devtools/rsync/rsync_3.2.5.bb create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0001-extmk-fix-cross-compilation-of-external-gems.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0001-template-Makefile.in-do-not-write-host-cross-cc-item.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0002-template-Makefile.in-filter-out-f-prefix-map.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0003-rdoc-build-reproducible-documentation.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0004-lib-mkmf.rb-sort-list-of-object-files-in-generated-M.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0005-Mark-Gemspec-reproducible-change-fixing-784225-too.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/0006-Make-gemspecs-reproducible.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/CVE-2023-28755.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/CVE-2023-28756.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/CVE-2023-36617_1.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/CVE-2023-36617_2.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/remove_has_include_macros.patch create mode 100644 poky/meta/recipes-devtools/ruby/ruby/run-ptest create mode 100644 poky/meta/recipes-devtools/ruby/ruby_3.1.3.bb create mode 100755 poky/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts create mode 100644 poky/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts.init create mode 100644 poky/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts.service create mode 100644 poky/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb create mode 100644 poky/meta/recipes-devtools/rust/README-rust.md create mode 100644 poky/meta/recipes-devtools/rust/libstd-rs.inc create mode 100644 poky/meta/recipes-devtools/rust/libstd-rs/0001-Add-400-series-syscalls-to-musl-riscv64-definitions.patch create mode 100644 poky/meta/recipes-devtools/rust/libstd-rs/0001-Update-checksums-for-modified-vendored-libc.patch create mode 100644 poky/meta/recipes-devtools/rust/libstd-rs_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/rust/rust-common.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-cross-canadian-common.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-cross-canadian_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/rust/rust-cross.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-cross_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/rust/rust-crosssdk_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/rust/rust-llvm.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-llvm/0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch create mode 100644 poky/meta/recipes-devtools/rust/rust-llvm/0002-llvm-allow-env-override-of-exe-path.patch create mode 100644 poky/meta/recipes-devtools/rust/rust-llvm/0003-Support-Add-missing-cstdint-header-to-Signals.h.patch create mode 100644 poky/meta/recipes-devtools/rust/rust-llvm_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/rust/rust-snapshot.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-source.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-target.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-tools-cross-canadian.inc create mode 100644 poky/meta/recipes-devtools/rust/rust-tools-cross-canadian_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/rust/rust.inc create mode 100644 poky/meta/recipes-devtools/rust/rust_1.59.0.bb create mode 100644 poky/meta/recipes-devtools/squashfs-tools/squashfs-tools/0001-Avoid-use-of-INSTALL_DIR-for-symlink-targets.patch create mode 100644 poky/meta/recipes-devtools/squashfs-tools/squashfs-tools/CVE-2021-41072-requisite-1.patch create mode 100644 poky/meta/recipes-devtools/squashfs-tools/squashfs-tools/CVE-2021-41072-requisite-2.patch create mode 100644 poky/meta/recipes-devtools/squashfs-tools/squashfs-tools/CVE-2021-41072-requisite-3.patch create mode 100644 poky/meta/recipes-devtools/squashfs-tools/squashfs-tools/CVE-2021-41072.patch create mode 100644 poky/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb create mode 100644 poky/meta/recipes-devtools/strace/strace/0001-landlock-update-expected-string.patch create mode 100644 poky/meta/recipes-devtools/strace/strace/0001-strace-fix-reproducibilty-issues.patch create mode 100644 poky/meta/recipes-devtools/strace/strace/3bbfb541b258baec9eba674b5d8dc30007a61542.patch create mode 100644 poky/meta/recipes-devtools/strace/strace/Makefile-ptest.patch create mode 100644 poky/meta/recipes-devtools/strace/strace/f31c2f4494779e5c5f170ad10539bfc2dfafe967.patch create mode 100644 poky/meta/recipes-devtools/strace/strace/ptest-spacesave.patch create mode 100755 poky/meta/recipes-devtools/strace/strace/run-ptest create mode 100644 poky/meta/recipes-devtools/strace/strace/skip-load.patch create mode 100644 poky/meta/recipes-devtools/strace/strace/update-gawk-paths.patch create mode 100644 poky/meta/recipes-devtools/strace/strace_5.16.bb create mode 100644 poky/meta/recipes-devtools/subversion/subversion/serfmacro.patch create mode 100644 poky/meta/recipes-devtools/subversion/subversion_1.14.2.bb create mode 100644 poky/meta/recipes-devtools/swig/swig.inc create mode 100644 poky/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch create mode 100644 poky/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch create mode 100644 poky/meta/recipes-devtools/swig/swig/determinism.patch create mode 100644 poky/meta/recipes-devtools/swig/swig_4.0.2.bb create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0001-install-don-t-install-obsolete-file-com32.ld.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0001-linux-syslinux-support-ext2-3-4-device.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0002-linux-syslinux-implement-open_ext2_fs.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0003-linux-syslinux-implement-install_to_ext2.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0004-linux-syslinux-add-ext_file_read-and-ext_file_write.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0005-linux-syslinux-implement-handle_adv_on_ext.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0006-linux-syslinux-implement-write_to_ext-and-add-syslin.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0007-linux-syslinux-implement-ext_construct_sectmap_fs.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0009-linux-syslinux-implement-install_bootblock.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/0010-Workaround-multiple-definition-of-symbol-errors.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/determinism.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux/syslinux-remove-clean-script.patch create mode 100644 poky/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-architecture-Recognise-RISCV-32-RISCV-64.patch create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0002-musl-does-not-provide-printf-h.patch create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/mips64.patch create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/no_lto.patch create mode 100644 poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart_234.bb create mode 100644 poky/meta/recipes-devtools/tcf-agent/tcf-agent/ldflags.patch create mode 100755 poky/meta/recipes-devtools/tcf-agent/tcf-agent/tcf-agent.init create mode 100644 poky/meta/recipes-devtools/tcf-agent/tcf-agent/tcf-agent.service create mode 100644 poky/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/alter-includedir.patch create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/fix_issue_with_old_distro_glibc.patch create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/interp.patch create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/run-ptest create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/tcl-add-soname.patch create mode 100644 poky/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch create mode 100644 poky/meta/recipes-devtools/tcltk/tcl_8.6.11.bb create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/0001-Add-listen-action-for-a-tcp-socket.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/0001-attr-fix-utime-for-symlink.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/0001-daemon.c-Libtirpc-porting-fixes.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/alternate_rpc_ports.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/fix_compile_warning.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/fix_pid_race_parent_writes_child_pid.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/no-yywrap.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/relative_max_socket_path_len.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/rename_fh_cache.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/tcp_no_delay.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3/unfs3_parallel_build.patch create mode 100644 poky/meta/recipes-devtools/unfs3/unfs3_git.bb create mode 100644 poky/meta/recipes-devtools/unifdef/unifdef_2.12.bb create mode 100644 poky/meta/recipes-devtools/vala/vala.inc create mode 100644 poky/meta/recipes-devtools/vala/vala_0.56.3.bb create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-Implement-linux-rseq-syscall-as-ENOSYS.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-Make-local-functions-static-to-avoid-assembler-error.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-Return-a-valid-exit_code-from-vg_regtest.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-docs-Disable-manual-validation.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-fix-opcode-not-supported-on-mips32-linux.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-makefiles-Drop-setting-mcpu-to-cortex-a8-on-arm-arch.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-memcheck-arm64-Define-__THROW-if-not-already-defined.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-memcheck-tests-Fix-timerfd-syscall-test.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-memcheck-vgtests-remove-fullpath-after-flags.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-none-tests-fdleak_cmsg.stderr.exp-adjust-tmp-paths.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-sigqueue-Rename-_sifields-to-__si_fields-on-musl.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-str_tester.c-Limit-rawmemchr-test-to-glibc.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0001-valgrind-filter_xml_frames-do-not-filter-usr.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0002-context-APIs-are-not-available-on-musl.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0002-memcheck-x86-Define-__THROW-if-not-defined.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0003-correct-include-directive-path-for-config.h.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0003-tests-seg_override-Replace-__modify_ldt-with-syscall.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0004-Fix-out-of-tree-builds.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0005-Modify-vg_test-wrapper-to-support-PTEST-formats.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/0005-tc20_verifywrap.c-Fake-__GLIBC_PREREQ-with-musl.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/Added-support-for-PPC-instructions-mfatbu-mfatbl.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/avoid-neon-for-targets-which-don-t-support-it.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/fixed-perl-path.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/remove-for-aarch64 create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/remove-for-all create mode 100755 poky/meta/recipes-devtools/valgrind/valgrind/run-ptest create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/s390x_vec_op_t.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/taskset_nondeterministic_tests create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/use-appropriate-march-mcpu-mfpu-for-ARM-test-apps.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind/valgrind-make-ld-XXX.so-strlen-intercept-optional.patch create mode 100644 poky/meta/recipes-devtools/valgrind/valgrind_3.18.1.bb create mode 100644 poky/meta/recipes-devtools/xmlto/xmlto-0.0.28/configure.in-drop-the-test-of-xmllint-and-xsltproc.patch create mode 100644 poky/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb create mode 100644 poky/meta/recipes-example/rust-hello-world/rust-hello-world/0001-enable-LTO.patch create mode 100644 poky/meta/recipes-example/rust-hello-world/rust-hello-world_git.bb create mode 100644 poky/meta/recipes-extended/acpica/acpica_20211217.bb create mode 100644 poky/meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb create mode 100644 poky/meta/recipes-extended/at/at/0001-remove-glibc-assumption.patch create mode 100644 poky/meta/recipes-extended/at/at/atd.init create mode 100644 poky/meta/recipes-extended/at/at/atd.service create mode 100644 poky/meta/recipes-extended/at/at/configure-add-enable-pam.patch create mode 100644 poky/meta/recipes-extended/at/at/file_replacement_with_gplv2.patch create mode 100644 poky/meta/recipes-extended/at/at/makefile-fix-parallel.patch create mode 100644 poky/meta/recipes-extended/at/at/pam.conf.patch create mode 100644 poky/meta/recipes-extended/at/at/posixtm.c create mode 100644 poky/meta/recipes-extended/at/at/posixtm.h create mode 100644 poky/meta/recipes-extended/at/at_3.2.5.bb create mode 100644 poky/meta/recipes-extended/bash/bash.inc create mode 100644 poky/meta/recipes-extended/bash/bash/CVE-2022-3715.patch create mode 100644 poky/meta/recipes-extended/bash/bash/build-tests.patch create mode 100644 poky/meta/recipes-extended/bash/bash/execute_cmd.patch create mode 100644 poky/meta/recipes-extended/bash/bash/fix-run-builtins.patch create mode 100644 poky/meta/recipes-extended/bash/bash/makerace.patch create mode 100644 poky/meta/recipes-extended/bash/bash/makerace2.patch create mode 100644 poky/meta/recipes-extended/bash/bash/mkbuiltins_have_stringize.patch create mode 100644 poky/meta/recipes-extended/bash/bash/run-bash-ptests create mode 100644 poky/meta/recipes-extended/bash/bash/run-ptest create mode 100644 poky/meta/recipes-extended/bash/bash/test-output.patch create mode 100644 poky/meta/recipes-extended/bash/bash/use_aclocal.patch create mode 100644 poky/meta/recipes-extended/bash/bash_5.1.16.bb create mode 100644 poky/meta/recipes-extended/bc/bc/0001-dc-fix-exit-code-of-q-command.patch create mode 100644 poky/meta/recipes-extended/bc/bc/libmath.h create mode 100644 poky/meta/recipes-extended/bc/bc/no-gen-libmath.patch create mode 100644 poky/meta/recipes-extended/bc/bc_1.07.1.bb create mode 100644 poky/meta/recipes-extended/blktool/blktool/0001-fix-typos-in-manpage.patch create mode 100644 poky/meta/recipes-extended/blktool/blktool/0002-fix-string-error.patch create mode 100644 poky/meta/recipes-extended/blktool/blktool/0003-Fix-3-d-argument-for-BLKROSET-it-must-be-const-int.patch create mode 100644 poky/meta/recipes-extended/blktool/blktool/0004-fix-ftbfs-glibc-2.28.patch create mode 100644 poky/meta/recipes-extended/blktool/blktool_4-7.1.bb create mode 100644 poky/meta/recipes-extended/bzip2/bzip2/Makefile.am create mode 100644 poky/meta/recipes-extended/bzip2/bzip2/configure.ac create mode 100644 poky/meta/recipes-extended/bzip2/bzip2/run-ptest create mode 100644 poky/meta/recipes-extended/bzip2/bzip2_1.0.8.bb create mode 100644 poky/meta/recipes-extended/cpio/cpio-2.13/0001-Unset-need_charset_alias-when-building-for-musl.patch create mode 100644 poky/meta/recipes-extended/cpio/cpio-2.13/0002-src-global.c-Remove-superfluous-declaration-of-progr.patch create mode 100644 poky/meta/recipes-extended/cpio/cpio-2.13/0003-Fix-calculation-of-CRC-in-copy-out-mode.patch create mode 100644 poky/meta/recipes-extended/cpio/cpio-2.13/0004-Fix-appending-to-archives-bigger-than-2G.patch create mode 100644 poky/meta/recipes-extended/cpio/cpio-2.13/CVE-2021-38185.patch create mode 100644 poky/meta/recipes-extended/cpio/cpio_2.13.bb create mode 100644 poky/meta/recipes-extended/cracklib/cracklib/0001-packlib.c-support-dictionary-byte-order-dependent.patch create mode 100644 poky/meta/recipes-extended/cracklib/cracklib/0002-craklib-fix-testnum-and-teststr-failed.patch create mode 100644 poky/meta/recipes-extended/cracklib/cracklib_2.9.8.bb create mode 100755 poky/meta/recipes-extended/cronie/cronie/crond.init create mode 100644 poky/meta/recipes-extended/cronie/cronie/crond.service create mode 100644 poky/meta/recipes-extended/cronie/cronie/crond_pam_config.patch create mode 100644 poky/meta/recipes-extended/cronie/cronie/crontab create mode 100644 poky/meta/recipes-extended/cronie/cronie_1.6.1.bb create mode 100644 poky/meta/recipes-extended/cups/cups.inc create mode 100644 poky/meta/recipes-extended/cups/cups/0001-use-echo-only-in-init.patch create mode 100644 poky/meta/recipes-extended/cups/cups/0002-don-t-try-to-run-generated-binaries.patch create mode 100644 poky/meta/recipes-extended/cups/cups/0004-cups-fix-multilib-install-file-conflicts.patch create mode 100644 poky/meta/recipes-extended/cups/cups/CVE-2023-32324.patch create mode 100644 poky/meta/recipes-extended/cups/cups/CVE-2023-32360.patch create mode 100644 poky/meta/recipes-extended/cups/cups/CVE-2023-34241.patch create mode 100644 poky/meta/recipes-extended/cups/cups/CVE-2023-4504.patch create mode 100644 poky/meta/recipes-extended/cups/cups/cups-volatiles.conf create mode 100644 poky/meta/recipes-extended/cups/cups/libexecdir.patch create mode 100644 poky/meta/recipes-extended/cups/cups/volatiles.99_cups create mode 100644 poky/meta/recipes-extended/cups/cups_2.4.2.bb create mode 100644 poky/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb create mode 100644 poky/meta/recipes-extended/diffutils/diffutils.inc create mode 100644 poky/meta/recipes-extended/diffutils/diffutils/0001-Skip-strip-trailing-cr-test-case.patch create mode 100644 poky/meta/recipes-extended/diffutils/diffutils/run-ptest create mode 100644 poky/meta/recipes-extended/diffutils/diffutils_3.10.bb create mode 100644 poky/meta/recipes-extended/ed/ed_1.18.bb create mode 100644 poky/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch create mode 100644 poky/meta/recipes-extended/ethtool/ethtool/run-ptest create mode 100644 poky/meta/recipes-extended/ethtool/ethtool_5.16.bb create mode 100644 poky/meta/recipes-extended/findutils/findutils.inc create mode 100644 poky/meta/recipes-extended/findutils/findutils/run-ptest create mode 100644 poky/meta/recipes-extended/findutils/findutils_4.9.0.bb create mode 100644 poky/meta/recipes-extended/gawk/gawk/remove-sensitive-tests.patch create mode 100644 poky/meta/recipes-extended/gawk/gawk/run-ptest create mode 100644 poky/meta/recipes-extended/gawk/gawk_5.1.1.bb create mode 100644 poky/meta/recipes-extended/ghostscript/files/do-not-check-local-libpng-source.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/CVE-2022-2085.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/CVE-2023-36664-0001.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/CVE-2023-36664-0002.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/CVE-2023-38559.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/CVE-2023-43115.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/avoid-host-contamination.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/base-genht.c-add-a-preprocessor-define-to-allow-fope.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/cups-no-gcrypt.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/cve-2023-28879.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.15-parallel-make.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.21-native-fix-disable-system-libtiff.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.21-prevent_recompiling.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript/mkdir-p.patch create mode 100644 poky/meta/recipes-extended/ghostscript/ghostscript_9.55.0.bb create mode 100644 poky/meta/recipes-extended/go-examples/go-helloworld_0.1.bb create mode 100644 poky/meta/recipes-extended/gperf/gperf/1862c6e57a308a05889c80c048dbc58bdc378dcb.patch create mode 100644 poky/meta/recipes-extended/gperf/gperf_3.1.bb create mode 100644 poky/meta/recipes-extended/grep/grep/0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch create mode 100644 poky/meta/recipes-extended/grep/grep_3.7.bb create mode 100644 poky/meta/recipes-extended/groff/files/0001-Include-config.h.patch create mode 100644 poky/meta/recipes-extended/groff/files/0001-Make-manpages-mulitlib-identical.patch create mode 100644 poky/meta/recipes-extended/groff/files/0001-replace-perl-w-with-use-warnings.patch create mode 100644 poky/meta/recipes-extended/groff/files/0001-support-musl.patch create mode 100644 poky/meta/recipes-extended/groff/files/groff-not-search-fonts-on-build-host.patch create mode 100644 poky/meta/recipes-extended/groff/groff_1.22.4.bb create mode 100644 poky/meta/recipes-extended/gzip/files/run-ptest create mode 100644 poky/meta/recipes-extended/gzip/gzip-1.12/wrong-path-fix.patch create mode 100644 poky/meta/recipes-extended/gzip/gzip.inc create mode 100644 poky/meta/recipes-extended/gzip/gzip_1.12.bb create mode 100644 poky/meta/recipes-extended/hdparm/hdparm/wiper.sh-fix-stat-path.patch create mode 100644 poky/meta/recipes-extended/hdparm/hdparm_9.63.bb create mode 100644 poky/meta/recipes-extended/images/core-image-full-cmdline.bb create mode 100644 poky/meta/recipes-extended/images/core-image-kernel-dev.bb create mode 100644 poky/meta/recipes-extended/images/core-image-testcontroller-initramfs.bb create mode 100644 poky/meta/recipes-extended/images/core-image-testcontroller.bb create mode 100644 poky/meta/recipes-extended/iptables/iptables/0001-Makefile.am-do-not-install-etc-ethertypes.patch create mode 100644 poky/meta/recipes-extended/iptables/iptables/0001-configure-Add-option-to-enable-disable-libnfnetlink.patch create mode 100644 poky/meta/recipes-extended/iptables/iptables/0002-configure.ac-only-check-conntrack-when-libnfnetlink-enabled.patch create mode 100644 poky/meta/recipes-extended/iptables/iptables/ip6tables.rules create mode 100644 poky/meta/recipes-extended/iptables/iptables/ip6tables.service create mode 100644 poky/meta/recipes-extended/iptables/iptables/iptables.rules create mode 100644 poky/meta/recipes-extended/iptables/iptables/iptables.service create mode 100644 poky/meta/recipes-extended/iptables/iptables_1.8.7.bb create mode 100644 poky/meta/recipes-extended/iputils/iputils/0001-rarpd-rdisc-Drop-PrivateUsers.patch create mode 100644 poky/meta/recipes-extended/iputils/iputils_20211215.bb create mode 100644 poky/meta/recipes-extended/less/less/CVE-2022-46663.patch create mode 100644 poky/meta/recipes-extended/less/less_600.bb create mode 100644 poky/meta/recipes-extended/libaio/libaio/00_arches.patch create mode 100644 poky/meta/recipes-extended/libaio/libaio/libaio_fix_for_mips_syscalls.patch create mode 100644 poky/meta/recipes-extended/libaio/libaio/system-linkage.patch create mode 100644 poky/meta/recipes-extended/libaio/libaio_0.3.112.bb create mode 100644 poky/meta/recipes-extended/libarchive/libarchive_3.6.2.bb create mode 100644 poky/meta/recipes-extended/libidn/libidn2_2.3.2.bb create mode 100644 poky/meta/recipes-extended/libmnl/libmnl_1.0.4.bb create mode 100644 poky/meta/recipes-extended/libnsl/libnsl2_git.bb create mode 100644 poky/meta/recipes-extended/libnss-nis/libnss-nis.bb create mode 100644 poky/meta/recipes-extended/libpipeline/libpipeline_1.5.5.bb create mode 100644 poky/meta/recipes-extended/libsolv/libsolv/0001-utils-Conside-musl-when-wrapping-qsort_r.patch create mode 100644 poky/meta/recipes-extended/libsolv/libsolv_0.7.22.bb create mode 100644 poky/meta/recipes-extended/libtirpc/libtirpc/CVE-2021-46828.patch create mode 100644 poky/meta/recipes-extended/libtirpc/libtirpc_1.3.2.bb create mode 100644 poky/meta/recipes-extended/lighttpd/lighttpd/index.html.lighttpd create mode 100644 poky/meta/recipes-extended/lighttpd/lighttpd/lighttpd create mode 100644 poky/meta/recipes-extended/lighttpd/lighttpd/lighttpd.conf create mode 100644 poky/meta/recipes-extended/lighttpd/lighttpd_1.4.67.bb create mode 100644 poky/meta/recipes-extended/logrotate/logrotate_3.20.1.bb create mode 100644 poky/meta/recipes-extended/lsb/lsb-release/0001-Remove-timestamp-from-manpage.patch create mode 100644 poky/meta/recipes-extended/lsb/lsb-release/0001-fix-lsb_release-to-work-with-busybox-head-and-find.patch create mode 100644 poky/meta/recipes-extended/lsb/lsb-release/help2man-reproducibility.patch create mode 100644 poky/meta/recipes-extended/lsb/lsb-release_1.4.bb create mode 100644 poky/meta/recipes-extended/lsof/files/lsof-remove-host-information.patch create mode 100644 poky/meta/recipes-extended/lsof/lsof_4.94.0.bb create mode 100644 poky/meta/recipes-extended/ltp/ltp/0001-Remove-OOM-tests-from-runtest-mm.patch create mode 100644 poky/meta/recipes-extended/ltp/ltp/0001-clock_gettime04-set-threshold-based-on-the-clock-res.patch create mode 100644 poky/meta/recipes-extended/ltp/ltp/0001-metadata-parse.sh-sort-filelist-for-reproducibility.patch create mode 100644 poky/meta/recipes-extended/ltp/ltp/0001-syscalls-pread02-extend-buffer-to-avoid-glibc-overflow-detection.patch create mode 100644 poky/meta/recipes-extended/ltp/ltp/disable_hanging_tests.patch create mode 100644 poky/meta/recipes-extended/ltp/ltp_20220121.bb create mode 100644 poky/meta/recipes-extended/lzip/lzip_1.23.bb create mode 100644 poky/meta/recipes-extended/man-db/files/0001-man-Move-local-variable-declaration-to-function-scop.patch create mode 100644 poky/meta/recipes-extended/man-db/files/99_mandb create mode 100644 poky/meta/recipes-extended/man-db/files/man_db.conf-avoid-multilib-install-file-conflict.patch create mode 100644 poky/meta/recipes-extended/man-db/man-db_2.10.2.bb create mode 100644 poky/meta/recipes-extended/man-pages/man-pages_5.13.bb create mode 100644 poky/meta/recipes-extended/mc/files/0001-Ticket-4200-fix-FTBFS-with-ncurses-build-with-disabl.patch create mode 100644 poky/meta/recipes-extended/mc/files/0001-mc-replace-perl-w-with-use-warnings.patch create mode 100644 poky/meta/recipes-extended/mc/files/nomandate.patch create mode 100644 poky/meta/recipes-extended/mc/mc_4.8.27.bb create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-DDF-Cleanup-validate_geometry_ddf_container.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-Fix-parsing-of-r-in-monitor-manager-mode.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-Fix-the-path-of-corosync-and-dlm-header-files-check.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-Makefile-install-mdcheck.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-Revert-tests-wait-for-complete-rebuild-in-integrity-.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-Use-CC-to-check-for-implicit-fallthrough-warning-sup.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-fix-gcc-8-format-truncation-warning.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-mdadm-Fix-optional-write-behind-parameter.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-mdadm-add-option-y-for-use-syslog-to-recive-event-re.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-mdadm-skip-test-11spare-migration.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-mdadm.h-Undefine-dprintf-before-redefining.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-tests-00raid0-add-a-test-that-validates-raid0-with-l.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-tests-00readonly-Run-udevadm-settle-before-setting-r.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-tests-02lineargrow-clear-the-superblock-at-every-ite.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-tests-04update-metadata-avoid-passing-chunk-size-to.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0001-tests-fix-raid0-tests-for-0.90-metadata.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0002-DDF-Fix-NULL-pointer-dereference-in-validate_geometr.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0003-mdadm-Grow-Fix-use-after-close-bug-by-closing-after-.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0004-monitor-Avoid-segfault-when-calling-NULL-get_bad_blo.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0005-mdadm-test-Mark-and-ignore-broken-test-failures.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/0006-tests-Add-broken-files-for-all-broken-tests.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/debian-no-Werror.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/include_sysmacros.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/mdadm-3.3.2_x32_abi_time_t.patch create mode 100644 poky/meta/recipes-extended/mdadm/files/mdadm.init create mode 100644 poky/meta/recipes-extended/mdadm/files/run-ptest create mode 100644 poky/meta/recipes-extended/mdadm/mdadm_4.2.bb create mode 100644 poky/meta/recipes-extended/mingetty/mingetty_1.08.bb create mode 100644 poky/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch create mode 100644 poky/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch create mode 100644 poky/meta/recipes-extended/minicom/minicom_2.8.bb create mode 100644 poky/meta/recipes-extended/msmtp/msmtp_1.8.20.bb create mode 100644 poky/meta/recipes-extended/net-tools/net-tools/Add_missing_headers.patch create mode 100644 poky/meta/recipes-extended/net-tools/net-tools/net-tools-config.h create mode 100644 poky/meta/recipes-extended/net-tools/net-tools/net-tools-config.make create mode 100644 poky/meta/recipes-extended/net-tools/net-tools_2.10.bb create mode 100644 poky/meta/recipes-extended/newt/files/0001-detect-gold-as-GNU-linker-too.patch create mode 100644 poky/meta/recipes-extended/newt/files/Makefile.in-Add-tinfo-library-to-the-linking-librari.patch create mode 100644 poky/meta/recipes-extended/newt/files/cross_ar.patch create mode 100644 poky/meta/recipes-extended/newt/libnewt_0.52.23.bb create mode 100644 poky/meta/recipes-extended/packagegroups/packagegroup-core-base-utils.bb create mode 100644 poky/meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb create mode 100644 poky/meta/recipes-extended/pam/libpam/0001-pam_motd-do-not-rely-on-all-filesystems-providing-a-.patch create mode 100644 poky/meta/recipes-extended/pam/libpam/0001-run-xtests.sh-check-whether-files-exist.patch create mode 100644 poky/meta/recipes-extended/pam/libpam/99_pam create mode 100644 poky/meta/recipes-extended/pam/libpam/CVE-2022-28321-0002.patch create mode 100644 poky/meta/recipes-extended/pam/libpam/libpam-xtests.patch create mode 100644 poky/meta/recipes-extended/pam/libpam/pam-volatiles.conf create mode 100644 poky/meta/recipes-extended/pam/libpam/pam.d/common-account create mode 100644 poky/meta/recipes-extended/pam/libpam/pam.d/common-auth create mode 100644 poky/meta/recipes-extended/pam/libpam/pam.d/common-password create mode 100644 poky/meta/recipes-extended/pam/libpam/pam.d/common-session create mode 100644 poky/meta/recipes-extended/pam/libpam/pam.d/common-session-noninteractive create mode 100644 poky/meta/recipes-extended/pam/libpam/pam.d/other create mode 100644 poky/meta/recipes-extended/pam/libpam/run-ptest create mode 100644 poky/meta/recipes-extended/pam/libpam_1.5.2.bb create mode 100644 poky/meta/recipes-extended/parted/files/check-vfat.patch create mode 100644 poky/meta/recipes-extended/parted/files/fix-doc-mandir.patch create mode 100644 poky/meta/recipes-extended/parted/files/run-ptest create mode 100644 poky/meta/recipes-extended/parted/parted_3.4.bb create mode 100644 poky/meta/recipes-extended/pbzip2/pbzip2/0001-pbzip2-Fix-invalid-suffix-on-literal-C-11-warning.patch create mode 100644 poky/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb create mode 100644 poky/meta/recipes-extended/perl/libconvert-asn1-perl_0.33.bb create mode 100644 poky/meta/recipes-extended/perl/libtimedate-perl_2.30.bb create mode 100644 poky/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb create mode 100644 poky/meta/recipes-extended/perl/libxml-sax-base-perl_1.09.bb create mode 100644 poky/meta/recipes-extended/perl/libxml-sax-perl_1.02.bb create mode 100644 poky/meta/recipes-extended/pigz/pigz_2.7.bb create mode 100644 poky/meta/recipes-extended/procps/procps/0001-w.c-correct-musl-builds.patch create mode 100644 poky/meta/recipes-extended/procps/procps/0002-proc-escape.c-add-missing-include.patch create mode 100644 poky/meta/recipes-extended/procps/procps/CVE-2023-4016.patch create mode 100644 poky/meta/recipes-extended/procps/procps/sysctl.conf create mode 100644 poky/meta/recipes-extended/procps/procps_3.3.17.bb create mode 100644 poky/meta/recipes-extended/psmisc/psmisc.inc create mode 100644 poky/meta/recipes-extended/psmisc/psmisc/0001-Use-UINTPTR_MAX-instead-of-__WORDSIZE.patch create mode 100644 poky/meta/recipes-extended/psmisc/psmisc_23.4.bb create mode 100644 poky/meta/recipes-extended/quota/quota/0001-quota-Use-realloc-3-instead-of-reallocarray-3.patch create mode 100644 poky/meta/recipes-extended/quota/quota/fcntl.patch create mode 100644 poky/meta/recipes-extended/quota/quota_4.06.bb create mode 100644 poky/meta/recipes-extended/rpcbind/rpcbind/0001-systemd-use-EnvironmentFile.patch create mode 100644 poky/meta/recipes-extended/rpcbind/rpcbind/init.d create mode 100644 poky/meta/recipes-extended/rpcbind/rpcbind/rpcbind.conf create mode 100644 poky/meta/recipes-extended/rpcbind/rpcbind/rpcbind_add_option_to_fix_port_number.patch create mode 100644 poky/meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb create mode 100644 poky/meta/recipes-extended/rpcsvc-proto/rpcsvc-proto.bb create mode 100644 poky/meta/recipes-extended/rpcsvc-proto/rpcsvc-proto/0001-Use-cross-compiled-rpcgen.patch create mode 100644 poky/meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch create mode 100644 poky/meta/recipes-extended/screen/screen/0001-fix-for-multijob-build.patch create mode 100644 poky/meta/recipes-extended/screen/screen/0002-comm.h-now-depends-on-term.h.patch create mode 100644 poky/meta/recipes-extended/screen/screen/CVE-2023-24626.patch create mode 100644 poky/meta/recipes-extended/screen/screen/screen.pam create mode 100644 poky/meta/recipes-extended/screen/screen_4.9.0.bb create mode 100644 poky/meta/recipes-extended/sed/sed/run-ptest create mode 100644 poky/meta/recipes-extended/sed/sed_4.8.bb create mode 100644 poky/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch create mode 100644 poky/meta/recipes-extended/shadow/files/0001-Drop-nsswitch.conf-message-when-not-in-place-eg.-musl.patch create mode 100644 poky/meta/recipes-extended/shadow/files/0001-Overhaul-valid_field.patch create mode 100644 poky/meta/recipes-extended/shadow/files/CVE-2023-29383.patch create mode 100644 poky/meta/recipes-extended/shadow/files/CVE-2023-4641-0001.patch create mode 100644 poky/meta/recipes-extended/shadow/files/CVE-2023-4641-0002.patch create mode 100644 poky/meta/recipes-extended/shadow/files/commonio.c-fix-unexpected-open-failure-in-chroot-env.patch create mode 100644 poky/meta/recipes-extended/shadow/files/login.defs_shadow-sysroot create mode 100644 poky/meta/recipes-extended/shadow/files/login_defs_pam.sed create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/chfn create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/chpasswd create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/chsh create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/login create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/newusers create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/passwd create mode 100644 poky/meta/recipes-extended/shadow/files/pam.d/su create mode 100644 poky/meta/recipes-extended/shadow/files/securetty create mode 100644 poky/meta/recipes-extended/shadow/files/shadow-4.1.3-dots-in-usernames.patch create mode 100644 poky/meta/recipes-extended/shadow/files/shadow-relaxed-usernames.patch create mode 100644 poky/meta/recipes-extended/shadow/files/shadow-update-pam-conf.patch create mode 100644 poky/meta/recipes-extended/shadow/files/useradd create mode 100644 poky/meta/recipes-extended/shadow/shadow-securetty_4.6.bb create mode 100644 poky/meta/recipes-extended/shadow/shadow-sysroot_4.6.bb create mode 100644 poky/meta/recipes-extended/shadow/shadow.inc create mode 100644 poky/meta/recipes-extended/shadow/shadow_4.11.1.bb create mode 100644 poky/meta/recipes-extended/slang/slang/array_test.patch create mode 100644 poky/meta/recipes-extended/slang/slang/dont-link-to-host.patch create mode 100644 poky/meta/recipes-extended/slang/slang/no-x.patch create mode 100644 poky/meta/recipes-extended/slang/slang/run-ptest create mode 100644 poky/meta/recipes-extended/slang/slang/terminfo_fixes.patch create mode 100644 poky/meta/recipes-extended/slang/slang/test-add-output-in-the-format-result-testname.patch create mode 100644 poky/meta/recipes-extended/slang/slang_2.3.2.bb create mode 100644 poky/meta/recipes-extended/stress-ng/stress-ng-0.13.12/0001-stress-cpu-disable-float128-math-on-powerpc64-to-avo.patch create mode 100644 poky/meta/recipes-extended/stress-ng/stress-ng_0.13.12.bb create mode 100644 poky/meta/recipes-extended/sudo/files/0001-lib-util-mksigname.c-correctly-include-header-for-ou.patch create mode 100644 poky/meta/recipes-extended/sudo/files/0001-sudo.conf.in-fix-conflict-with-multilib.patch create mode 100644 poky/meta/recipes-extended/sudo/files/sudo.pam create mode 100644 poky/meta/recipes-extended/sudo/sudo.inc create mode 100644 poky/meta/recipes-extended/sudo/sudo_1.9.13p3.bb create mode 100644 poky/meta/recipes-extended/sysklogd/files/0001-syslogd.service-KillMode-process-is-not-recommended-.patch create mode 100644 poky/meta/recipes-extended/sysklogd/files/0002-Fix-62-early-log-messages-lost-when-running-in-syste.patch create mode 100755 poky/meta/recipes-extended/sysklogd/files/sysklogd create mode 100644 poky/meta/recipes-extended/sysklogd/sysklogd_2.3.0.bb create mode 100644 poky/meta/recipes-extended/sysstat/sysstat.inc create mode 100644 poky/meta/recipes-extended/sysstat/sysstat/0001-configure.in-remove-check-for-chkconfig.patch create mode 100644 poky/meta/recipes-extended/sysstat/sysstat/99_sysstat create mode 100644 poky/meta/recipes-extended/sysstat/sysstat/CVE-2022-39377.patch create mode 100644 poky/meta/recipes-extended/sysstat/sysstat/CVE-2023-33204.patch create mode 100644 poky/meta/recipes-extended/sysstat/sysstat/sysstat.service create mode 100644 poky/meta/recipes-extended/sysstat/sysstat_12.4.5.bb create mode 100644 poky/meta/recipes-extended/tar/tar_1.35.bb create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/0001-Fix-build-with-clang.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/0001-Fix-implicit-function-declaration-warnings.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/0001-Remove-fgets-extern-declaration.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/00_man_quoting.diff create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/01_man_portability.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/05_wildcard_matching.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/06_fix_gethostbyname.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/10_usagi-ipv6.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/11_tcpd_blacklist.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/11_usagi_fix.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/12_makefile_config.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/13_shlib_weaksym.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/14_cidr_support.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/15_match_clarify.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/expand_remote_port.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/fix_warnings.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/fix_warnings2.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/have_strerror.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ldflags.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/makefile-fix-parallel.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/man_fromhost.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/musl-decls.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/rename_strings_variable.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/restore_sigalarm.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/rfc931.diff create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/safe_finger.8 create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/safe_finger.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/sig_fix.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/siglongjmp.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/socklen_t.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/tcpdchk_libwrapped.patch create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/try-from.8 create mode 100644 poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb create mode 100644 poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb create mode 100644 poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/COPYING create mode 100644 poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py create mode 100644 poky/meta/recipes-extended/texinfo/texinfo/0001-gnulib-Update.patch create mode 100644 poky/meta/recipes-extended/texinfo/texinfo/disable-native-tools.patch create mode 100644 poky/meta/recipes-extended/texinfo/texinfo/dont-depend-on-help2man.patch create mode 100644 poky/meta/recipes-extended/texinfo/texinfo/link-zip.patch create mode 100644 poky/meta/recipes-extended/texinfo/texinfo/use_host_makedoc.patch create mode 100644 poky/meta/recipes-extended/texinfo/texinfo_6.8.bb create mode 100644 poky/meta/recipes-extended/time/time_1.9.bb create mode 100644 poky/meta/recipes-extended/timezone/timezone.inc create mode 100644 poky/meta/recipes-extended/timezone/tzcode-native.bb create mode 100644 poky/meta/recipes-extended/timezone/tzdata.bb create mode 100644 poky/meta/recipes-extended/unzip/unzip/0001-configure-Pass-LDFLAGS-to-tests-doing-link-step.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/0001-unix-configure-fix-detection-for-cross-compilation.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/0001-unzip-fix-CVE-2018-1000035.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/06-unzip60-alt-iconv-utf8_CVE-2015-1315.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/09-cve-2014-8139-crc-overflow.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/10-cve-2014-8140-test-compr-eb.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/11-cve-2014-8141-getzip64data.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/18-cve-2014-9913-unzip-buffer-overflow.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/19-cve-2016-9844-zipinfo-buffer-overflow.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2015-7696.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2015-7697.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2018-18384.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2019-13232_p1.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2019-13232_p2.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2019-13232_p3.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2021-4217.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2022-0529.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/CVE-2022-0530.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/avoid-strip.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/cve-2014-9636.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/define-ldflags.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/fix-security-format.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/symlink.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip/unzip_optimization.patch create mode 100644 poky/meta/recipes-extended/unzip/unzip_6.0.bb create mode 100644 poky/meta/recipes-extended/watchdog/watchdog-config.bb create mode 100644 poky/meta/recipes-extended/watchdog/watchdog-config/watchdog.conf create mode 100644 poky/meta/recipes-extended/watchdog/watchdog-config/watchdog.default create mode 100644 poky/meta/recipes-extended/watchdog/watchdog/0001-shutdown-Do-not-guard-sys-quota.h-sys-swap.h-and-sys.patch create mode 100644 poky/meta/recipes-extended/watchdog/watchdog/0001-watchdog-remove-interdependencies-of-watchdog-and-wd.patch create mode 100644 poky/meta/recipes-extended/watchdog/watchdog/0001-wd_keepalive.service-use-run-instead-of-var-run.patch create mode 100644 poky/meta/recipes-extended/watchdog/watchdog/watchdog.init create mode 100644 poky/meta/recipes-extended/watchdog/watchdog/wd_keepalive.init create mode 100644 poky/meta/recipes-extended/watchdog/watchdog_5.16.bb create mode 100644 poky/meta/recipes-extended/wget/wget.inc create mode 100644 poky/meta/recipes-extended/wget/wget/0002-improve-reproducibility.patch create mode 100644 poky/meta/recipes-extended/wget/wget_1.21.4.bb create mode 100644 poky/meta/recipes-extended/which/which-2.21/automake.patch create mode 100644 poky/meta/recipes-extended/which/which_2.21.bb create mode 100644 poky/meta/recipes-extended/xdg-utils/xdg-utils/0001-Don-t-build-the-in-script-manual.patch create mode 100644 poky/meta/recipes-extended/xdg-utils/xdg-utils/0001-Reinstate-xdg-terminal.patch create mode 100644 poky/meta/recipes-extended/xdg-utils/xdg-utils/1f199813e0eb0246f63b54e9e154970e609575af.patch create mode 100644 poky/meta/recipes-extended/xdg-utils/xdg-utils_1.1.3.bb create mode 100644 poky/meta/recipes-extended/xinetd/xinetd/xinetd.default create mode 100644 poky/meta/recipes-extended/xinetd/xinetd/xinetd.init create mode 100644 poky/meta/recipes-extended/xinetd/xinetd/xinetd.service create mode 100644 poky/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb create mode 100644 poky/meta/recipes-extended/xz/xz_5.2.6.bb create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/0001-configure-Use-CFLAGS-and-LDFLAGS-when-doing-link-tes.patch create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/0001-configure-use-correct-CPP.patch create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/0001-unix-configure-use-_Static_assert-to-do-correct-dete.patch create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/0002-configure-support-PIC-code-build.patch create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/10-remove-build-date.patch create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/fix-security-format.patch create mode 100644 poky/meta/recipes-extended/zip/zip-3.0/zipnote-crashes-with-segfault.patch create mode 100644 poky/meta/recipes-extended/zip/zip_3.0.bb create mode 100644 poky/meta/recipes-extended/zstd/zstd_1.5.2.bb create mode 100644 poky/meta/recipes-gnome/epiphany/epiphany_42.4.bb create mode 100644 poky/meta/recipes-gnome/epiphany/files/0002-help-meson.build-disable-the-use-of-yelp.patch create mode 100644 poky/meta/recipes-gnome/epiphany/files/CVE-2023-26081.patch create mode 100644 poky/meta/recipes-gnome/epiphany/files/distributor.patch create mode 100644 poky/meta/recipes-gnome/epiphany/files/migrator.patch create mode 100644 poky/meta/recipes-gnome/gcr/gcr/0001-gcr-meson.build-fix-one-parallel-build-failure.patch create mode 100644 poky/meta/recipes-gnome/gcr/gcr/b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch create mode 100644 poky/meta/recipes-gnome/gcr/gcr_3.40.0.bb create mode 100644 poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch create mode 100644 poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/fatal-loader.patch create mode 100644 poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/run-ptest create mode 100644 poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb create mode 100644 poky/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb create mode 100644 poky/meta/recipes-gnome/gnome/adwaita-icon-theme/0001-Don-t-use-AC_CANONICAL_HOST.patch create mode 100644 poky/meta/recipes-gnome/gnome/adwaita-icon-theme/0001-Run-installation-commands-as-shell-jobs.patch create mode 100644 poky/meta/recipes-gnome/gnome/adwaita-icon-theme_41.0.bb create mode 100644 poky/meta/recipes-gnome/gnome/gconf/create_config_directory.patch create mode 100644 poky/meta/recipes-gnome/gnome/gconf/python3.patch create mode 100644 poky/meta/recipes-gnome/gnome/gconf/remove_plus_from_invalid_characters_list.patch create mode 100644 poky/meta/recipes-gnome/gnome/gconf/unable-connect-dbus.patch create mode 100644 poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb create mode 100644 poky/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-Relocate-the-repository-directory-for-native-builds.patch create mode 100644 poky/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-g-ir-tool-template.in-fix-girdir-path.patch create mode 100644 poky/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.72.0.bb create mode 100644 poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_42.0.bb create mode 100644 poky/meta/recipes-gnome/gtk+/gtk+3.inc create mode 100644 poky/meta/recipes-gnome/gtk+/gtk+3/0002-Do-not-try-to-initialize-GL-without-libGL.patch create mode 100644 poky/meta/recipes-gnome/gtk+/gtk+3/0003-Add-disable-opengl-configure-option.patch create mode 100644 poky/meta/recipes-gnome/gtk+/gtk+3/link_fribidi.patch create mode 100644 poky/meta/recipes-gnome/gtk+/gtk+3_3.24.34.bb create mode 100644 poky/meta/recipes-gnome/gtk-doc/files/0001-Do-not-error-out-if-xsltproc-is-not-found.patch create mode 100644 poky/meta/recipes-gnome/gtk-doc/files/0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch create mode 100644 poky/meta/recipes-gnome/gtk-doc/files/conditionaltests.patch create mode 100644 poky/meta/recipes-gnome/gtk-doc/files/no-clobber.patch create mode 100644 poky/meta/recipes-gnome/gtk-doc/files/pkg-config-native.patch create mode 100644 poky/meta/recipes-gnome/gtk-doc/gtk-doc_1.33.2.bb create mode 100644 poky/meta/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.17.bb create mode 100644 poky/meta/recipes-gnome/json-glib/json-glib/run-ptest create mode 100644 poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb create mode 100644 poky/meta/recipes-gnome/libdazzle/libdazzle_3.44.0.bb create mode 100644 poky/meta/recipes-gnome/libgudev/libgudev_237.bb create mode 100644 poky/meta/recipes-gnome/libhandy/libhandy/0001-Add-private-headers.patch create mode 100644 poky/meta/recipes-gnome/libhandy/libhandy_1.5.0.bb create mode 100644 poky/meta/recipes-gnome/libnotify/libnotify_0.7.9.bb create mode 100644 poky/meta/recipes-gnome/librsvg/librsvg/0001-Makefile.am-pass-rust-target-to-cargo-also-when-not-.patch create mode 100644 poky/meta/recipes-gnome/librsvg/librsvg/0001-system-deps-src-lib.rs-do-not-probe-into-harcoded-li.patch create mode 100644 poky/meta/recipes-gnome/librsvg/librsvg_2.52.10.bb create mode 100644 poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb create mode 100644 poky/meta/recipes-graphics/builder/builder_0.1.bb create mode 100644 poky/meta/recipes-graphics/builder/files/builder_session.sh create mode 100644 poky/meta/recipes-graphics/cairo/cairo/CVE-2018-19876.patch create mode 100644 poky/meta/recipes-graphics/cairo/cairo/CVE-2019-6461.patch create mode 100644 poky/meta/recipes-graphics/cairo/cairo/CVE-2019-6462.patch create mode 100644 poky/meta/recipes-graphics/cairo/cairo/CVE-2020-35492.patch create mode 100644 poky/meta/recipes-graphics/cairo/cairo/cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff create mode 100644 poky/meta/recipes-graphics/cairo/cairo_1.16.0.bb create mode 100644 poky/meta/recipes-graphics/cantarell-fonts/cantarell-fonts_0.303.1.bb create mode 100644 poky/meta/recipes-graphics/drm/libdrm_2.4.110.bb create mode 100644 poky/meta/recipes-graphics/fontconfig/fontconfig/revert-static-pkgconfig.patch create mode 100644 poky/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb create mode 100644 poky/meta/recipes-graphics/freetype/freetype/CVE-2022-27404.patch create mode 100644 poky/meta/recipes-graphics/freetype/freetype/CVE-2022-27405.patch create mode 100644 poky/meta/recipes-graphics/freetype/freetype/CVE-2022-27406.patch create mode 100644 poky/meta/recipes-graphics/freetype/freetype/CVE-2023-2004.patch create mode 100644 poky/meta/recipes-graphics/freetype/freetype_2.11.1.bb create mode 100644 poky/meta/recipes-graphics/glew/glew/0001-Fix-build-race-in-Makefile.patch create mode 100644 poky/meta/recipes-graphics/glew/glew/no-strip.patch create mode 100644 poky/meta/recipes-graphics/glew/glew/notempdir.patch create mode 100644 poky/meta/recipes-graphics/glew/glew_2.2.0.bb create mode 100644 poky/meta/recipes-graphics/glslang/glslang/0001-generate-glslang-pkg-config.patch create mode 100644 poky/meta/recipes-graphics/glslang/glslang_1.3.204.1.bb create mode 100644 poky/meta/recipes-graphics/harfbuzz/harfbuzz/0001-Fix-conditional.patch create mode 100644 poky/meta/recipes-graphics/harfbuzz/harfbuzz/CVE-2022-33068.patch create mode 100644 poky/meta/recipes-graphics/harfbuzz/harfbuzz/CVE-2023-25193-pre1.patch create mode 100644 poky/meta/recipes-graphics/harfbuzz/harfbuzz/CVE-2023-25193.patch create mode 100644 poky/meta/recipes-graphics/harfbuzz/harfbuzz_4.0.1.bb create mode 100644 poky/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools/0001-lib-meson.build-fix-meson-0.60-compatibility.patch create mode 100644 poky/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools_git.bb create mode 100644 poky/meta/recipes-graphics/images/core-image-weston-sdk.bb create mode 100644 poky/meta/recipes-graphics/images/core-image-weston.bb create mode 100644 poky/meta/recipes-graphics/images/core-image-x11.bb create mode 100644 poky/meta/recipes-graphics/jpeg/files/0001-libjpeg-turbo-fix-package_qa-error.patch create mode 100644 poky/meta/recipes-graphics/jpeg/files/CVE-2023-2804-1.patch create mode 100644 poky/meta/recipes-graphics/jpeg/files/CVE-2023-2804-2.patch create mode 100644 poky/meta/recipes-graphics/jpeg/libjpeg-turbo_2.1.5.1.bb create mode 100644 poky/meta/recipes-graphics/kmscube/kmscube/0001-texturator-Use-correct-GL-extension-header.patch create mode 100644 poky/meta/recipes-graphics/kmscube/kmscube_git.bb create mode 100644 poky/meta/recipes-graphics/libepoxy/libepoxy_1.5.10.bb create mode 100644 poky/meta/recipes-graphics/libfakekey/libfakekey_git.bb create mode 100644 poky/meta/recipes-graphics/libmatchbox/libmatchbox_1.12.bb create mode 100644 poky/meta/recipes-graphics/libsdl2/libsdl2/0001-Disable-libunwind-in-native-OE-builds-by-not-looking.patch create mode 100644 poky/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-potential-memory-leak-in-GLES_CreateTextur.patch create mode 100644 poky/meta/recipes-graphics/libsdl2/libsdl2/0001-sdlchecks.cmake-pass-cflags-to-the-appropriate-cmake.patch create mode 100644 poky/meta/recipes-graphics/libsdl2/libsdl2/optional-libunwind-generic.patch create mode 100644 poky/meta/recipes-graphics/libsdl2/libsdl2_2.0.20.bb create mode 100644 poky/meta/recipes-graphics/libva/libva-initial_2.14.0.bb create mode 100644 poky/meta/recipes-graphics/libva/libva-utils_2.14.0.bb create mode 100644 poky/meta/recipes-graphics/libva/libva.inc create mode 100644 poky/meta/recipes-graphics/libva/libva_2.14.0.bb create mode 100644 poky/meta/recipes-graphics/matchbox-session/matchbox-session/matchbox-session create mode 100644 poky/meta/recipes-graphics/matchbox-session/matchbox-session_0.1.bb create mode 100644 poky/meta/recipes-graphics/matchbox-wm/matchbox-wm/0001-Fix-build-with-gcc-10.patch create mode 100644 poky/meta/recipes-graphics/matchbox-wm/matchbox-wm/kbdconfig create mode 100644 poky/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.2.2.bb create mode 100644 poky/meta/recipes-graphics/menu-cache/files/0001-Support-gcc10-compilation.patch create mode 100644 poky/meta/recipes-graphics/menu-cache/menu-cache_1.1.0.bb create mode 100644 poky/meta/recipes-graphics/mesa/files/0001-Revert-egl-wayland-deprecate-drm_handle_format-and-d.patch create mode 100644 poky/meta/recipes-graphics/mesa/files/0001-futex.h-Define-__NR_futex-if-it-does-not-exist.patch create mode 100644 poky/meta/recipes-graphics/mesa/files/0001-meson-misdetects-64bit-atomics-on-mips-clang.patch create mode 100644 poky/meta/recipes-graphics/mesa/files/0001-meson.build-check-for-all-linux-host_os-combinations.patch create mode 100644 poky/meta/recipes-graphics/mesa/files/0001-util-format-Check-for-NEON-before-using-it.patch create mode 100644 poky/meta/recipes-graphics/mesa/files/0002-meson.build-make-TLS-ELF-optional.patch create mode 100644 poky/meta/recipes-graphics/mesa/libglu_9.0.2.bb create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0001-mesa-demos-Add-missing-data-files.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0007-Install-few-more-test-programs.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0008-glsl-perf-Add-few-missing-.glsl-.vert-.frag-files-to.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0009-glsl-perf-Install-.glsl-.vert-.frag-files.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos/0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch create mode 100644 poky/meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb create mode 100644 poky/meta/recipes-graphics/mesa/mesa-gl_22.0.3.bb create mode 100644 poky/meta/recipes-graphics/mesa/mesa.inc create mode 100644 poky/meta/recipes-graphics/mesa/mesa_22.0.3.bb create mode 100644 poky/meta/recipes-graphics/mini-x-session/files/mini-x-session create mode 100644 poky/meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb create mode 100644 poky/meta/recipes-graphics/packagegroups/packagegroup-core-weston.bb create mode 100644 poky/meta/recipes-graphics/packagegroups/packagegroup-core-x11-base.bb create mode 100644 poky/meta/recipes-graphics/packagegroups/packagegroup-core-x11-xserver.bb create mode 100644 poky/meta/recipes-graphics/packagegroups/packagegroup-core-x11.bb create mode 100644 poky/meta/recipes-graphics/pango/pango/run-ptest create mode 100644 poky/meta/recipes-graphics/pango/pango_1.50.4.bb create mode 100644 poky/meta/recipes-graphics/piglit/piglit/0001-Add-a-missing-include-for-htobe32-definition.patch create mode 100644 poky/meta/recipes-graphics/piglit/piglit/0001-cmake-install-bash-completions-in-the-right-place.patch create mode 100644 poky/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch create mode 100644 poky/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch create mode 100644 poky/meta/recipes-graphics/piglit/piglit/0005-cmake-Don-t-enable-GLX-if-tests-are-disabled.patch create mode 100644 poky/meta/recipes-graphics/piglit/piglit_git.bb create mode 100644 poky/meta/recipes-graphics/pong-clock/pong-clock/pong-clock-no-flicker.c create mode 100644 poky/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb create mode 100644 poky/meta/recipes-graphics/shaderc/files/0001-cmake-disable-building-external-dependencies.patch create mode 100644 poky/meta/recipes-graphics/shaderc/files/0002-libshaderc_util-fix-glslang-header-file-location.patch create mode 100644 poky/meta/recipes-graphics/shaderc/shaderc_2022.1.bb create mode 100644 poky/meta/recipes-graphics/spir/spirv-headers_1.3.204.1.bb create mode 100644 poky/meta/recipes-graphics/spir/spirv-tools_1.3.204.1.bb create mode 100644 poky/meta/recipes-graphics/startup-notification/startup-notification-0.12/obsolete_automake_macros.patch create mode 100644 poky/meta/recipes-graphics/startup-notification/startup-notification-0.12/time_t.patch create mode 100644 poky/meta/recipes-graphics/startup-notification/startup-notification_0.12.bb create mode 100644 poky/meta/recipes-graphics/ttf-fonts/liberation-fonts/30-liberation-aliases.conf create mode 100644 poky/meta/recipes-graphics/ttf-fonts/liberation-fonts_2.1.5.bb create mode 100644 poky/meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb create mode 100644 poky/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch create mode 100644 poky/meta/recipes-graphics/virglrenderer/virglrenderer/cve-2022-0135.patch create mode 100644 poky/meta/recipes-graphics/virglrenderer/virglrenderer/cve-2022-0175.patch create mode 100644 poky/meta/recipes-graphics/virglrenderer/virglrenderer_0.9.1.bb create mode 100644 poky/meta/recipes-graphics/vulkan/vulkan-headers_1.3.204.1.bb create mode 100644 poky/meta/recipes-graphics/vulkan/vulkan-loader_1.3.204.1.bb create mode 100644 poky/meta/recipes-graphics/vulkan/vulkan-samples/0001-CMakeLists.txt-do-not-hardcode-lib-as-installation-t.patch create mode 100644 poky/meta/recipes-graphics/vulkan/vulkan-samples/debugfix.patch create mode 100644 poky/meta/recipes-graphics/vulkan/vulkan-samples_git.bb create mode 100644 poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.204.1.bb create mode 100644 poky/meta/recipes-graphics/waffle/waffle/0001-meson.build-request-native-wayland-scanner.patch create mode 100644 poky/meta/recipes-graphics/waffle/waffle/0001-waffle-do-not-make-core-protocol-into-the-library.patch create mode 100644 poky/meta/recipes-graphics/waffle/waffle_1.7.2.bb create mode 100644 poky/meta/recipes-graphics/wayland/libinput/determinism.patch create mode 100644 poky/meta/recipes-graphics/wayland/libinput/run-ptest create mode 100644 poky/meta/recipes-graphics/wayland/libinput_1.19.4.bb create mode 100644 poky/meta/recipes-graphics/wayland/mtdev_1.1.6.bb create mode 100644 poky/meta/recipes-graphics/wayland/required-distro-features.inc create mode 100644 poky/meta/recipes-graphics/wayland/wayland-protocols_1.25.bb create mode 100644 poky/meta/recipes-graphics/wayland/wayland-utils_1.0.0.bb create mode 100644 poky/meta/recipes-graphics/wayland/wayland/0001-build-Fix-strndup-detection-on-MinGW.patch create mode 100644 poky/meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch create mode 100644 poky/meta/recipes-graphics/wayland/wayland/CVE-2021-3782.patch create mode 100644 poky/meta/recipes-graphics/wayland/wayland/run-ptest create mode 100644 poky/meta/recipes-graphics/wayland/wayland_1.20.0.bb create mode 100644 poky/meta/recipes-graphics/wayland/weston-init.bb create mode 100644 poky/meta/recipes-graphics/wayland/weston-init/init create mode 100644 poky/meta/recipes-graphics/wayland/weston-init/weston-autologin create mode 100755 poky/meta/recipes-graphics/wayland/weston-init/weston-start create mode 100644 poky/meta/recipes-graphics/wayland/weston-init/weston.env create mode 100644 poky/meta/recipes-graphics/wayland/weston-init/weston.ini create mode 100644 poky/meta/recipes-graphics/wayland/weston-init/weston.service create mode 100644 poky/meta/recipes-graphics/wayland/weston-init/weston.socket create mode 100644 poky/meta/recipes-graphics/wayland/weston/systemd-notify.weston-start create mode 100644 poky/meta/recipes-graphics/wayland/weston/weston.desktop create mode 100644 poky/meta/recipes-graphics/wayland/weston/weston.png create mode 100644 poky/meta/recipes-graphics/wayland/weston/xwayland.weston-start create mode 100644 poky/meta/recipes-graphics/wayland/weston_10.0.2.bb create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/X11/Xsession create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/X11/Xsession.d/13xdgbasedirs.sh create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/X11/Xsession.d/89xdgautostart.sh create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/X11/Xsession.d/90XWindowManager.sh create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/Xserver create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/capability.conf create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/gplv2-license.patch create mode 100755 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm.conf.in create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm.service.in create mode 100644 poky/meta/recipes-graphics/x11-common/xserver-nodm-init_3.0.bb create mode 100644 poky/meta/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_git.bb create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/pointercal-xinput/pointercal.xinput create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/pointercal-xinput/qemuall/pointercal.xinput create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/xinput-calibrator/0001-calibrator.hh-Include-string-to-get-std-string.patch create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/xinput-calibrator/30xinput_calibrate.sh create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/xinput-calibrator/Allow-xinput_calibrator_pointercal.sh-to-be-run-as-n.patch create mode 100644 poky/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/mkfontscale_1.2.2.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/rgb_1.0.6.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/x11perf_1.6.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xauth_1.1.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xdpyinfo/disable-xkb.patch create mode 100644 poky/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xev/diet-x11.patch create mode 100644 poky/meta/recipes-graphics/xorg-app/xev_1.2.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xeyes_1.2.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xhost_1.0.8.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xinit/0001-Make-manpage-multilib-identical.patch create mode 100644 poky/meta/recipes-graphics/xorg-app/xinit_1.4.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xinput_1.6.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xkbcomp_1.4.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xmodmap_1.0.11.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xorg-app-common.inc create mode 100644 poky/meta/recipes-graphics/xorg-app/xprop_1.2.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xrandr_1.5.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xset/disable-xkb.patch create mode 100644 poky/meta/recipes-graphics/xorg-app/xset_1.2.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xvinfo_1.1.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-app/xwininfo_1.1.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-input-evdev_2.10.6.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-input-keyboard_1.9.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-input-libinput_1.2.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-input-mouse_1.9.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-input-synaptics_1.9.2.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-input-vmmouse_13.1.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-video-cirrus_1.5.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-video-fbdev_0.5.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-video-intel_git.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-video-vesa_2.5.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-video-vmware/0002-add-option-for-vmwgfx.patch create mode 100644 poky/meta/recipes-graphics/xorg-driver/xf86-video-vmware_13.3.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-driver/xorg-driver-common.inc create mode 100644 poky/meta/recipes-graphics/xorg-driver/xorg-driver-input.inc create mode 100644 poky/meta/recipes-graphics/xorg-driver/xorg-driver-video.inc create mode 100644 poky/meta/recipes-graphics/xorg-font/encodings/nocompiler.patch create mode 100644 poky/meta/recipes-graphics/xorg-font/encodings_1.0.6.bb create mode 100644 poky/meta/recipes-graphics/xorg-font/font-alias-1.0.4/nocompiler.patch create mode 100644 poky/meta/recipes-graphics/xorg-font/font-alias_1.0.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-font/font-util_1.3.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts.bb create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-1.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-10.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-11.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-13.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-14.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-15.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-16.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-2.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-3.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-4.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-5.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-7.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-8.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-ISO8859-9.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13-KOI8-R.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-1.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-10.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-13.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-14.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-15.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-16.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-2.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-3.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-4.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-5.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-7.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-8.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B-ISO8859-9.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13B.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-1.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-10.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-13.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-14.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-15.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-16.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-2.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-3.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-4.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-5.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-7.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O-ISO8859-9.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/6x13O.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/cursor.pcf.gz create mode 100644 poky/meta/recipes-graphics/xorg-font/xorg-minimal-fonts/misc/fonts.dir create mode 100644 poky/meta/recipes-graphics/xorg-lib/libdmx_1.1.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libfontenc_1.1.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libice_1.0.10.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libpciaccess_0.16.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libsm_1.2.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11-compose-data/0001-Drop-x11-dependencies.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11-compose-data_1.6.8.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11/CVE-2022-3554.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11/CVE-2022-3555.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11/CVE-2023-3138.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11/disable_tests.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libx11_1.7.3.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxcb/disable-check.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxcb_1.14.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxcomposite/change-include-order.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxcomposite_0.4.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxcursor_1.2.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxcvt_0.1.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxdamage_1.1.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxdmcp_1.1.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxext_1.3.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxfixes_6.0.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxfont2_2.0.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxfont_1.5.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxft_2.3.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxi_1.8.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxinerama_1.1.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxkbcommon_1.4.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxkbfile_1.1.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxmu_1.1.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxpm_3.5.16.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxrandr_1.5.2.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxrender_0.9.10.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxres_1.2.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxscrnsaver_1.2.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxshmfence/0001-xshmfence_futex.h-Define-SYS_futex-if-it-does-not-ex.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxshmfence_1.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxt/libxt_fix_for_x32.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxt_1.2.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxtst_1.2.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxv_1.0.11.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxvmc_1.0.12.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/libxxf86vm_1.1.4.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/pixman/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/pixman/CVE-2022-44638.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/pixman_0.40.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util-image/clang.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util-image_0.4.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util-keysyms_0.4.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util-renderutil_0.3.9.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util-wm_0.4.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util.inc create mode 100644 poky/meta/recipes-graphics/xorg-lib/xcb-util_0.4.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.35.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc create mode 100644 poky/meta/recipes-graphics/xorg-lib/xtrans/multilibfix.patch create mode 100644 poky/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb create mode 100644 poky/meta/recipes-graphics/xorg-proto/xcb-proto_1.14.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-proto/xorgproto_2021.5.bb create mode 100644 poky/meta/recipes-graphics/xorg-util/makedepend_1.0.6.bb create mode 100644 poky/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb create mode 100644 poky/meta/recipes-graphics/xorg-util/xorg-util-common.inc create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-Avoid-duplicate-definitions-of-IOPortBase.patch create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch create mode 100644 poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.8.bb create mode 100644 poky/meta/recipes-graphics/xrestop/xrestop_0.4.bb create mode 100644 poky/meta/recipes-graphics/xwayland/xwayland_22.1.8.bb create mode 100644 poky/meta/recipes-kernel/blktrace/blktrace/0001-bno_plot.py-btt_plot.py-Ask-for-python3-specifically.patch create mode 100644 poky/meta/recipes-kernel/blktrace/blktrace_git.bb create mode 100644 poky/meta/recipes-kernel/cryptodev/cryptodev-linux_1.12.bb create mode 100644 poky/meta/recipes-kernel/cryptodev/cryptodev-module_1.12.bb create mode 100644 poky/meta/recipes-kernel/cryptodev/cryptodev-tests_1.12.bb create mode 100644 poky/meta/recipes-kernel/cryptodev/cryptodev.inc create mode 100644 poky/meta/recipes-kernel/cryptodev/files/0001-Add-the-compile-and-install-rules-for-cryptodev-test.patch create mode 100644 poky/meta/recipes-kernel/cryptodev/files/0001-Disable-installing-header-file-provided-by-another-p.patch create mode 100644 poky/meta/recipes-kernel/cryptodev/files/0001-tests-Makefile-do-not-use-Werror.patch create mode 100644 poky/meta/recipes-kernel/dtc/dtc/0001-fdtdump-fix-Werror-int-to-pointer-cast.patch create mode 100644 poky/meta/recipes-kernel/dtc/dtc_1.6.1.bb create mode 100644 poky/meta/recipes-kernel/dtc/python3-dtschema-wrapper/dt-doc-validate create mode 100644 poky/meta/recipes-kernel/dtc/python3-dtschema-wrapper/dt-mk-schema create mode 100644 poky/meta/recipes-kernel/dtc/python3-dtschema-wrapper/dt-validate create mode 100644 poky/meta/recipes-kernel/dtc/python3-dtschema-wrapper_2021.10.bb create mode 100644 poky/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/0001-powerpc-change-the-memory-size-limit.patch create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/0002-purgatory-Pass-r-directly-to-linker.patch create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/0003-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/0005-Disable-PIE-during-link.patch create mode 100755 poky/meta/recipes-kernel/kexec/kexec-tools/kdump create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/kdump.conf create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools/kdump.service create mode 100644 poky/meta/recipes-kernel/kexec/kexec-tools_2.0.23.bb create mode 100644 poky/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb create mode 100644 poky/meta/recipes-kernel/kmod/kmod/0001-depmod-Add-support-for-excluding-a-directory.patch create mode 100644 poky/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch create mode 100644 poky/meta/recipes-kernel/kmod/kmod/depmod-search.conf create mode 100755 poky/meta/recipes-kernel/kmod/kmod/run-ptest create mode 100644 poky/meta/recipes-kernel/kmod/kmod_29.bb create mode 100644 poky/meta/recipes-kernel/linux-firmware/linux-firmware_20230625.bb create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0001-include-linux-stddef.h-in-swab.h-uapi-header.patch create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0001-kbuild-install_headers.sh-Strip-_UAPI-from-if-define.patch create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0001-libc-compat.h-fix-some-issues-arising-from-in6.h.patch create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0001-libc-compat.h-musl-_does_-define-IFF_LOWER_UP-DORMAN.patch create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0001-scripts-Use-fixed-input-and-output-files-instead-of-.patch create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0003-remove-inclusion-of-sysinfo.h-in-kernel.h.patch create mode 100644 poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_5.16.bb create mode 100644 poky/meta/recipes-kernel/linux/cve-exclusion.inc create mode 100644 poky/meta/recipes-kernel/linux/cve-exclusion_5.10.inc create mode 100644 poky/meta/recipes-kernel/linux/cve-exclusion_5.15.inc create mode 100755 poky/meta/recipes-kernel/linux/generate-cve-exclusions.py create mode 100644 poky/meta/recipes-kernel/linux/kernel-devsrc.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-dummy.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-dummy/COPYING.GPL create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto-dev.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto-rt_5.10.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto-rt_5.15.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto-tiny_5.10.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto-tiny_5.15.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto.inc create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto_5.10.bb create mode 100644 poky/meta/recipes-kernel/linux/linux-yocto_5.15.bb create mode 100755 poky/meta/recipes-kernel/lttng/babeltrace/run-ptest create mode 100644 poky/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch create mode 100644 poky/meta/recipes-kernel/lttng/babeltrace2/0001-tests-do-not-run-test-applications-from-.libs.patch create mode 100755 poky/meta/recipes-kernel/lttng/babeltrace2/run-ptest create mode 100644 poky/meta/recipes-kernel/lttng/babeltrace2_2.0.5.bb create mode 100644 poky/meta/recipes-kernel/lttng/babeltrace_1.5.11.bb create mode 100644 poky/meta/recipes-kernel/lttng/lttng-modules/0001-src-Kbuild-change-missing-CONFIG_TRACEPOINTS-to-warn.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-modules/0009-Rename-genhd-wrapper-to-blkdev.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-modules_2.13.9.bb create mode 100644 poky/meta/recipes-kernel/lttng/lttng-platforms.inc create mode 100644 poky/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-tools/lttng-sessiond.service create mode 100755 poky/meta/recipes-kernel/lttng/lttng-tools/run-ptest create mode 100644 poky/meta/recipes-kernel/lttng/lttng-tools_2.13.9.bb create mode 100644 poky/meta/recipes-kernel/lttng/lttng-ust/0001-Makefile.am-update-rpath-link.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-ust/0001-python-lttngust-Makefile.am-Add-install-lib-to-setup.patch create mode 100644 poky/meta/recipes-kernel/lttng/lttng-ust_2.13.6.bb create mode 100644 poky/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb create mode 100755 poky/meta/recipes-kernel/modutils-initscripts/files/modutils.sh create mode 100644 poky/meta/recipes-kernel/modutils-initscripts/modutils-initscripts.bb create mode 100644 poky/meta/recipes-kernel/perf/perf-perl.inc create mode 100644 poky/meta/recipes-kernel/perf/perf.bb create mode 100755 poky/meta/recipes-kernel/perf/perf/sort-pmuevents.py create mode 100644 poky/meta/recipes-kernel/powertop/powertop/0001-src-fix-compatibility-with-ncurses-6.3.patch create mode 100644 poky/meta/recipes-kernel/powertop/powertop/0001-wakeup_xxx.h-include-limits.h.patch create mode 100644 poky/meta/recipes-kernel/powertop/powertop_2.14.bb create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap-native_git.bb create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-Do-not-let-configure-write-a-python-location-into-th.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-Install-python-modules-to-correct-library-dir.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-PR28778-gcc-warning-tweak-for-sprintf-precision-para.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-PR28804-tune-default-stap-s-buffer-size-on-small-RAM.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-gcc12-c-compatibility-re-tweak-for-rhel6-use-functio.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-improve-reproducibility-for-c-compiling.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-staprun-address-ncurses-6.3-failures.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap/0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap_git.bb create mode 100644 poky/meta/recipes-kernel/systemtap/systemtap_git.inc create mode 100644 poky/meta/recipes-kernel/wireless-regdb/wireless-regdb_2023.05.03.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-lib_1.2.6.1.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-plugins_1.2.6.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-tools_1.2.5.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-topology-conf_1.2.5.1.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.6.3.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-utils.inc create mode 100644 poky/meta/recipes-multimedia/alsa/alsa-utils_1.2.6.bb create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg/0001-avcodec-rpzaenc-stop-accessing-out-of-bounds-frame.patch create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg/0001-avcodec-smcenc-stop-accessing-out-of-bounds-frame.patch create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg/0001-avcodec-vp3-Add-missing-check-for-av_malloc.patch create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg/0001-avformat-nutdec-Add-check-for-avformat_new_stream.patch create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg/0001-libavutil-include-assembly-with-full-path-from-sourc.patch create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg/CVE-2022-48434.patch create mode 100644 poky/meta/recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb create mode 100644 poky/meta/recipes-multimedia/flac/files/CVE-2020-22219.patch create mode 100644 poky/meta/recipes-multimedia/flac/flac_1.3.4.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gst-devtools_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gst-examples/gst-player.desktop create mode 100644 poky/meta/recipes-multimedia/gstreamer/gst-examples_1.18.6.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0003-ensure-valid-sentinals-for-gst_structure_get-etc.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/CVE-2023-40474.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/CVE-2023-40475.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/CVE-2023-40476.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-common.inc create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-license.inc create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch create mode 100755 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/run-ptest create mode 100644 poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.7.bb create mode 100644 poky/meta/recipes-multimedia/lame/lame/no-gtk1.patch create mode 100644 poky/meta/recipes-multimedia/lame/lame_3.100.bb create mode 100644 poky/meta/recipes-multimedia/liba52/liba52/buildcleanup.patch create mode 100644 poky/meta/recipes-multimedia/liba52/liba52_0.7.4.bb create mode 100644 poky/meta/recipes-multimedia/libogg/libogg_1.3.5.bb create mode 100644 poky/meta/recipes-multimedia/libomxil/libomxil-0.9.3/configure-fix.patch create mode 100644 poky/meta/recipes-multimedia/libomxil/libomxil-0.9.3/disable-so-versioning.patch create mode 100644 poky/meta/recipes-multimedia/libomxil/libomxil-0.9.3/dynamicloader-linking.patch create mode 100644 poky/meta/recipes-multimedia/libomxil/libomxil-0.9.3/makefile-docdir-fix.patch create mode 100644 poky/meta/recipes-multimedia/libomxil/libomxil-0.9.3/parallel-make.patch create mode 100644 poky/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb create mode 100644 poky/meta/recipes-multimedia/libpng/files/run-ptest create mode 100644 poky/meta/recipes-multimedia/libpng/libpng_1.6.39.bb create mode 100644 poky/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.2.2.bb create mode 100644 poky/meta/recipes-multimedia/libsndfile/libsndfile1/0001-flac-Fix-improper-buffer-reusing-732.patch create mode 100644 poky/meta/recipes-multimedia/libsndfile/libsndfile1/noopus.patch create mode 100644 poky/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.31.bb create mode 100644 poky/meta/recipes-multimedia/libtheora/libtheora-1.1.1/no-docs.patch create mode 100644 poky/meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-Revised-handling-of-TIFFTAG_INKNAMES-and-related-TIF.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-fix-the-FPE-in-tiffcrop-415-427-and-428.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-tif_jbig.c-fix-crash-when-reading-a-file-with-multip.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-tiffcrop-Fix-issue-330-and-some-more-from-320-to-349.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-tiffcrop-S-option-Make-decision-simpler.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-tiffcrop-disable-incompatibility-of-Z-X-Y-z-options-.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-tiffcrop-subroutines-require-a-larger-buffer-fixes-2.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0001-tiffset-fix-global-buffer-overflow-for-ASCII-tags-wh.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0002-tiffcrop-fix-issue-380-and-382-heap-buffer-overflow-.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0003-add-checks-for-return-value-of-limitMalloc-392.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0004-TIFFFetchNormalTag-avoid-calling-memcpy-with-a-null-.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0005-fix-the-FPE-in-tiffcrop-393.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/0006-fix-heap-buffer-overflow-in-tiffcp-278.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/561599c99f987dc32ae110370cfdd7df7975586b.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-1354.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-1355.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-2867.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-2869.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-2953.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-34526.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-3970.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-48281.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-0795_0796_0797_0798_0799.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-0800_0801_0802_0803_0804.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-25433.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-25434-CVE-2023-25435.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-26965.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-26966.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-2908.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-3316.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-3618-1.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/CVE-2023-3618-2.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/b258ed69a485a9cfb299d9f060eb2a46c54e5903.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff/eecb0712f4c3a5b449f70c57988260a667ddbdef.patch create mode 100644 poky/meta/recipes-multimedia/libtiff/tiff_4.3.0.bb create mode 100644 poky/meta/recipes-multimedia/libvorbis/libvorbis/0001-configure-Check-for-clang.patch create mode 100644 poky/meta/recipes-multimedia/libvorbis/libvorbis_1.3.7.bb create mode 100644 poky/meta/recipes-multimedia/mpeg2dec/files/0001-Import-revision-1206-from-upstream-to-fix-PIE-build.patch create mode 100644 poky/meta/recipes-multimedia/mpeg2dec/files/0001-check-for-available-arm-optimizations.patch create mode 100644 poky/meta/recipes-multimedia/mpeg2dec/files/0002-Set-visibility-of-global-symbols-used-in-ARM-specifi.patch create mode 100644 poky/meta/recipes-multimedia/mpeg2dec/files/61_global-symbol-test.patch create mode 100644 poky/meta/recipes-multimedia/mpeg2dec/files/altivec_h_needed.patch create mode 100644 poky/meta/recipes-multimedia/mpeg2dec/mpeg2dec_0.5.1.bb create mode 100644 poky/meta/recipes-multimedia/mpg123/mpg123_1.29.3.bb create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio.inc create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-client-conf-Add-allow-autospawn-for-root.patch create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-doxygen-meson.build-remove-dependency-on-doxygen-bin.patch create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-meson-Check-for-__get_cpuid.patch create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio/0002-do-not-display-CLFAGS-to-improve-reproducibility-bui.patch create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio/volatiles.04_pulse create mode 100644 poky/meta/recipes-multimedia/pulseaudio/pulseaudio_15.0.bb create mode 100644 poky/meta/recipes-multimedia/sbc/sbc/0001-sbc_primitives-Fix-build-on-non-x86.patch create mode 100644 poky/meta/recipes-multimedia/sbc/sbc_1.5.bb create mode 100644 poky/meta/recipes-multimedia/speex/speex/CVE-2020-23903.patch create mode 100644 poky/meta/recipes-multimedia/speex/speex_1.2.0.bb create mode 100644 poky/meta/recipes-multimedia/speex/speexdsp_1.2.0.bb create mode 100644 poky/meta/recipes-multimedia/webp/files/CVE-2023-1999.patch create mode 100644 poky/meta/recipes-multimedia/webp/files/CVE-2023-5129.patch create mode 100644 poky/meta/recipes-multimedia/webp/libwebp_1.2.4.bb create mode 100644 poky/meta/recipes-multimedia/x264/x264/Fix-X32-build-by-disabling-asm.patch create mode 100644 poky/meta/recipes-multimedia/x264/x264/don-t-default-to-cortex-a9-with-neon.patch create mode 100644 poky/meta/recipes-multimedia/x264/x264_git.bb create mode 100644 poky/meta/recipes-rt/README create mode 100644 poky/meta/recipes-rt/images/core-image-rt-sdk.bb create mode 100644 poky/meta/recipes-rt/images/core-image-rt.bb create mode 100644 poky/meta/recipes-rt/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch create mode 100755 poky/meta/recipes-rt/rt-tests/files/rt_bmark.py create mode 100644 poky/meta/recipes-rt/rt-tests/files/run-ptest create mode 100644 poky/meta/recipes-rt/rt-tests/hwlatdetect_git.bb create mode 100644 poky/meta/recipes-rt/rt-tests/rt-tests.inc create mode 100644 poky/meta/recipes-rt/rt-tests/rt-tests_git.bb create mode 100644 poky/meta/recipes-sato/images/core-image-sato-dev.bb create mode 100644 poky/meta/recipes-sato/images/core-image-sato-sdk.bb create mode 100644 poky/meta/recipes-sato/images/core-image-sato.bb create mode 100644 poky/meta/recipes-sato/l3afpad/l3afpad_git.bb create mode 100644 poky/meta/recipes-sato/libptytty/libptytty/0001-CMakeLists.txt-do-not-run-cross-binary.patch create mode 100644 poky/meta/recipes-sato/libptytty/libptytty_2.0.bb create mode 100644 poky/meta/recipes-sato/matchbox-config-gtk/files/no-handed.patch create mode 100644 poky/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_0.2.bb create mode 100644 poky/meta/recipes-sato/matchbox-desktop/files/vfolders/All.directory create mode 100644 poky/meta/recipes-sato/matchbox-desktop/files/vfolders/Applications.directory create mode 100644 poky/meta/recipes-sato/matchbox-desktop/files/vfolders/Games.directory create mode 100644 poky/meta/recipes-sato/matchbox-desktop/files/vfolders/Root.order create mode 100644 poky/meta/recipes-sato/matchbox-desktop/files/vfolders/Settings.directory create mode 100644 poky/meta/recipes-sato/matchbox-desktop/matchbox-desktop_2.2.bb create mode 100644 poky/meta/recipes-sato/matchbox-keyboard/files/0001-desktop-file-Hide-the-keyboard-from-app-list.patch create mode 100644 poky/meta/recipes-sato/matchbox-keyboard/files/80matchboxkeyboard.sh create mode 100644 poky/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_0.1.1.bb create mode 100644 poky/meta/recipes-sato/matchbox-panel-2/files/0001-applets-systray-Allow-icons-to-be-smaller.patch create mode 100644 poky/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_2.11.bb create mode 100644 poky/meta/recipes-sato/matchbox-sato/matchbox-session-sato/index.theme create mode 100644 poky/meta/recipes-sato/matchbox-sato/matchbox-session-sato/session create mode 100644 poky/meta/recipes-sato/matchbox-sato/matchbox-session-sato_0.1.bb create mode 100644 poky/meta/recipes-sato/matchbox-terminal/matchbox-terminal_0.2.bb create mode 100644 poky/meta/recipes-sato/matchbox-theme-sato/matchbox-theme-sato.inc create mode 100644 poky/meta/recipes-sato/matchbox-theme-sato/matchbox-theme-sato_0.2.bb create mode 100644 poky/meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb create mode 100644 poky/meta/recipes-sato/pcmanfm/files/emblem-symbolic-link.png create mode 100644 poky/meta/recipes-sato/pcmanfm/files/gnome-fs-directory.png create mode 100644 poky/meta/recipes-sato/pcmanfm/files/gnome-fs-regular.png create mode 100644 poky/meta/recipes-sato/pcmanfm/files/gnome-mime-text-plain.png create mode 100644 poky/meta/recipes-sato/pcmanfm/files/no-desktop.patch create mode 100644 poky/meta/recipes-sato/pcmanfm/pcmanfm_1.3.2.bb create mode 100644 poky/meta/recipes-sato/pulseaudio-sato/pulseaudio-client-conf-sato/50-sato.conf create mode 100644 poky/meta/recipes-sato/pulseaudio-sato/pulseaudio-client-conf-sato_1.bb create mode 100644 poky/meta/recipes-sato/puzzles/puzzles_git.bb create mode 100644 poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc create mode 100644 poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode/rxvt.desktop create mode 100644 poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode/rxvt.png create mode 100644 poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode/xwc.patch create mode 100644 poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.30.bb create mode 100644 poky/meta/recipes-sato/sato-screenshot/sato-screenshot_0.3.bb create mode 100644 poky/meta/recipes-sato/settings-daemon/files/70settings-daemon.sh create mode 100644 poky/meta/recipes-sato/settings-daemon/files/addsoundkeys.patch create mode 100644 poky/meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb create mode 100644 poky/meta/recipes-sato/shutdown-desktop/shutdown-desktop.bb create mode 100644 poky/meta/recipes-sato/shutdown-desktop/shutdown-desktop/shutdown.desktop create mode 100644 poky/meta/recipes-sato/webkit/libwpe_1.12.3.bb create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/0001-Fix-build-without-opengl-or-es.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-do-not-quote-CFLAG.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-32888.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-32923.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-42867.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-46691.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-46699.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-46700.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2022-48503.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2023-23529.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/CVE-2023-32439.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk/reproducibility.patch create mode 100644 poky/meta/recipes-sato/webkit/webkitgtk_2.36.8.bb create mode 100644 poky/meta/recipes-sato/webkit/wpebackend-fdo_1.14.2.bb create mode 100644 poky/meta/recipes-support/apr/apr-util/configfix.patch create mode 100644 poky/meta/recipes-support/apr/apr-util/configure_fixes.patch create mode 100644 poky/meta/recipes-support/apr/apr-util/run-ptest create mode 100644 poky/meta/recipes-support/apr/apr-util_1.6.3.bb create mode 100644 poky/meta/recipes-support/apr/apr/0001-Add-option-to-disable-timed-dependant-tests.patch create mode 100644 poky/meta/recipes-support/apr/apr/0001-configure-Remove-runtime-test-for-mmap-that-can-map-.patch create mode 100644 poky/meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch create mode 100644 poky/meta/recipes-support/apr/apr/0004-Fix-packet-discards-HTTP-redirect.patch create mode 100644 poky/meta/recipes-support/apr/apr/0005-configure.in-fix-LTFLAGS-to-make-it-work-with-ccache.patch create mode 100644 poky/meta/recipes-support/apr/apr/0007-explicitly-link-libapr-against-phtread-to-make-gold-.patch create mode 100644 poky/meta/recipes-support/apr/apr/libtoolize_check.patch create mode 100644 poky/meta/recipes-support/apr/apr/run-ptest create mode 100644 poky/meta/recipes-support/apr/apr_1.7.2.bb create mode 100644 poky/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb create mode 100644 poky/meta/recipes-support/argp-standalone/files/0001-throw-in-funcdef.patch create mode 100644 poky/meta/recipes-support/argp-standalone/files/0002-isprint.patch create mode 100644 poky/meta/recipes-support/argp-standalone/files/out_of_tree_build.patch create mode 100644 poky/meta/recipes-support/aspell/aspell_0.60.8.bb create mode 100644 poky/meta/recipes-support/aspell/files/CVE-2019-25051.patch create mode 100644 poky/meta/recipes-support/atk/at-spi2-atk_2.38.0.bb create mode 100644 poky/meta/recipes-support/atk/at-spi2-core/0001-Ensure-x11_dep-is-defined.patch create mode 100644 poky/meta/recipes-support/atk/at-spi2-core_2.42.0.bb create mode 100644 poky/meta/recipes-support/atk/atk_2.38.0.bb create mode 100644 poky/meta/recipes-support/attr/acl/0001-test-patch-out-failing-bits.patch create mode 100644 poky/meta/recipes-support/attr/acl/0001-tests-do-not-hardcode-the-build-path-into-a-helper-l.patch create mode 100644 poky/meta/recipes-support/attr/acl/run-ptest create mode 100644 poky/meta/recipes-support/attr/acl_2.3.1.bb create mode 100644 poky/meta/recipes-support/attr/attr.inc create mode 100644 poky/meta/recipes-support/attr/attr/run-ptest create mode 100644 poky/meta/recipes-support/attr/attr_2.5.1.bb create mode 100644 poky/meta/recipes-support/bash-completion/bash-completion_2.11.bb create mode 100644 poky/meta/recipes-support/bmap-tools/bmap-tools_git.bb create mode 100644 poky/meta/recipes-support/boost/boost-1.78.0.inc create mode 100644 poky/meta/recipes-support/boost/boost-build-native_4.4.1.bb create mode 100644 poky/meta/recipes-support/boost/boost.inc create mode 100644 poky/meta/recipes-support/boost/boost/0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch create mode 100644 poky/meta/recipes-support/boost/boost/0001-Don-t-skip-install-targets-if-there-s-build-no-in-ur.patch create mode 100644 poky/meta/recipes-support/boost/boost/0001-dont-setup-compiler-flags-m32-m64.patch create mode 100644 poky/meta/recipes-support/boost/boost/0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch create mode 100644 poky/meta/recipes-support/boost/boost/boost-CVE-2012-2677.patch create mode 100644 poky/meta/recipes-support/boost/boost/boost-math-disable-pch-for-gcc.patch create mode 100644 poky/meta/recipes-support/boost/boost/de657e01635306085488290ea83de541ec393f8b.patch create mode 100644 poky/meta/recipes-support/boost/boost_1.78.0.bb create mode 100644 poky/meta/recipes-support/ca-certificates/ca-certificates/0001-Revert-mozilla-certdata2pem.py-print-a-warning-for-e.patch create mode 100644 poky/meta/recipes-support/ca-certificates/ca-certificates/0001-update-ca-certificates-don-t-use-Debianisms-in-run-p.patch create mode 100644 poky/meta/recipes-support/ca-certificates/ca-certificates/0002-update-ca-certificates-use-SYSROOT.patch create mode 100644 poky/meta/recipes-support/ca-certificates/ca-certificates/0003-update-ca-certificates-use-relative-symlinks-from-ET.patch create mode 100644 poky/meta/recipes-support/ca-certificates/ca-certificates/default-sysroot.patch create mode 100644 poky/meta/recipes-support/ca-certificates/ca-certificates_20211016.bb create mode 100644 poky/meta/recipes-support/consolekit/consolekit/add-polkit-configure-argument.patch create mode 100644 poky/meta/recipes-support/consolekit/consolekit/sepbuildfix.patch create mode 100644 poky/meta/recipes-support/consolekit/consolekit_0.4.6.bb create mode 100644 poky/meta/recipes-support/curl/curl/0001-openssl-fix-CN-check-error-code.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-22576.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27774-1.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27774-2.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27774-3.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27774-4.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27775.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27776.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27779.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27780.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27781.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27782-1.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-27782-2.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-30115.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-32205.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-32206.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-32207.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-32208.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-32221.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-35252.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-42915.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-42916.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-43551.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2022-43552.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-23914_5-1.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-23914_5-2.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-23914_5-3.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-23914_5-4.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-23914_5-5.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-23916.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-27533.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-27534.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-27535-pre1.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-27535_and_CVE-2023-27538.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-27536.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-28319.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-28320-fol1.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-28320.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-28321.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-28322-1.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-28322-2.patch create mode 100644 poky/meta/recipes-support/curl/curl/CVE-2023-32001.patch create mode 100644 poky/meta/recipes-support/curl/curl_7.82.0.bb create mode 100644 poky/meta/recipes-support/db/db/0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch create mode 100644 poky/meta/recipes-support/db/db/0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch create mode 100644 poky/meta/recipes-support/db/db/0001-clock-Do-not-define-own-timespec.patch create mode 100644 poky/meta/recipes-support/db/db/0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch create mode 100644 poky/meta/recipes-support/db/db/fix-parallel-build.patch create mode 100644 poky/meta/recipes-support/db/db/sequence-type.patch create mode 100644 poky/meta/recipes-support/db/db_5.3.28.bb create mode 100644 poky/meta/recipes-support/debianutils/debianutils_5.7.bb create mode 100644 poky/meta/recipes-support/diffoscope/diffoscope_208.bb create mode 100644 poky/meta/recipes-support/dos2unix/dos2unix_7.4.2.bb create mode 100644 poky/meta/recipes-support/enchant/enchant2_2.3.2.bb create mode 100644 poky/meta/recipes-support/fribidi/fribidi_1.0.13.bb create mode 100644 poky/meta/recipes-support/gdbm/files/ptest.patch create mode 100755 poky/meta/recipes-support/gdbm/files/run-ptest create mode 100644 poky/meta/recipes-support/gdbm/gdbm_1.23.bb create mode 100644 poky/meta/recipes-support/gmp/gmp.inc create mode 100644 poky/meta/recipes-support/gmp/gmp/0001-Append-the-user-provided-flags-to-the-auto-detected-.patch create mode 100644 poky/meta/recipes-support/gmp/gmp/0001-confiure.ac-Believe-the-cflags-from-environment.patch create mode 100644 poky/meta/recipes-support/gmp/gmp/cve-2021-43618.patch create mode 100644 poky/meta/recipes-support/gmp/gmp/use-includedir.patch create mode 100644 poky/meta/recipes-support/gmp/gmp_6.2.1.bb create mode 100644 poky/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing/0001-fix-non-literal-format-string-issue-with-clang.patch create mode 100644 poky/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2021.1.bb create mode 100644 poky/meta/recipes-support/gnupg/gnupg/0001-Woverride-init-is-not-needed-with-gcc-9.patch create mode 100644 poky/meta/recipes-support/gnupg/gnupg/0001-configure.ac-use-a-custom-value-for-the-location-of-.patch create mode 100644 poky/meta/recipes-support/gnupg/gnupg/0002-use-pkgconfig-instead-of-npth-config.patch create mode 100644 poky/meta/recipes-support/gnupg/gnupg/0004-autogen.sh-fix-find-version-for-beta-checking.patch create mode 100644 poky/meta/recipes-support/gnupg/gnupg/relocate.patch create mode 100644 poky/meta/recipes-support/gnupg/gnupg_2.3.7.bb create mode 100644 poky/meta/recipes-support/gnutls/gnutls/CVE-2022-2509.patch create mode 100644 poky/meta/recipes-support/gnutls/gnutls/CVE-2023-0361.patch create mode 100644 poky/meta/recipes-support/gnutls/gnutls/arm_eabi.patch create mode 100644 poky/meta/recipes-support/gnutls/gnutls_3.7.4.bb create mode 100644 poky/meta/recipes-support/gnutls/libtasn1/dont-depend-on-help2man.patch create mode 100644 poky/meta/recipes-support/gnutls/libtasn1_4.19.0.bb create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0001-Revert-build-Make-gpgme.m4-use-gpgrt-config-with-.pc.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0001-pkgconfig.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0001-use-closefrom-on-linux-and-glibc-2.34.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0002-gpgme-lang-python-gpg-error-config-should-not-be-use.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0003-Correctly-install-python-modules.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0004-python-import.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0005-gpgme-config-skip-all-lib-or-usr-lib-directories-in-.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0006-fix-build-path-issue.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0007-python-Add-variables-to-tests.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme/0008-do-not-auto-check-var-PYTHON.patch create mode 100644 poky/meta/recipes-support/gpgme/gpgme_1.17.1.bb create mode 100644 poky/meta/recipes-support/icu/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch create mode 100644 poky/meta/recipes-support/icu/icu/0001-icu-Added-armeb-support.patch create mode 100644 poky/meta/recipes-support/icu/icu/filter.json create mode 100644 poky/meta/recipes-support/icu/icu/fix-install-manx.patch create mode 100644 poky/meta/recipes-support/icu/icu_70.1.bb create mode 100644 poky/meta/recipes-support/iso-codes/iso-codes_4.15.0.bb create mode 100644 poky/meta/recipes-support/itstool/itstool/0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch create mode 100644 poky/meta/recipes-support/itstool/itstool/0002-Don-t-use-build-time-hardcoded-python-binary-path.patch create mode 100644 poky/meta/recipes-support/itstool/itstool_2.0.7.bb create mode 100644 poky/meta/recipes-support/libassuan/libassuan/libassuan-add-pkgconfig-support.patch create mode 100644 poky/meta/recipes-support/libassuan/libassuan_2.5.6.bb create mode 100644 poky/meta/recipes-support/libatomic-ops/libatomic-ops_7.6.14.bb create mode 100644 poky/meta/recipes-support/libbsd/libbsd_0.11.5.bb create mode 100644 poky/meta/recipes-support/libcap-ng/libcap-ng-python_0.8.2.bb create mode 100644 poky/meta/recipes-support/libcap-ng/libcap-ng.inc create mode 100644 poky/meta/recipes-support/libcap-ng/libcap-ng/determinism.patch create mode 100644 poky/meta/recipes-support/libcap-ng/libcap-ng_0.8.2.bb create mode 100644 poky/meta/recipes-support/libcap/files/0001-ensure-the-XATTR_NAME_CAPS-is-defined-when-it-is-use.patch create mode 100644 poky/meta/recipes-support/libcap/files/0001-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch create mode 100644 poky/meta/recipes-support/libcap/files/0002-tests-do-not-run-target-executables.patch create mode 100644 poky/meta/recipes-support/libcap/files/CVE-2023-2602.patch create mode 100644 poky/meta/recipes-support/libcap/files/CVE-2023-2603.patch create mode 100644 poky/meta/recipes-support/libcap/libcap_2.66.bb create mode 100644 poky/meta/recipes-support/libcheck/libcheck/not-echo-compiler-info-to-check_stdint.h.patch create mode 100644 poky/meta/recipes-support/libcheck/libcheck_0.15.2.bb create mode 100644 poky/meta/recipes-support/libcroco/files/CVE-2020-12825.patch create mode 100644 poky/meta/recipes-support/libcroco/libcroco_0.6.13.bb create mode 100644 poky/meta/recipes-support/libdaemon/libdaemon/fix-includes.patch create mode 100644 poky/meta/recipes-support/libdaemon/libdaemon_0.14.bb create mode 100644 poky/meta/recipes-support/libevdev/libevdev_1.12.1.bb create mode 100644 poky/meta/recipes-support/libevent/libevent/0001-test-regress_dns.c-patch-out-tests-that-require-a-wo.patch create mode 100644 poky/meta/recipes-support/libevent/libevent/0002-test-regress.h-Increase-default-timeval-tolerance-50.patch create mode 100644 poky/meta/recipes-support/libevent/libevent/0003-test-mark-util-monotonic_prc_fallback-as-retriable.patch create mode 100644 poky/meta/recipes-support/libevent/libevent/0004-test-retriable-tests-are-marked-failed-only-when-all-a.patch create mode 100644 poky/meta/recipes-support/libevent/libevent/Makefile-missing-test-dir.patch create mode 100644 poky/meta/recipes-support/libevent/libevent/run-ptest create mode 100644 poky/meta/recipes-support/libevent/libevent_2.1.12.bb create mode 100644 poky/meta/recipes-support/libexif/libexif_0.6.24.bb create mode 100644 poky/meta/recipes-support/libffi/libffi/0001-arm-sysv-reverted-clang-VFP-mitigation.patch create mode 100644 poky/meta/recipes-support/libffi/libffi/not-win32.patch create mode 100644 poky/meta/recipes-support/libffi/libffi_3.4.4.bb create mode 100644 poky/meta/recipes-support/libfm/libfm-extra/0001-nls.m4-Take-it-from-gettext-0.15.patch create mode 100644 poky/meta/recipes-support/libfm/libfm-extra_1.3.2.bb create mode 100644 poky/meta/recipes-support/libfm/libfm/0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch create mode 100644 poky/meta/recipes-support/libfm/libfm/0001-Do-not-add-library-path-to-avoid-host-contamination.patch create mode 100644 poky/meta/recipes-support/libfm/libfm_1.3.2.bb create mode 100644 poky/meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch create mode 100644 poky/meta/recipes-support/libgcrypt/files/0001-libgcrypt-fix-m4-file-for-oe-core.patch create mode 100644 poky/meta/recipes-support/libgcrypt/files/0002-libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch create mode 100644 poky/meta/recipes-support/libgcrypt/files/0003-tests-bench-slope.c-workaround-ICE-failure-on-mips-w.patch create mode 100644 poky/meta/recipes-support/libgcrypt/files/0004-tests-Makefile.am-fix-undefined-reference-to-pthread.patch create mode 100644 poky/meta/recipes-support/libgcrypt/libgcrypt_1.9.4.bb create mode 100644 poky/meta/recipes-support/libgit2/libgit2_1.4.5.bb create mode 100644 poky/meta/recipes-support/libgpg-error/libgpg-error/0001-Do-not-fail-when-testing-config-scripts.patch create mode 100644 poky/meta/recipes-support/libgpg-error/libgpg-error/pkgconfig.patch create mode 100644 poky/meta/recipes-support/libgpg-error/libgpg-error_1.44.bb create mode 100644 poky/meta/recipes-support/libical/libical/0001-cmake-Do-not-export-CC-into-gir-compiler.patch create mode 100644 poky/meta/recipes-support/libical/libical_3.0.16.bb create mode 100644 poky/meta/recipes-support/libjitterentropy/libjitterentropy_3.4.0.bb create mode 100644 poky/meta/recipes-support/libksba/libksba/ksba-add-pkgconfig-support.patch create mode 100644 poky/meta/recipes-support/libksba/libksba_1.6.4.bb create mode 100644 poky/meta/recipes-support/libmd/libmd_1.0.4.bb create mode 100644 poky/meta/recipes-support/libmicrohttpd/libmicrohttpd_0.9.76.bb create mode 100644 poky/meta/recipes-support/libmpc/libmpc.inc create mode 100644 poky/meta/recipes-support/libmpc/libmpc_1.2.1.bb create mode 100644 poky/meta/recipes-support/libnl/files/enable-serial-tests.patch create mode 100755 poky/meta/recipes-support/libnl/files/run-ptest create mode 100644 poky/meta/recipes-support/libnl/libnl_3.5.0.bb create mode 100644 poky/meta/recipes-support/libpcre/libpcre/Makefile create mode 100644 poky/meta/recipes-support/libpcre/libpcre/run-ptest create mode 100644 poky/meta/recipes-support/libpcre/libpcre2/CVE-2022-41409.patch create mode 100644 poky/meta/recipes-support/libpcre/libpcre2_10.40.bb create mode 100644 poky/meta/recipes-support/libpcre/libpcre_8.45.bb create mode 100644 poky/meta/recipes-support/libproxy/libproxy/determinism.patch create mode 100644 poky/meta/recipes-support/libproxy/libproxy_0.4.17.bb create mode 100644 poky/meta/recipes-support/libpsl/libpsl_0.21.1.bb create mode 100644 poky/meta/recipes-support/libseccomp/files/run-ptest create mode 100644 poky/meta/recipes-support/libseccomp/libseccomp_2.5.3.bb create mode 100644 poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.2.bb create mode 100644 poky/meta/recipes-support/libsoup/libsoup_3.0.7.bb create mode 100644 poky/meta/recipes-support/libssh2/libssh2/CVE-2020-22218.patch create mode 100644 poky/meta/recipes-support/libssh2/libssh2/fix-ssh2-test.patch create mode 100644 poky/meta/recipes-support/libssh2/libssh2/run-ptest create mode 100644 poky/meta/recipes-support/libssh2/libssh2_1.10.0.bb create mode 100644 poky/meta/recipes-support/libunistring/libunistring_1.0.bb create mode 100644 poky/meta/recipes-support/libunwind/libunwind.inc create mode 100644 poky/meta/recipes-support/libunwind/libunwind/0003-x86-Stub-out-x86_local_resume.patch create mode 100644 poky/meta/recipes-support/libunwind/libunwind/0004-Fix-build-on-mips-musl.patch create mode 100644 poky/meta/recipes-support/libunwind/libunwind/0005-ppc32-Consider-ucontext-mismatches-between-glibc-and.patch create mode 100644 poky/meta/recipes-support/libunwind/libunwind/0006-Fix-for-X32.patch create mode 100644 poky/meta/recipes-support/libunwind/libunwind/musl-header-conflict.patch create mode 100644 poky/meta/recipes-support/libunwind/libunwind_1.6.2.bb create mode 100644 poky/meta/recipes-support/liburcu/liburcu_0.13.2.bb create mode 100644 poky/meta/recipes-support/libusb/libusb1/0001-configure.ac-Link-with-latomic-only-if-no-atomic-bui.patch create mode 100755 poky/meta/recipes-support/libusb/libusb1/run-ptest create mode 100644 poky/meta/recipes-support/libusb/libusb1_1.0.26.bb create mode 100644 poky/meta/recipes-support/libxslt/libxslt_1.1.35.bb create mode 100644 poky/meta/recipes-support/libyaml/libyaml_0.2.5.bb create mode 100644 poky/meta/recipes-support/lz4/lz4_1.9.4.bb create mode 100644 poky/meta/recipes-support/lzo/lzo/0001-Add-pkgconfigdir-to-solve-the-undefine-error.patch create mode 100644 poky/meta/recipes-support/lzo/lzo/0001-Use-memcpy-instead-of-reinventing-it.patch create mode 100644 poky/meta/recipes-support/lzo/lzo/run-ptest create mode 100644 poky/meta/recipes-support/lzo/lzo_2.10.bb create mode 100644 poky/meta/recipes-support/lzop/lzop/acinclude.m4 create mode 100644 poky/meta/recipes-support/lzop/lzop_1.04.bb create mode 100644 poky/meta/recipes-support/mpfr/mpfr_4.1.1.bb create mode 100644 poky/meta/recipes-support/nettle/nettle/Add-target-to-only-build-tests-not-run-them.patch create mode 100644 poky/meta/recipes-support/nettle/nettle/check-header-files-of-openssl-only-if-enable_.patch create mode 100644 poky/meta/recipes-support/nettle/nettle/dlopen-test.patch create mode 100644 poky/meta/recipes-support/nettle/nettle/run-ptest create mode 100644 poky/meta/recipes-support/nettle/nettle_3.7.3.bb create mode 100644 poky/meta/recipes-support/nghttp2/nghttp2/0001-fetch-ocsp-response-use-python3.patch create mode 100644 poky/meta/recipes-support/nghttp2/nghttp2/CVE-2023-35945.patch create mode 100644 poky/meta/recipes-support/nghttp2/nghttp2_1.47.0.bb create mode 100644 poky/meta/recipes-support/npth/npth/0001-Revert-Fix-problem-with-regression-tests-on-recent-g.patch create mode 100644 poky/meta/recipes-support/npth/npth/pkgconfig.patch create mode 100644 poky/meta/recipes-support/npth/npth_1.6.bb create mode 100644 poky/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb create mode 100644 poky/meta/recipes-support/numactl/numactl/0001-define-run-test-target.patch create mode 100644 poky/meta/recipes-support/numactl/numactl/Fix-the-test-output-format.patch create mode 100644 poky/meta/recipes-support/numactl/numactl/Makefile create mode 100755 poky/meta/recipes-support/numactl/numactl/run-ptest create mode 100644 poky/meta/recipes-support/numactl/numactl_git.bb create mode 100644 poky/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb create mode 100644 poky/meta/recipes-support/pinentry/pinentry-1.2.0/gpg-error_pkconf.patch create mode 100644 poky/meta/recipes-support/pinentry/pinentry-1.2.0/libassuan_pkgconf.patch create mode 100644 poky/meta/recipes-support/pinentry/pinentry_1.2.0.bb create mode 100644 poky/meta/recipes-support/popt/popt/0001-popt-test-output-format-for-ptest.patch create mode 100644 poky/meta/recipes-support/popt/popt/run-ptest create mode 100644 poky/meta/recipes-support/popt/popt_1.18.bb create mode 100644 poky/meta/recipes-support/ptest-runner/ptest-runner_2.4.2.bb create mode 100644 poky/meta/recipes-support/re2c/re2c_3.0.bb create mode 100644 poky/meta/recipes-support/rng-tools/rng-tools/default create mode 100644 poky/meta/recipes-support/rng-tools/rng-tools/init create mode 100644 poky/meta/recipes-support/rng-tools/rng-tools/rngd.service create mode 100644 poky/meta/recipes-support/rng-tools/rng-tools_6.15.bb create mode 100644 poky/meta/recipes-support/serf/serf/0002-SConstruct-Fix-path-quoting-for-.def-generator.patch create mode 100644 poky/meta/recipes-support/serf/serf/0003-gen_def.patch create mode 100644 poky/meta/recipes-support/serf/serf/SConstruct.stop.creating.directories.without.sandbox-install.prefix.patch create mode 100644 poky/meta/recipes-support/serf/serf/env.patch create mode 100644 poky/meta/recipes-support/serf/serf/norpath.patch create mode 100644 poky/meta/recipes-support/serf/serf_1.3.10.bb create mode 100644 poky/meta/recipes-support/shared-mime-info/files/0001-migrate-from-custom-itstool-to-builtin-msgfmt-for-cr.patch create mode 100644 poky/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb create mode 100644 poky/meta/recipes-support/sqlite/files/0001-sqlite-Increased-the-size-of-loop-variables-in-the-printf-implementation.patch create mode 100644 poky/meta/recipes-support/sqlite/files/CVE-2022-46908.patch create mode 100644 poky/meta/recipes-support/sqlite/files/CVE-2023-36191.patch create mode 100644 poky/meta/recipes-support/sqlite/sqlite3.inc create mode 100644 poky/meta/recipes-support/sqlite/sqlite3_3.38.5.bb create mode 100644 poky/meta/recipes-support/taglib/taglib_1.12.bb create mode 100644 poky/meta/recipes-support/user-creation/files/system-xuser.conf create mode 100644 poky/meta/recipes-support/user-creation/xuser-account_0.1.bb create mode 100644 poky/meta/recipes-support/vim/files/0001-src-Makefile-improve-reproducibility.patch create mode 100644 poky/meta/recipes-support/vim/files/disable_acl_header_check.patch create mode 100644 poky/meta/recipes-support/vim/files/no-path-adjust.patch create mode 100644 poky/meta/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch create mode 100644 poky/meta/recipes-support/vim/vim-tiny_9.0.bb create mode 100644 poky/meta/recipes-support/vim/vim.inc create mode 100644 poky/meta/recipes-support/vim/vim_9.0.bb create mode 100644 poky/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch create mode 100644 poky/meta/recipes-support/vte/vte/0001-Makefile.docs-correctly-substitute-gtkdoc-qemu-wrapp.patch create mode 100644 poky/meta/recipes-support/vte/vte_0.66.2.bb create mode 100644 poky/meta/recipes-support/xxhash/xxhash_0.8.1.bb create mode 100644 poky/meta/recipes.txt create mode 100644 poky/meta/site/arc-common create mode 100644 poky/meta/site/arm-32 create mode 100644 poky/meta/site/arm-64 create mode 100644 poky/meta/site/arm-common create mode 100644 poky/meta/site/arm-darwin create mode 100644 poky/meta/site/arm-darwin8 create mode 100644 poky/meta/site/arm-linux create mode 100644 poky/meta/site/armeb-linux create mode 100644 poky/meta/site/common create mode 100644 poky/meta/site/common-darwin create mode 100644 poky/meta/site/common-glibc create mode 100644 poky/meta/site/common-linux create mode 100644 poky/meta/site/common-mingw create mode 100644 poky/meta/site/common-musl create mode 100644 poky/meta/site/endian-big create mode 100644 poky/meta/site/endian-little create mode 100644 poky/meta/site/ix86-common create mode 100644 poky/meta/site/microblaze-linux create mode 100644 poky/meta/site/mips-common create mode 100644 poky/meta/site/mips-linux create mode 100644 poky/meta/site/mips64-linux create mode 100644 poky/meta/site/mips64el-linux create mode 100644 poky/meta/site/mipsel-linux create mode 100644 poky/meta/site/mipsisa32r6-linux create mode 100644 poky/meta/site/mipsisa32r6el-linux create mode 100644 poky/meta/site/mipsisa64r6-linux create mode 100644 poky/meta/site/mipsisa64r6el-linux create mode 100644 poky/meta/site/native create mode 100644 poky/meta/site/nios2-linux create mode 100644 poky/meta/site/powerpc-common create mode 100644 poky/meta/site/powerpc-darwin create mode 100644 poky/meta/site/powerpc-linux create mode 100644 poky/meta/site/powerpc32-linux create mode 100644 poky/meta/site/powerpc32-linux-glibc create mode 100644 poky/meta/site/powerpc32-linux-musl create mode 100644 poky/meta/site/powerpc64-linux create mode 100644 poky/meta/site/powerpc64-linux-glibc create mode 100644 poky/meta/site/powerpc64-linux-musl create mode 100644 poky/meta/site/riscv32-linux create mode 100644 poky/meta/site/riscv64-linux create mode 100644 poky/meta/site/sh-common create mode 100644 poky/meta/site/sparc-linux create mode 100644 poky/meta/site/x32-linux create mode 100644 poky/meta/site/x86_64-linux create mode 100755 poky/oe-init-build-env create mode 100644 poky/scripts/README create mode 100755 poky/scripts/autobuilder-worker-prereq-tests create mode 100755 poky/scripts/bitbake-prserv-tool create mode 100755 poky/scripts/bitbake-whatchanged create mode 100755 poky/scripts/buildall-qemu create mode 100755 poky/scripts/buildhistory-collect-srcrevs create mode 100755 poky/scripts/buildhistory-diff create mode 100755 poky/scripts/buildstats-diff create mode 100755 poky/scripts/combo-layer create mode 100755 poky/scripts/combo-layer-hook-default.sh create mode 100644 poky/scripts/combo-layer.conf.example create mode 100755 poky/scripts/contrib/bb-perf/bb-matrix-plot.sh create mode 100755 poky/scripts/contrib/bb-perf/bb-matrix.sh create mode 100755 poky/scripts/contrib/bb-perf/buildstats-plot.sh create mode 100755 poky/scripts/contrib/bb-perf/buildstats.sh create mode 100755 poky/scripts/contrib/bbvars.py create mode 100755 poky/scripts/contrib/build-perf-test-wrapper.sh create mode 100755 poky/scripts/contrib/convert-overrides.py create mode 100755 poky/scripts/contrib/convert-spdx-licenses.py create mode 100755 poky/scripts/contrib/convert-srcuri.py create mode 100755 poky/scripts/contrib/convert-variable-renames.py create mode 100755 poky/scripts/contrib/ddimage create mode 100755 poky/scripts/contrib/devtool-stress.py create mode 100755 poky/scripts/contrib/dialog-power-control create mode 100755 poky/scripts/contrib/documentation-audit.sh create mode 100755 poky/scripts/contrib/graph-tool create mode 100755 poky/scripts/contrib/image-manifest create mode 100755 poky/scripts/contrib/list-packageconfig-flags.py create mode 100755 poky/scripts/contrib/oe-build-perf-report-email.py create mode 100755 poky/scripts/contrib/patchreview.py create mode 100755 poky/scripts/contrib/patchtest.sh create mode 100755 poky/scripts/contrib/serdevtry create mode 100755 poky/scripts/contrib/test_build_time.sh create mode 100755 poky/scripts/contrib/test_build_time_worker.sh create mode 100755 poky/scripts/contrib/uncovered create mode 100755 poky/scripts/contrib/verify-homepage.py create mode 100755 poky/scripts/cp-noerror create mode 100755 poky/scripts/create-pull-request create mode 120000 poky/scripts/cross-intercept/ar create mode 100755 poky/scripts/crosstap create mode 100755 poky/scripts/devtool create mode 100755 poky/scripts/gen-lockedsig-cache create mode 100755 poky/scripts/gen-site-config create mode 100755 poky/scripts/git create mode 100755 poky/scripts/install-buildtools create mode 100644 poky/scripts/lib/argparse_oe.py create mode 100644 poky/scripts/lib/build_perf/__init__.py create mode 100644 poky/scripts/lib/build_perf/html.py create mode 100644 poky/scripts/lib/build_perf/html/measurement_chart.html create mode 100644 poky/scripts/lib/build_perf/html/report.html create mode 100644 poky/scripts/lib/build_perf/report.py create mode 100644 poky/scripts/lib/build_perf/scrape-html-report.js create mode 100644 poky/scripts/lib/buildstats.py create mode 100644 poky/scripts/lib/checklayer/__init__.py create mode 100644 poky/scripts/lib/checklayer/case.py create mode 100644 poky/scripts/lib/checklayer/cases/__init__.py create mode 100644 poky/scripts/lib/checklayer/cases/bsp.py create mode 100644 poky/scripts/lib/checklayer/cases/common.py create mode 100644 poky/scripts/lib/checklayer/cases/distro.py create mode 100644 poky/scripts/lib/checklayer/context.py create mode 100644 poky/scripts/lib/devtool/__init__.py create mode 100644 poky/scripts/lib/devtool/build.py create mode 100644 poky/scripts/lib/devtool/build_image.py create mode 100644 poky/scripts/lib/devtool/build_sdk.py create mode 100644 poky/scripts/lib/devtool/deploy.py create mode 100644 poky/scripts/lib/devtool/export.py create mode 100644 poky/scripts/lib/devtool/import.py create mode 100644 poky/scripts/lib/devtool/menuconfig.py create mode 100644 poky/scripts/lib/devtool/package.py create mode 100644 poky/scripts/lib/devtool/runqemu.py create mode 100644 poky/scripts/lib/devtool/sdk.py create mode 100644 poky/scripts/lib/devtool/search.py create mode 100644 poky/scripts/lib/devtool/standard.py create mode 100644 poky/scripts/lib/devtool/upgrade.py create mode 100644 poky/scripts/lib/devtool/utilcmds.py create mode 100644 poky/scripts/lib/recipetool/__init__.py create mode 100644 poky/scripts/lib/recipetool/append.py create mode 100644 poky/scripts/lib/recipetool/create.py create mode 100644 poky/scripts/lib/recipetool/create_buildsys.py create mode 100644 poky/scripts/lib/recipetool/create_buildsys_python.py create mode 100644 poky/scripts/lib/recipetool/create_kernel.py create mode 100644 poky/scripts/lib/recipetool/create_kmod.py create mode 100644 poky/scripts/lib/recipetool/create_npm.py create mode 100644 poky/scripts/lib/recipetool/edit.py create mode 100644 poky/scripts/lib/recipetool/licenses.csv create mode 100644 poky/scripts/lib/recipetool/newappend.py create mode 100644 poky/scripts/lib/recipetool/setvar.py create mode 100644 poky/scripts/lib/resulttool/__init__.py create mode 100644 poky/scripts/lib/resulttool/log.py create mode 100755 poky/scripts/lib/resulttool/manualexecution.py create mode 100644 poky/scripts/lib/resulttool/merge.py create mode 100644 poky/scripts/lib/resulttool/regression.py create mode 100644 poky/scripts/lib/resulttool/report.py create mode 100644 poky/scripts/lib/resulttool/resultutils.py create mode 100644 poky/scripts/lib/resulttool/store.py create mode 100644 poky/scripts/lib/resulttool/template/test_report_full_text.txt create mode 100644 poky/scripts/lib/scriptpath.py create mode 100644 poky/scripts/lib/scriptutils.py create mode 100644 poky/scripts/lib/wic/__init__.py create mode 100644 poky/scripts/lib/wic/canned-wks/common.wks.inc create mode 100644 poky/scripts/lib/wic/canned-wks/directdisk-bootloader-config.cfg create mode 100644 poky/scripts/lib/wic/canned-wks/directdisk-bootloader-config.wks create mode 100644 poky/scripts/lib/wic/canned-wks/directdisk-gpt.wks create mode 100644 poky/scripts/lib/wic/canned-wks/directdisk-multi-rootfs.wks create mode 100644 poky/scripts/lib/wic/canned-wks/directdisk.wks create mode 100644 poky/scripts/lib/wic/canned-wks/efi-bootdisk.wks.in create mode 100644 poky/scripts/lib/wic/canned-wks/mkefidisk.wks create mode 100644 poky/scripts/lib/wic/canned-wks/mkhybridiso.wks create mode 100644 poky/scripts/lib/wic/canned-wks/qemuriscv.wks create mode 100644 poky/scripts/lib/wic/canned-wks/qemux86-directdisk.wks create mode 100644 poky/scripts/lib/wic/canned-wks/sdimage-bootpart.wks create mode 100644 poky/scripts/lib/wic/canned-wks/systemd-bootdisk.wks create mode 100644 poky/scripts/lib/wic/engine.py create mode 100644 poky/scripts/lib/wic/filemap.py create mode 100644 poky/scripts/lib/wic/help.py create mode 100644 poky/scripts/lib/wic/ksparser.py create mode 100644 poky/scripts/lib/wic/misc.py create mode 100644 poky/scripts/lib/wic/partition.py create mode 100644 poky/scripts/lib/wic/pluginbase.py create mode 100644 poky/scripts/lib/wic/plugins/imager/direct.py create mode 100644 poky/scripts/lib/wic/plugins/source/bootimg-biosplusefi.py create mode 100644 poky/scripts/lib/wic/plugins/source/bootimg-efi.py create mode 100644 poky/scripts/lib/wic/plugins/source/bootimg-partition.py create mode 100644 poky/scripts/lib/wic/plugins/source/bootimg-pcbios.py create mode 100644 poky/scripts/lib/wic/plugins/source/empty.py create mode 100644 poky/scripts/lib/wic/plugins/source/isoimage-isohybrid.py create mode 100644 poky/scripts/lib/wic/plugins/source/rawcopy.py create mode 100644 poky/scripts/lib/wic/plugins/source/rootfs.py create mode 100644 poky/scripts/multilib_header_wrapper.h create mode 100755 poky/scripts/native-intercept/ar create mode 100755 poky/scripts/native-intercept/chgrp create mode 100755 poky/scripts/native-intercept/chown create mode 100755 poky/scripts/nativesdk-intercept/chgrp create mode 100755 poky/scripts/nativesdk-intercept/chown create mode 100755 poky/scripts/oe-build-perf-report create mode 100755 poky/scripts/oe-build-perf-test create mode 100755 poky/scripts/oe-buildenv-internal create mode 100755 poky/scripts/oe-check-sstate create mode 100755 poky/scripts/oe-debuginfod create mode 100755 poky/scripts/oe-depends-dot create mode 100755 poky/scripts/oe-find-native-sysroot create mode 100755 poky/scripts/oe-git-archive create mode 100755 poky/scripts/oe-git-proxy create mode 100755 poky/scripts/oe-gnome-terminal-phonehome create mode 100755 poky/scripts/oe-pkgdata-browser create mode 100644 poky/scripts/oe-pkgdata-browser.glade create mode 100755 poky/scripts/oe-pkgdata-util create mode 100755 poky/scripts/oe-publish-sdk create mode 100755 poky/scripts/oe-pylint create mode 100755 poky/scripts/oe-run-native create mode 100755 poky/scripts/oe-selftest create mode 100755 poky/scripts/oe-setup-builddir create mode 100755 poky/scripts/oe-test create mode 100755 poky/scripts/oe-time-dd-test.sh create mode 100755 poky/scripts/oe-trim-schemas create mode 100755 poky/scripts/oepydevshell-internal.py create mode 100755 poky/scripts/opkg-query-helper.py create mode 100644 poky/scripts/postinst-intercepts/delay_to_first_boot create mode 100755 poky/scripts/postinst-intercepts/postinst_intercept create mode 100644 poky/scripts/postinst-intercepts/update_desktop_database create mode 100644 poky/scripts/postinst-intercepts/update_font_cache create mode 100644 poky/scripts/postinst-intercepts/update_gio_module_cache create mode 100644 poky/scripts/postinst-intercepts/update_gtk_icon_cache create mode 100644 poky/scripts/postinst-intercepts/update_gtk_immodules_cache create mode 100644 poky/scripts/postinst-intercepts/update_mime_database create mode 100644 poky/scripts/postinst-intercepts/update_pixbuf_cache create mode 100644 poky/scripts/postinst-intercepts/update_udev_hwdb create mode 100644 poky/scripts/pybootchartgui/AUTHORS create mode 100644 poky/scripts/pybootchartgui/COPYING create mode 100644 poky/scripts/pybootchartgui/MAINTAINERS create mode 100644 poky/scripts/pybootchartgui/NEWS create mode 100644 poky/scripts/pybootchartgui/README.pybootchart create mode 100755 poky/scripts/pybootchartgui/pybootchartgui.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/__init__.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/batch.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/draw.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/gui.py create mode 120000 poky/scripts/pybootchartgui/pybootchartgui/main.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/main.py.in create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/parsing.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/process_tree.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/samples.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/tests/parser_test.py create mode 100644 poky/scripts/pybootchartgui/pybootchartgui/tests/process_tree_test.py create mode 100755 poky/scripts/pythondeps create mode 100755 poky/scripts/recipetool create mode 100755 poky/scripts/relocate_sdk.py create mode 100755 poky/scripts/resulttool create mode 100644 poky/scripts/rootfs_rpm-extract-postinst.awk create mode 100755 poky/scripts/rpm2cpio.sh create mode 100755 poky/scripts/runqemu create mode 100755 poky/scripts/runqemu-addptable2image create mode 100755 poky/scripts/runqemu-export-rootfs create mode 100755 poky/scripts/runqemu-extract-sdk create mode 100755 poky/scripts/runqemu-gen-tapdevs create mode 100755 poky/scripts/runqemu-ifdown create mode 100755 poky/scripts/runqemu-ifup create mode 100644 poky/scripts/runqemu.README create mode 100755 poky/scripts/send-error-report create mode 100755 poky/scripts/send-pull-request create mode 100755 poky/scripts/sstate-cache-management.sh create mode 100755 poky/scripts/sstate-diff-machines.sh create mode 100755 poky/scripts/sstate-sysroot-cruft.sh create mode 100755 poky/scripts/sysroot-relativelinks.py create mode 100755 poky/scripts/task-time create mode 100755 poky/scripts/test-reexec create mode 100755 poky/scripts/test-remote-image create mode 100755 poky/scripts/tiny/dirsize.py create mode 100755 poky/scripts/tiny/ksize.py create mode 100755 poky/scripts/tiny/ksum.py create mode 100755 poky/scripts/verify-bashisms create mode 100755 poky/scripts/wic create mode 100755 poky/scripts/yocto-check-layer create mode 100755 poky/scripts/yocto-check-layer-wrapper create mode 100755 run_crops.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa5b792 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +build/tmp +build/cache +build/downloads +build/sstate-cache +build/bitbake-cookerdaemon.log +build/bitbake.lock +build/bitbake.sock +build/hashserve.sock +.vscode/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..dce8f04 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "meta-flutter"] +path = poky/meta-flutter +url = https://github.com/meta-flutter/meta-flutter.git +branch = kirkstone \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..de5546f --- /dev/null +++ b/Makefile @@ -0,0 +1,38 @@ +all: + ./run_crops.sh bitbake core-image-base + +minimal: + ./run_crops.sh bitbake core-image-minimal + +full: + ./run_crops.sh bitbake core-image-full-cmdline + +populate: + ./run_crops.sh bitbake core-image-base -c populate_sdk + +flash: + sudo dd if=/home/fabian/Desktop/yocto/yocto-build/build/tmp/deploy/images/raspberrypi4-64/core-image-minimal-raspberrypi4-64.rpi-sdimg of=/dev/sda + +flash-core: + sudo dd if=/home/fabian/Desktop/yocto/yocto-build/build/tmp/deploy/images/raspberrypi4-64/core-image-base-raspberrypi4-64.rpi-sdimg of=/dev/sda + +flash-full: + sudo dd if=/home/fabian/Desktop/yocto/yocto-build/build/tmp/deploy/images/raspberrypi4-64/core-image-full-cmdline-raspberrypi4-64.rpi-sdimg of=/dev/sda + +flash-full-zero: + sudo dd if=/home/fabian/Desktop/yocto/yocto-build/build/tmp/deploy/images/raspberrypi0-2w-64/core-image-full-cmdline-raspberrypi0-2w-64.rpi-sdimg of=/dev/sda + +clean-all: + ./run_crops.sh bitbake -c cleanall core-image-full-cmdline + +clean-flutter: + ./run_crops.sh bitbake -c clean flutter-elinux + +clean-flutter-pi: + ./run_crops.sh bitbake -c clean flutter-pi + +clean-flutter-sdk: + ./run_crops.sh bitbake flutter-sdk-native -cdo_cleanall + +clean-flutter-engine: + ./run_crops.sh bitbake flutter-engine -cdo_cleanall \ No newline at end of file diff --git a/backup/flutter-elinux_git.bb b/backup/flutter-elinux_git.bb new file mode 100644 index 0000000..ae6eafc --- /dev/null +++ b/backup/flutter-elinux_git.bb @@ -0,0 +1,37 @@ +# +# Copyright (c) 2023 Fabian Baldeau. All rights reserved. +# + +#LICENSE = "BSD-3-Clause" +#LIC_FILES_CHKSUM = "file:///home/fabian/Desktop/yocto/yocto-build/flutter_elinux/LICENSE;md5=9c0505187083d2bf5a515901bc7eb10d" +# +#SRC_URI += "file:///home/fabian/Desktop/yocto/yocto-build/flutter_elinux/build/flutter_assets/" +# +#do_install() { +# install -d ${D}/flutter/ +# cp -r ${WORKDIR}/home/fabian/Desktop/yocto/yocto-build/flutter_elinux/build/flutter_assets/ ${D}/flutter/ +#} +#INSANE_SKIP:${PN} += "ldflags" +#FILES:${PN} += "/flutter/*" + +SUMMARY = "Flutter eLinux Application" +DESCRIPTION = "Flutter eLinux Application" +AUTHOR = "Fabian Baldeau" +HOMEPAGE = "https://avoid.sh/bachelor/flutter_elinux" +BUGTRACKER = "https://avoid.sh/bachelor/flutter_elinux/issues" +SECTION = "graphics" + +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=9c0505187083d2bf5a515901bc7eb10d" + +SRCREV = "9323b4d6271ea31d1c9b8188cb2bbc12d220fd48" +SRC_URI = "git://avoid.sh/bachelor/flutter_elinux.git;lfs=0;branch=new;protocol=https;destsuffix=git;user=guest:zbGzzNHC" + +S = "${WORKDIR}/git" + +PUBSPEC_APPNAME = "flutter_elinux" +FLUTTER_APPLICATION_INSTALL_PREFIX = "/flutter" + +FLUTTER_BUILD_ARGS = "bundle" + +inherit flutter-app \ No newline at end of file diff --git a/backup/flutter-wonders_git.bb b/backup/flutter-wonders_git.bb new file mode 100644 index 0000000..9af0b12 --- /dev/null +++ b/backup/flutter-wonders_git.bb @@ -0,0 +1,25 @@ +# +# Copyright (c) 2023 Fabian Baldeau. All rights reserved. +# + +SUMMARY = "Flutter wonderous demo app from gskinner" +DESCRIPTION = "A demo app for advanced animations made by gskinner" +AUTHOR = "gskinner" +HOMEPAGE = "https://avoid.sh/bachelor/wonders" +BUGTRACKER = "https://avoid.sh/bachelor/wonders/issues" +SECTION = "graphics" + +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=9c0505187083d2bf5a515901bc7eb10d" + +SRCREV = "51f01a661a722c22b99e78984d60a2c58a48e783" +SRC_URI = "git://avoid.sh/bachelor/wonders.git;lfs=0;branch=main;protocol=https;destsuffix=git;user=guest:zbGzzNHC" + +S = "${WORKDIR}/git" + +PUBSPEC_APPNAME = "wonders" +FLUTTER_APPLICATION_INSTALL_PREFIX = "/flutter" + +FLUTTER_BUILD_ARGS = "bundle" + +inherit flutter-app \ No newline at end of file diff --git a/build/conf/bblayers.conf b/build/conf/bblayers.conf new file mode 100644 index 0000000..edf5f20 --- /dev/null +++ b/build/conf/bblayers.conf @@ -0,0 +1,23 @@ +# POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf +# changes incompatibly +# /poky/meta-mender/meta-mender-core +POKY_BBLAYERS_CONF_VERSION = "2" + +BBPATH = "${TOPDIR}" +BBFILES ?= "" + +YOCTOROOT = "${@os.path.abspath(os.path.join("${TOPDIR}", os.pardir))}" + +BBLAYERS ?= " \ + ${YOCTOROOT}/poky/meta \ + ${YOCTOROOT}/poky/meta-poky \ + ${YOCTOROOT}/poky/meta-yocto-bsp \ + ${YOCTOROOT}/poky/meta-clang \ + ${YOCTOROOT}/poky/meta-raspberrypi \ + ${YOCTOROOT}/poky/meta-openembedded/meta-oe \ + ${YOCTOROOT}/poky/meta-openembedded/meta-python \ + ${YOCTOROOT}/poky/meta-openembedded/meta-networking \ + ${YOCTOROOT}/poky/meta-flutter \ + ${YOCTOROOT}/poky/meta-flutter/meta-flutter-apps \ + ${YOCTOROOT}/poky/meta-stargazer \ + " diff --git a/build/conf/local.conf b/build/conf/local.conf new file mode 100644 index 0000000..2463154 --- /dev/null +++ b/build/conf/local.conf @@ -0,0 +1,331 @@ +# +# This file is your local configuration file and is where all local user settings +# are placed. The comments in this file give some guide to the options a new user +# to the system might want to change but pretty much any configuration option can +# be set in this file. More adventurous users can look at +# local.conf.sample.extended which contains other examples of configuration which +# can be placed in this file but new users likely won't need any of them +# initially. +# +# Lines starting with the '#' character are commented out and in some cases the +# default values are provided as comments to show people example syntax. Enabling +# the option is a question of removing the # character and making any change to the +# variable as required. +# TOOLCHAIN_HOST_TASK:append = " nativesdk-flutter-sdk" +ENABLE_UART = "1" + +BB_NUMBER_THREADS = "16" +PARALLEL_MAKE = "-j 16" + +# INHERIT:remove = "uninative" +# INHERIT += "mender-full" +# flutter-service + +# pi4 +IMAGE_INSTALL:append = " flutter-pi flutter-elinux flutter-service flutter-libraries linux-firmware-rpidistro-bcm43430 linux-firmware-bcm43455 kernel-image kernel-devicetree liberation-fonts networkmanager dhcpcd iptables iw linux-firmware ca-certificates gstreamer1.0 gstreamer1.0-plugins-base libinput libxkbcommon" + +# pi 0 w2 +#IMAGE_INSTALL:append = " flutter-pi flutter-elinux flutter-service flutter-libraries linux-firmware-rpidistro-bcm43436s linux-firmware-bcm43455 kernel-image kernel-devicetree liberation-fonts networkmanager dhcpcd iptables iw linux-firmware ca-certificates gstreamer1.0 gstreamer1.0-plugins-base libinput libxkbcommon" +# IMAGE-INSTALL:append = " network-manager dhcp-server wireless-tools dhcp-client" + +#MACHINE_EXTRA_RRECOMMENDS:append = " dhcp-server iptables iw wireless-tools dhcp-client linux-firmware linux-firmware-bcm43455 kernel-image kernel-devicetree liberation-fonts" + +INIT_MANAGER = "systemd" + +# MENDER_SERVER_URL = "https://mender.io" +#MENDER_TENANT_TOKEN = "" + +# RPI_USE_U_BOOT = "1" +# MENDER_EFI_LOADER = "u-boot" +# MENDER_PARTITION_ALIGNMENT_KB = "4096" +# MENDER_BOOT_PART_SIZE_MB = "40" +# VIRTUAL-RUNTIME_init_manager = "systemd" +# DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit" +# MENDER_SERVER_URL = "https://hosted.mender.io" +# MENDER_TENANT_TOKEN = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIzNGQwNjgzYy01NDM4LTQwNTUtYTgwNy1mYTVmMTNjMDI5ZTYiLCJzdWIiOiI1ZjkwZTY1Yi01N2YyLTQ5NDYtOGU2ZC1hN2NhZGIwNjg4YzAiLCJleHAiOjE2OTg1OTUyNjIsImlhdCI6MTY5ODUwODg2MiwibWVuZGVyLnRlbmFudCI6IjY1MzQzYWQ4ZDdjOTNlZTM3NTFhMmUyNCIsIm1lbmRlci51c2VyIjp0cnVlLCJpc3MiOiJNZW5kZXIgVXNlcnMiLCJzY3AiOiJtZW5kZXIuKiIsIm1lbmRlci5wbGFuIjoiZW50ZXJwcmlzZSIsIm1lbmRlci50cmlhbCI6dHJ1ZSwibWVuZGVyLmFkZG9ucyI6W3sibmFtZSI6ImNvbmZpZ3VyZSIsImVuYWJsZWQiOnRydWV9LHsibmFtZSI6InRyb3VibGVzaG9vdCIsImVuYWJsZWQiOnRydWV9LHsibmFtZSI6Im1vbml0b3IiLCJlbmFibGVkIjp0cnVlfV0sIm5iZiI6MTY5ODUwODg2Mn0.dABkcij0pm7d4o4RqYsWWparQbZQ4J-uL0iaQuaoYzPnObdPemoB61JyzNcBnA0rYzBsaa5yu177rFnwNGzuxN-tdxID1BMpADo_EwrXRxuQlRx287XJQTZRa9Ilj-nUpDq-XWOePKccm2_6SmMP6cCvoyB3aHADIQ9bl99iM0txduj2uVA8KDh2vKa5zq_Cjci1DHomweY_k9wXlC9jDXQ_cLdfPrVK9gapemLVBMN0lw8RbdUWwYVUipCIOJVlN0jObpDIyEx5p4zRAqKEMJIEPrNvl32IdtWZS9H2QsfZQXLc3AflfpIhzvh3Wovs7y4iAO14o0Vb5PRPPj5e0nI7MQoyjQnv1VG_Lhd1gJoYB3bNcv1lMJC24B9lnEF3c68z2SAeOGgq17KZJb2NZRzw5qdoRXUWsbt5BhSbNqzCReL5xuCZxXkH2E4J4t2aSXhlEJsGOX9AEVetqnSe4oViTygAGmy6A_Q76EQLNjovA20YZjDC7nsJS428rDVw" +# KERNEL_FEATURES:remove = "cfg/fs/vfat.scc" + +DISTRO_FEATURES:append = " systemd opengl wifi" + +DISABLE_OVERSCAN = "1" +DISABLE_SPLASH = "1" +GPU_MEM = "64" +DISABLE_RPI_BOOT_LOGO = "1" +ENABLE_SPI_BUS = "1" +# ENABLE_I2C = "1" + +# KERNEL_MODULE_AUTOLOAD:rpi += "i2c-dev i2c-bcm2708" + +RPI_EXTRA_CONFIG = ' \n \ +dtparam=spi=on \n \ +' + +# +# Machine Selection +# +# You need to select a specific machine to target the build with. There are a selection +# of emulated machines available which can boot and run in the QEMU emulator: +# +#MACHINE ?= "qemuarm" +#MACHINE ?= "qemuarm64" +#MACHINE ?= "qemumips" +#MACHINE ?= "qemumips64" +#MACHINE ?= "qemuppc" +#MACHINE ?= "qemux86" +#MACHINE ?= "qemux86-64" +# +# There are also the following hardware board target machines included for +# demonstration purposes: +# +#MACHINE ?= "beaglebone-yocto" +#MACHINE ?= "genericx86" +#MACHINE ?= "genericx86-64" +#MACHINE ?= "edgerouter" +# +# This sets the default machine to be qemux86-64 if no other machine is selected: +MACHINE ??= "raspberrypi4-64" +#MACHINE ??= "raspberrypi0-2w-64" +# MACHINE ??= "raspberrypi3-64" + +# +# Where to place downloads +# +# During a first build the system will download many different source code tarballs +# from various upstream projects. This can take a while, particularly if your network +# connection is slow. These are all stored in DL_DIR. When wiping and rebuilding you +# can preserve this directory to speed up this part of subsequent builds. This directory +# is safe to share between multiple builds on the same machine too. +# +# The default is a downloads directory under TOPDIR which is the build directory. +# +DL_DIR ?= "${TOPDIR}/downloads" + +# +# Where to place shared-state files +# +# BitBake has the capability to accelerate builds based on previously built output. +# This is done using "shared state" files which can be thought of as cache objects +# and this option determines where those files are placed. +# +# You can wipe out TMPDIR leaving this directory intact and the build would regenerate +# from these files if no changes were made to the configuration. If changes were made +# to the configuration, only shared state files where the state was still valid would +# be used (done using checksums). +# +# The default is a sstate-cache directory under TOPDIR. +# +SSTATE_DIR ?= "${TOPDIR}/sstate-cache" + +# +# Where to place the build output +# +# This option specifies where the bulk of the building work should be done and +# where BitBake should place its temporary files and output. Keep in mind that +# this includes the extraction and compilation of many applications and the toolchain +# which can use Gigabytes of hard disk space. +# +# The default is a tmp directory under TOPDIR. +# +TMPDIR = "${TOPDIR}/tmp" + +# +# Default policy config +# +# The distribution setting controls which policy settings are used as defaults. +# The default value is fine for general Yocto project use, at least initially. +# Ultimately when creating custom policy, people will likely end up subclassing +# these defaults. +# +DISTRO ?= "poky" + +# As an example of a subclass there is a "bleeding" edge policy configuration +# where many versions are set to the absolute latest code from the upstream +# source control systems. This is just mentioned here as an example, its not +# useful to most new users. +# DISTRO ?= "poky-bleeding" + +# +# Package Management configuration +# +# This variable lists which packaging formats to enable. Multiple package backends +# can be enabled at once and the first item listed in the variable will be used +# to generate the root filesystems. +# Options are: +# - 'package_deb' for debian style deb files +# - 'package_ipk' for ipk files are used by opkg (a debian style embedded package manager) +# - 'package_rpm' for rpm style packages +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk" +# We default to rpm: +PACKAGE_CLASSES ?= "package_rpm" + +# +# SDK target architecture +# +# This variable specifies the architecture to build SDK items for and means +# you can build the SDK packages for architectures other than the machine you are +# running the build on (i.e. building i686 packages on an x86_64 host). +# Supported values are i686, x86_64, aarch64 +#SDKMACHINE ?= "i686" + +# +# Extra image configuration defaults +# +# The EXTRA_IMAGE_FEATURES variable allows extra packages to be added to the generated +# images. Some of these options are added to certain image types automatically. The +# variable can contain the following options: +# "dbg-pkgs" - add -dbg packages for all installed packages +# (adds symbol information for debugging/profiling) +# "src-pkgs" - add -src packages for all installed packages +# (adds source code for debugging) +# "dev-pkgs" - add -dev packages for all installed packages +# (useful if you want to develop against libs in the image) +# "ptest-pkgs" - add -ptest packages for all ptest-enabled packages +# (useful if you want to run the package test suites) +# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) +# "tools-debug" - add debugging tools (gdb, strace) +# "eclipse-debug" - add Eclipse remote debugging support +# "tools-profile" - add profiling tools (oprofile, lttng, valgrind) +# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) +# "debug-tweaks" - make an image suitable for development +# e.g. ssh root access has a blank password +# There are other application targets that can be used here too, see +# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details. +# We default to enabling the debugging tweaks. +EXTRA_IMAGE_FEATURES ?= "debug-tweaks" + +# +# Additional image features +# +# The following is a list of additional classes to use when building images which +# enable extra features. Some available options which can be included in this variable +# are: +# - 'buildstats' collect build statistics +USER_CLASSES ?= "buildstats" + +# +# Runtime testing of images +# +# The build system can test booting virtual machine images under qemu (an emulator) +# after any root filesystems are created and run tests against those images. It can also +# run tests against any SDK that are built. To enable this uncomment these lines. +# See classes/test{image,sdk}.bbclass for further details. +#IMAGE_CLASSES += "testimage testsdk" +#TESTIMAGE_AUTO:qemuall = "1" + +# +# Interactive shell configuration +# +# Under certain circumstances the system may need input from you and to do this it +# can launch an interactive shell. It needs to do this since the build is +# multithreaded and needs to be able to handle the case where more than one parallel +# process may require the user's attention. The default is iterate over the available +# terminal types to find one that works. +# +# Examples of the occasions this may happen are when resolving patches which cannot +# be applied, to use the devshell or the kernel menuconfig +# +# Supported values are auto, gnome, xfce, rxvt, screen, konsole (KDE 3.x only), none +# Note: currently, Konsole support only works for KDE 3.x due to the way +# newer Konsole versions behave +#OE_TERMINAL = "auto" +# By default disable interactive patch resolution (tasks will just fail instead): +PATCHRESOLVE = "noop" + +# +# Disk Space Monitoring during the build +# +# Monitor the disk space during the build. If there is less that 1GB of space or less +# than 100K inodes in any key build location (TMPDIR, DL_DIR, SSTATE_DIR), gracefully +# shutdown the build. If there is less than 100MB or 1K inodes, perform a hard halt +# of the build. The reason for this is that running completely out of space can corrupt +# files and damages the build in ways which may not be easily recoverable. +# It's necessary to monitor /tmp, if there is no space left the build will fail +# with very exotic errors. +BB_DISKMON_DIRS ??= "\ + STOPTASKS,${TMPDIR},1G,100K \ + STOPTASKS,${DL_DIR},1G,100K \ + STOPTASKS,${SSTATE_DIR},1G,100K \ + STOPTASKS,/tmp,100M,100K \ + HALT,${TMPDIR},100M,1K \ + HALT,${DL_DIR},100M,1K \ + HALT,${SSTATE_DIR},100M,1K \ + HALT,/tmp,10M,1K" + +# +# Shared-state files from other locations +# +# As mentioned above, shared state files are prebuilt cache data objects which can be +# used to accelerate build time. This variable can be used to configure the system +# to search other mirror locations for these objects before it builds the data itself. +# +# This can be a filesystem directory, or a remote url such as https or ftp. These +# would contain the sstate-cache results from previous builds (possibly from other +# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the +# cache locations to check for the shared objects. +# NOTE: if the mirror uses the same structure as SSTATE_DIR, you need to add PATH +# at the end as shown in the examples below. This will be substituted with the +# correct path within the directory structure. +#SSTATE_MIRRORS ?= "\ +#file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \ +#file://.* file:///some/local/dir/sstate/PATH" + +# +# Yocto Project SState Mirror +# +# The Yocto Project has prebuilt artefacts available for its releases, you can enable +# use of these by uncommenting the following lines. This will mean the build uses +# the network to check for artefacts at the start of builds, which does slow it down +# equally, it will also speed up the builds by not having to build things if they are +# present in the cache. It assumes you can download something faster than you can build it +# which will depend on your network. +# Note: For this to work you also need hash-equivalence passthrough to the matching server +# +#BB_HASHSERVE_UPSTREAM = "hashserv.yocto.io:8687" +#SSTATE_MIRRORS ?= "file://.* http://sstate.yoctoproject.org/all/PATH;downloadfilename=PATH" + +# +# Qemu configuration +# +# By default native qemu will build with a builtin VNC server where graphical output can be +# seen. The line below enables the SDL UI frontend too. +PACKAGECONFIG:append:pn-qemu-system-native = " sdl" +# By default libsdl2-native will be built, if you want to use your host's libSDL instead of +# the minimal libsdl built by libsdl2-native then uncomment the ASSUME_PROVIDED line below. +#ASSUME_PROVIDED += "libsdl2-native" + +# You can also enable the Gtk UI frontend, which takes somewhat longer to build, but adds +# a handy set of menus for controlling the emulator. +#PACKAGECONFIG:append:pn-qemu-system-native = " gtk+" + +# +# Hash Equivalence +# +# Enable support for automatically running a local hash equivalence server and +# instruct bitbake to use a hash equivalence aware signature generator. Hash +# equivalence improves reuse of sstate by detecting when a given sstate +# artifact can be reused as equivalent, even if the current task hash doesn't +# match the one that generated the artifact. +# +# A shared hash equivalent server can be set with ":" format +# +#BB_HASHSERVE = "auto" +#BB_SIGNATURE_HANDLER = "OEEquivHash" + +# +# Memory Resident Bitbake +# +# Bitbake's server component can stay in memory after the UI for the current command +# has completed. This means subsequent commands can run faster since there is no need +# for bitbake to reload cache files and so on. Number is in seconds, after which the +# server will shut down. +# +#BB_SERVER_TIMEOUT = "60" + +# CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to +# track the version of this file when it was generated. This can safely be ignored if +# this doesn't mean anything to you. +CONF_VERSION = "2" + +#IMAGE_FSTYPES:remove = " rpi-sdimg" +IMAGE_FSTYPES = "ext4 rpi-sdimg" +SDIMG_ROOTFS_TYPE = "ext4" diff --git a/build/conf/templateconf.cfg b/build/conf/templateconf.cfg new file mode 100644 index 0000000..7480a55 --- /dev/null +++ b/build/conf/templateconf.cfg @@ -0,0 +1 @@ +meta-poky/conf diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..f582a88 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3" +services: + poky: + image: crops/poky + volumes: + - ".:/yocto" + working_dir: /yocto + command: bash -c "ping magni" + # command: bash -c "source /yocto/poky/oe-init-build-env /yocto/build && bitbake core-image-full-cmdline" diff --git a/notes.md b/notes.md new file mode 100644 index 0000000..a7ca042 --- /dev/null +++ b/notes.md @@ -0,0 +1,43 @@ +# add layer + +./run_crops.sh bitbake-layers create-layer ../poky/meta-stargazer + +# network + +https://hub.mender.io/t/how-to-configure-networking-using-systemd-in-yocto-project/1097 + +# flutter-app path + +/usr/share/flutter/demo/3.16.7/release + +/flutter/flutter_elinux/3.16.9/release + +# no configured locale + +# could not load keyboard configuration from /etc/default/keyboard + +# screenshot with fbcat + +fbgrab + +# deps + +https://github.com/polina-c/layerlens + +# flutter systemd + +```config +[Unit] +Description=Flutter App Service +After=network.target +StartLimitIntervalSec=0 + +[Service] +Type=simple +Restart=always +RestartSec=1 +ExecStart=/usr/bin/flutter-pi --release /usr/share/flutter/flutter_elinux/3.16.7/release + +[Install] +WantedBy=multi-user.target +``` diff --git a/poky/.gitignore b/poky/.gitignore new file mode 100644 index 0000000..6a8c62a --- /dev/null +++ b/poky/.gitignore @@ -0,0 +1,40 @@ +*.pyc +*.pyo +/*.patch +/.repo/ +/build*/ +pyshtables.py +pstage/ +scripts/oe-git-proxy-socks +sources/ +meta-*/ +buildtools/ +!meta-skeleton +!meta-selftest +hob-image-*.bb +*.swp +*.orig +*.rej +*~ +!meta-poky +!meta-yocto +!meta-yocto-bsp +!meta-yocto-imported +!meta-openembedded +!meta-raspberrypi +!meta-stargazer +!meta-flutter +!meta-mender +!meta-mender-community +/documentation/*/eclipse/ +/documentation/*/*.html +/documentation/*/*.pdf +/documentation/*/*.tgz +/bitbake/doc/bitbake-user-manual/bitbake-user-manual.html +/bitbake/doc/bitbake-user-manual/bitbake-user-manual.pdf +/bitbake/doc/bitbake-user-manual/bitbake-user-manual.tgz +pull-*/ +bitbake/lib/toaster/contrib/tts/backlog.txt +bitbake/lib/toaster/contrib/tts/log/* +bitbake/lib/toaster/contrib/tts/.cache/* +bitbake/lib/bb/tests/runqueue-tests/bitbake-cookerdaemon.log \ No newline at end of file diff --git a/poky/.templateconf b/poky/.templateconf new file mode 100644 index 0000000..0fe6f82 --- /dev/null +++ b/poky/.templateconf @@ -0,0 +1,2 @@ +# Template settings +TEMPLATECONF=${TEMPLATECONF:-meta-poky/conf} diff --git a/poky/LICENSE b/poky/LICENSE new file mode 100644 index 0000000..d20dc59 --- /dev/null +++ b/poky/LICENSE @@ -0,0 +1,20 @@ +Different components of OpenEmbedded are under different licenses (a mix +of MIT and GPLv2). See LICENSE.GPL-2.0-only and LICENSE.MIT for further +details of the individual licenses. + +All metadata is MIT licensed unless otherwise stated. Source code +included in tree for individual recipes (e.g. patches) are under +the LICENSE stated in the associated recipe (.bb file) unless +otherwise stated. + +License information for any other files is either explicitly stated +or defaults to GPL version 2 only. + +Individual files contain the following style tags instead of the full license +text to identify their license: + + SPDX-License-Identifier: GPL-2.0-only + SPDX-License-Identifier: MIT + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ diff --git a/poky/LICENSE.GPL-2.0-only b/poky/LICENSE.GPL-2.0-only new file mode 100644 index 0000000..5db3c0a --- /dev/null +++ b/poky/LICENSE.GPL-2.0-only @@ -0,0 +1,288 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + +Note: +Individual files contain the following tag instead of the full license text. + + SPDX-License-Identifier: GPL-2.0-only + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ diff --git a/poky/LICENSE.MIT b/poky/LICENSE.MIT new file mode 100644 index 0000000..a6919eb --- /dev/null +++ b/poky/LICENSE.MIT @@ -0,0 +1,25 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Note: +Individual files contain the following tag instead of the full license text. + + SPDX-License-Identifier: MIT + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ diff --git a/poky/MAINTAINERS.md b/poky/MAINTAINERS.md new file mode 100644 index 0000000..36a9bde --- /dev/null +++ b/poky/MAINTAINERS.md @@ -0,0 +1,72 @@ +OpenEmbedded-Core and Yocto Project Maintainer Information +========================================================== + +OpenEmbedded and Yocto Project work jointly together to maintain the metadata, +layers, tools and sub-projects that make up their ecosystems. + +The projects operate through collaborative development. This currently takes +place on mailing lists for many components as the "pull request on github" +workflow works well for single or small numbers of maintainers but we have +a large number, all with different specialisms and benefit from the mailing +list review process. Changes therefore undergo peer review through mailing +lists in many cases. + +This file aims to acknowledge people with specific skills/knowledge/interest +both to recognise their contributions but also empower them to help lead and +curate those components. Where we have people with specialist knowledge in +particular areas, during review patches/feedback from these people in these +areas would generally carry weight. + +This file is maintained in OE-Core but may refer to components that are separate +to it if that makes sense in the context of maintainership. The README of specific +layers and components should ultimately be definitive about the patch process and +maintainership for the component. + +Recipe Maintainers +------------------ + +See meta/conf/distro/include/maintainers.inc + +Component/Subsystem Maintainers +------------------------------- + +* Kernel (inc. linux-yocto, perf): Bruce Ashfield +* Reproducible Builds: Joshua Watt +* Toaster: David Reyna +* Hash-Equivalence: Joshua Watt +* Recipe upgrade infrastructure: Alex Kanavin +* Toolchain: Khem Raj +* ptest-runner: Aníbal Limón +* opkg: Alex Stewart +* devtool: Saul Wold +* eSDK: Saul Wold +* overlayfs: Vyacheslav Yurkov + +Maintainers needed +------------------ + +* Pseudo +* Layer Index +* recipetool +* QA framework/automated testing +* error reporting system/web UI +* wic +* Patchwork +* Patchtest +* Prelink-cross +* Matchbox +* Sato +* Autobuilder + +Layer Maintainers needed +------------------------ + +* meta-gplv2 (ideally new strategy but active maintainer welcome) + +Shadow maintainers/development needed +-------------------------------------- + +* toaster +* bitbake + + diff --git a/poky/MEMORIAM b/poky/MEMORIAM new file mode 100644 index 0000000..0b3ce46 --- /dev/null +++ b/poky/MEMORIAM @@ -0,0 +1,5 @@ +Some project contributors who are sadly no longer with us: + +Greg Gilbert (treke) - Ahead of his time with licensing +Thomas Wood (thos) - Creator of the original sato +Scott Rifenbark (scottrif) - Our long standing techwriter whose words live on diff --git a/poky/Makefile b/poky/Makefile new file mode 100644 index 0000000..c951855 --- /dev/null +++ b/poky/Makefile @@ -0,0 +1,35 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build +DESTDIR = final + +ifeq ($(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi),0) +$(error "The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed") +endif + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile.sphinx clean publish + +publish: Makefile.sphinx html singlehtml + rm -rf $(BUILDDIR)/$(DESTDIR)/ + mkdir -p $(BUILDDIR)/$(DESTDIR)/ + cp -r $(BUILDDIR)/html/* $(BUILDDIR)/$(DESTDIR)/ + cp $(BUILDDIR)/singlehtml/index.html $(BUILDDIR)/$(DESTDIR)/singleindex.html + sed -i -e 's@index.html#@singleindex.html#@g' $(BUILDDIR)/$(DESTDIR)/singleindex.html + +clean: + @rm -rf $(BUILDDIR) + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile.sphinx + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/poky/README.OE-Core.md b/poky/README.OE-Core.md new file mode 100644 index 0000000..2f2127f --- /dev/null +++ b/poky/README.OE-Core.md @@ -0,0 +1,29 @@ +OpenEmbedded-Core +================= + +OpenEmbedded-Core is a layer containing the core metadata for current versions +of OpenEmbedded. It is distro-less (can build a functional image with +DISTRO = "nodistro") and contains only emulated machine support. + +For information about OpenEmbedded, see the OpenEmbedded website: + https://www.openembedded.org/ + +The Yocto Project has extensive documentation about OE including a reference manual +which can be found at: + https://docs.yoctoproject.org/ + + +Contributing +------------ + +Please refer to +https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded +for guidelines on how to submit patches. + +Mailing list: + + https://lists.openembedded.org/g/openembedded-core + +Source code: + + https://git.openembedded.org/openembedded-core/ diff --git a/poky/README.hardware.md b/poky/README.hardware.md new file mode 120000 index 0000000..0d0745f --- /dev/null +++ b/poky/README.hardware.md @@ -0,0 +1 @@ +meta-yocto-bsp/README.hardware.md \ No newline at end of file diff --git a/poky/README.md b/poky/README.md new file mode 120000 index 0000000..6d6b297 --- /dev/null +++ b/poky/README.md @@ -0,0 +1 @@ +README.poky.md \ No newline at end of file diff --git a/poky/README.poky.md b/poky/README.poky.md new file mode 120000 index 0000000..15b27a3 --- /dev/null +++ b/poky/README.poky.md @@ -0,0 +1 @@ +meta-poky/README.poky.md \ No newline at end of file diff --git a/poky/README.qemu.md b/poky/README.qemu.md new file mode 100644 index 0000000..9f56b7d --- /dev/null +++ b/poky/README.qemu.md @@ -0,0 +1,15 @@ +QEMU Emulation Targets +====================== + +To simplify development, the build system supports building images to +work with the QEMU emulator in system emulation mode. Several architectures +are currently supported in 32 and 64 bit variants: + + * ARM (qemuarm + qemuarm64) + * x86 (qemux86 + qemux86-64) + * PowerPC (qemuppc only) + * MIPS (qemumips + qemumips64) + +Use of the QEMU images is covered in the Yocto Project Reference Manual. +The appropriate MACHINE variable value corresponding to the target is given +in brackets. diff --git a/poky/bitbake/.gitattributes b/poky/bitbake/.gitattributes new file mode 100644 index 0000000..e4f8f62 --- /dev/null +++ b/poky/bitbake/.gitattributes @@ -0,0 +1,2 @@ +*min.js binary +*min.css binary diff --git a/poky/bitbake/AUTHORS b/poky/bitbake/AUTHORS new file mode 100644 index 0000000..91fd78f --- /dev/null +++ b/poky/bitbake/AUTHORS @@ -0,0 +1,10 @@ +Tim Ansell +Phil Blundell +Seb Frankengul +Holger Freyther +Marcin Juszkiewicz +Chris Larson +Ulrich Luckas +Mickey Lauer +Richard Purdie +Holger Schurig diff --git a/poky/bitbake/ChangeLog b/poky/bitbake/ChangeLog new file mode 100644 index 0000000..4ac2a64 --- /dev/null +++ b/poky/bitbake/ChangeLog @@ -0,0 +1,317 @@ +Changes in Bitbake 1.9.x: + - Add PE (Package Epoch) support from Philipp Zabel (pH5) + - Treat python functions the same as shell functions for logging + - Use TMPDIR/anonfunc as a __anonfunc temp directory (T) + - Catch truncated cache file errors + - Allow operations other than assignment on flag variables + - Add code to handle inter-task dependencies + - Fix cache errors when generation dotGraphs + - Make sure __inherit_cache is updated before calling include() (from Michael Krelin) + - Fix bug when target was in ASSUME_PROVIDED (#2236) + - Raise ParseError for filenames with multiple underscores instead of infinitely looping (#2062) + - Fix invalid regexp in BBMASK error handling (missing import) (#1124) + - Promote certain warnings from debug to note 2 level + - Update manual + - Correctly redirect stdin when forking + - If parsing errors are found, exit, too many users miss the errors + - Remove supriours PREFERRED_PROVIDER warnings + - svn fetcher: Add _buildsvncommand function + - Improve certain error messages + - Rewrite svn fetcher to make adding extra operations easier + as part of future SRCDATE="now" fixes + (requires new FETCHCMD_svn definition in bitbake.conf) + - Change SVNDIR layout to be more unique (fixes #2644 and #2624) + - Add ConfigParsed Event after configuration parsing is complete + - Add SRCREV support for svn fetcher + - data.emit_var() - only call getVar if we need the variable + - Stop generating the A variable (seems to be legacy code) + - Make sure intertask depends get processed correcting in recursive depends + - Add pn-PN to overrides when evaluating PREFERRED_VERSION + - Improve the progress indicator by skipping tasks that have + already run before starting the build rather than during it + - Add profiling option (-P) + - Add BB_SRCREV_POLICY variable (clear or cache) to control SRCREV cache + - Add SRCREV_FORMAT support + - Fix local fetcher's localpath return values + - Apply OVERRIDES before performing immediate expansions + - Allow the -b -e option combination to take regular expressions + - Fix handling of variables with expansion in the name using _append/_prepend + e.g. RRECOMMENDS_${PN}_append_xyz = "abc" + - Add plain message function to bb.msg + - Sort the list of providers before processing so dependency problems are + reproducible rather than effectively random + - Fix/improve bitbake -s output + - Add locking for fetchers so only one tries to fetch a given file at a given time + - Fix int(0)/None confusion in runqueue.py which causes random gaps in dependency chains + - Expand data in addtasks + - Print the list of missing DEPENDS,RDEPENDS for the "No buildable providers available for required...." + error message. + - Rework add_task to be more efficient (6% speedup, 7% number of function calls reduction) + - Sort digraph output to make builds more reproducible + - Split expandKeys into two for loops to benefit from the expand_cache (12% speedup) + - runqueue.py: Fix idepends handling to avoid dependency errors + - Clear the terminal TOSTOP flag if set (and warn the user) + - Fix regression from r653 and make SRCDATE/CVSDATE work for packages again + - Fix a bug in bb.decodeurl where http://some.where.com/somefile.tgz decoded to host="" (#1530) + - Warn about malformed PREFERRED_PROVIDERS (#1072) + - Add support for BB_NICE_LEVEL option (#1627) + - Psyco is used only on x86 as there is no support for other architectures. + - Sort initial providers list by default preference (#1145, #2024) + - Improve provider sorting so prefered versions have preference over latest versions (#768) + - Detect builds of tasks with overlapping providers and warn (will become a fatal error) (#1359) + - Add MULTI_PROVIDER_WHITELIST variable to allow known safe multiple providers to be listed + - Handle paths in svn fetcher module parameter + - Support the syntax "export VARIABLE" + - Add bzr fetcher + - Add support for cleaning directories before a task in the form: + do_taskname[cleandirs] = "dir" + - bzr fetcher tweaks from Robert Schuster (#2913) + - Add mercurial (hg) fetcher from Robert Schuster (#2913) + - Don't add duplicates to BBPATH + - Fix preferred_version return values (providers.py) + - Fix 'depends' flag splitting + - Fix unexport handling (#3135) + - Add bb.copyfile function similar to bb.movefile (and improve movefile error reporting) + - Allow multiple options for deptask flag + - Use git-fetch instead of git-pull removing any need for merges when + fetching (we don't care about the index). Fixes fetch errors. + - Add BB_GENERATE_MIRROR_TARBALLS option, set to 0 to make git fetches + faster at the expense of not creating mirror tarballs. + - SRCREV handling updates, improvements and fixes from Poky + - Add bb.utils.lockfile() and bb.utils.unlockfile() from Poky + - Add support for task selfstamp and lockfiles flags + - Disable task number acceleration since it can allow the tasks to run + out of sequence + - Improve runqueue code comments + - Add task scheduler abstraction and some example schedulers + - Improve circular dependency chain debugging code and user feedback + - Don't give a stacktrace for invalid tasks, have a user friendly message (#3431) + - Add support for "-e target" (#3432) + - Fix shell showdata command (#3259) + - Fix shell data updating problems (#1880) + - Properly raise errors for invalid source URI protocols + - Change the wget fetcher failure handling to avoid lockfile problems + - Add support for branches in git fetcher (Otavio Salvador, Michael Lauer) + - Make taskdata and runqueue errors more user friendly + - Add norecurse and fullpath options to cvs fetcher + - Fix exit code for build failures in --continue mode + - Fix git branch tags fetching + - Change parseConfigurationFile so it works on real data, not a copy + - Handle 'base' inherit and all other INHERITs from parseConfigurationFile + instead of BBHandler + - Fix getVarFlags bug in data_smart + - Optmise cache handling by more quickly detecting an invalid cache, only + saving the cache when its changed, moving the cache validity check into + the parsing loop and factoring some getVar calls outside a for loop + - Cooker: Remove a debug message from the parsing loop to lower overhead + - Convert build.py exec_task to use getVarFlags + - Update shell to use cooker.buildFile + - Add StampUpdate event + - Convert -b option to use taskdata/runqueue + - Remove digraph and switch to new stamp checking code. exec_task no longer + honours dependencies + - Make fetcher timestamp updating non-fatal when permissions don't allow + updates + - Add BB_SCHEDULER variable/option ("completion" or "speed") controlling + the way bitbake schedules tasks + - Add BB_STAMP_POLICY variable/option ("perfile" or "full") controlling + how extensively stamps are looked at for validity + - When handling build target failures make sure idepends are checked and + failed where needed. Fixes --continue mode crashes. + - Fix -f (force) in conjunction with -b + - Fix problems with recrdeptask handling where some idepends weren't handled + correctly. + - Handle exit codes correctly (from pH5) + - Work around refs/HEAD issues with git over http (#3410) + - Add proxy support to the CVS fetcher (from Cyril Chemparathy) + - Improve runfetchcmd so errors are seen and various GIT variables are exported + - Add ability to fetchers to check URL validity without downloading + - Improve runtime PREFERRED_PROVIDERS warning message + - Add BB_STAMP_WHITELIST option which contains a list of stamps to ignore when + checking stamp dependencies and using a BB_STAMP_POLICY of "whitelist" + - No longer weight providers on the basis of a package being "already staged". This + leads to builds being non-deterministic. + - Flush stdout/stderr before forking to fix duplicate console output + - Make sure recrdeps tasks include all inter-task dependencies of a given fn + - Add bb.runqueue.check_stamp_fn() for use by packaged-staging + - Add PERSISTENT_DIR to store the PersistData in a persistent + directory != the cache dir. + - Add md5 and sha256 checksum generation functions to utils.py + - Correctly handle '-' characters in class names (#2958) + - Make sure expandKeys has been called on the data dictionary before running tasks + - Correctly add a task override in the form task-TASKNAME. + - Revert the '-' character fix in class names since it breaks things + - When a regexp fails to compile for PACKAGES_DYNAMIC, print a more useful error (#4444) + - Allow to checkout CVS by Date and Time. Just add HHmm to the SRCDATE. + - Move prunedir function to utils.py and add explode_dep_versions function + - Raise an exception if SRCREV == 'INVALID' + - Fix hg fetcher username/password handling and fix crash + - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name + - Rename __depends to __base_depends after configuration parsing so we don't + recheck the validity of the config files time after time + - Add better environmental variable handling. By default it will now only pass certain + whitelisted variables into the data store. If BB_PRESERVE_ENV is set bitbake will use + all variable from the environment. If BB_ENV_WHITELIST is set, that whitelist will be + used instead of the internal bitbake one. Alternatively, BB_ENV_EXTRAWHITE can be used + to extend the internal whitelist. + - Perforce fetcher fix to use commandline options instead of being overriden by the environment + - bb.utils.prunedir can cope with symlinks to directoriees without exceptions + - use @rev when doing a svn checkout + - Add osc fetcher (from Joshua Lock in Poky) + - When SRCREV autorevisioning for a recipe is in use, don't cache the recipe + - Add tryaltconfigs option to control whether bitbake trys using alternative providers + to fulfil failed dependencies. It defaults to off, changing the default since this + behaviour confuses many users and isn't often useful. + - Improve lock file function error handling + - Add username handling to the git fetcher (Robert Bragg) + - Add support for HTTP_PROXY and HTTP_PROXY_IGNORE variables to the wget fetcher + - Export more variables to the fetcher commands to allow ssh checkouts and checkouts through + proxies to work better. (from Poky) + - Also allow user and pswd options in SRC_URIs globally (from Poky) + - Improve proxy handling when using mirrors (from Poky) + - Add bb.utils.prune_suffix function + - Fix hg checkouts of specific revisions (from Poky) + - Fix wget fetching of urls with parameters specified (from Poky) + - Add username handling to git fetcher (from Poky) + - Set HOME environmental variable when running fetcher commands (from Poky) + - Make sure allowed variables inherited from the environment are exported again (from Poky) + - When running a stage task in bbshell, run populate_staging, not the stage task (from Poky) + - Fix + character escaping from PACKAGES_DYNAMIC (thanks Otavio Salvador) + - Addition of BBCLASSEXTEND support for allowing one recipe to provide multiple targets (from Poky) + +Changes in Bitbake 1.8.0: + - Release 1.7.x as a stable series + +Changes in BitBake 1.7.x: + - Major updates of the dependency handling and execution + of tasks. Code from bin/bitbake replaced with runqueue.py + and taskdata.py + - New task execution code supports multithreading with a simplistic + threading algorithm controlled by BB_NUMBER_THREADS + - Change of the SVN Fetcher to keep the checkout around + courtsey of Paul Sokolovsky (#1367) + - PATH fix to bbimage (#1108) + - Allow debug domains to be specified on the commandline (-l) + - Allow 'interactive' tasks + - Logging message improvements + - Drop now uneeded BUILD_ALL_DEPS variable + - Add support for wildcards to -b option + - Major overhaul of the fetchers making a large amount of code common + including mirroring code + - Fetchers now touch md5 stamps upon access (to show activity) + - Fix -f force option when used without -b (long standing bug) + - Add expand_cache to data_cache.py, caching expanded data (speedup) + - Allow version field in DEPENDS (ignored for now) + - Add abort flag support to the shell + - Make inherit fail if the class doesn't exist (#1478) + - Fix data.emit_env() to expand keynames as well as values + - Add ssh fetcher + - Add perforce fetcher + - Make PREFERRED_PROVIDER_foobar defaults to foobar if available + - Share the parser's mtime_cache, reducing the number of stat syscalls + - Compile all anonfuncs at once! + *** Anonfuncs must now use common spacing format *** + - Memorise the list of handlers in __BBHANDLERS and tasks in __BBTASKS + This removes 2 million function calls resulting in a 5-10% speedup + - Add manpage + - Update generateDotGraph to use taskData/runQueue improving accuracy + and also adding a task dependency graph + - Fix/standardise on GPLv2 licence + - Move most functionality from bin/bitbake to cooker.py and split into + separate funcitons + - CVS fetcher: Added support for non-default port + - Add BBINCLUDELOGS_LINES, the number of lines to read from any logfile + - Drop shebangs from lib/bb scripts + +Changes in Bitbake 1.6.0: + - Better msg handling + - COW dict implementation from Tim Ansell (mithro) leading + to better performance + - Speed up of -s + +Changes in Bitbake 1.4.4: + - SRCDATE now handling courtsey Justin Patrin + - #1017 fix to work with rm_work + +Changes in BitBake 1.4.2: + - Send logs to oe.pastebin.com instead of pastebin.com + fixes #856 + - Copy the internal bitbake data before building the + dependency graph. This fixes nano not having a + virtual/libc dependency + - Allow multiple TARBALL_STASH entries + - Cache, check if the directory exists before changing + into it + - git speedup cloning by not doing a checkout + - allow to have spaces in filenames (.conf, .bb, .bbclass) + +Changes in BitBake 1.4.0: + - Fix to check both RDEPENDS and RDEPENDS_${PN} + - Fix a RDEPENDS parsing bug in utils:explode_deps() + - Update git fetcher behaviour to match git changes + - ASSUME_PROVIDED allowed to include runtime packages + - git fetcher cleanup and efficency improvements + - Change the format of the cache + - Update usermanual to document the Fetchers + - Major changes to caching with a new strategy + giving a major performance increase when reparsing + with few data changes + +Changes in BitBake 1.3.3: + - Create a new Fetcher module to ease the + development of new Fetchers. + Issue #438 fixed by rpurdie@openedhand.com + - Make the Subversion fetcher honor the SRC Date + (CVSDATE). + Issue #555 fixed by chris@openedhand.com + - Expand PREFERRED_PROVIDER properly + Issue #436 fixed by rprudie@openedhand.com + - Typo fix for Issue #531 by Philipp Zabel for the + BitBake Shell + - Introduce a new special variable SRCDATE as + a generic naming to replace CVSDATE. + - Introduce a new keyword 'required'. In contrast + to 'include' parsing will fail if a to be included + file can not be found. + - Remove hardcoding of the STAMP directory. Patch + courtsey pHilipp Zabel + - Track the RDEPENDS of each package (rpurdie@openedhand.com) + - Introduce BUILD_ALL_DEPS to build all RDEPENDS. E.g + this is used by the OpenEmbedded Meta Packages. + (rpurdie@openedhand.com). + +Changes in BitBake 1.3.2: + - reintegration of make.py into BitBake + - bbread is gone, use bitbake -e + - lots of shell updates and bugfixes + - Introduction of the .= and =. operator + - Sort variables, keys and groups in bitdoc + - Fix regression in the handling of BBCOLLECTIONS + - Update the bitbake usermanual + +Changes in BitBake 1.3.0: + - add bitbake interactive shell (bitbake -i) + - refactor bitbake utility in OO style + - kill default arguments in methods in the bb.data module + - kill default arguments in methods in the bb.fetch module + - the http/https/ftp fetcher will fail if the to be + downloaded file was not found in DL_DIR (this is needed + to avoid unpacking the sourceforge mirror page) + - Switch to a cow like data instance for persistent and non + persisting mode (called data_smart.py) + - Changed the callback of bb.make.collect_bbfiles to carry + additional parameters + - Drastically reduced the amount of needed RAM by not holding + each data instance in memory when using a cache/persistent + storage + +Changes in BitBake 1.2.1: + The 1.2.1 release is meant as a intermediate release to lay the + ground for more radical changes. The most notable changes are: + + - Do not hardcode {}, use bb.data.init() instead if you want to + get a instance of a data class + - bb.data.init() is a factory and the old bb.data methods are delegates + - Do not use deepcopy use bb.data.createCopy() instead. + - Removed default arguments in bb.fetch + diff --git a/poky/bitbake/LICENSE b/poky/bitbake/LICENSE new file mode 100644 index 0000000..8458042 --- /dev/null +++ b/poky/bitbake/LICENSE @@ -0,0 +1,29 @@ +BitBake is licensed under the GNU General Public License version 2.0. See +LICENSE.GPL-2.0-only for further details. + +Individual files contain the following style tags instead of the full license text: + + SPDX-License-Identifier: GPL-2.0-only + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ + + +The following external components are distributed with this software: + +* The Toaster Simple UI application is based upon the Django project template, the files of which are covered by the BSD license and are copyright (c) Django Software +Foundation and individual contributors. + +* Twitter Bootstrap (including Glyphicons), redistributed under the MIT license +* jQuery is redistributed under the MIT license. + +* Twitter typeahead.js redistributed under the MIT license. Note that the JS source has one small modification, so the full unminified file is currently included to make it obvious where this is. + +* jsrender is redistributed under the MIT license. + +* QUnit is redistributed under the MIT license. + +* Font Awesome fonts redistributed under the SIL Open Font License 1.1 + +* simplediff is distributed under the zlib license. + diff --git a/poky/bitbake/LICENSE.GPL-2.0-only b/poky/bitbake/LICENSE.GPL-2.0-only new file mode 100644 index 0000000..5db3c0a --- /dev/null +++ b/poky/bitbake/LICENSE.GPL-2.0-only @@ -0,0 +1,288 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + +Note: +Individual files contain the following tag instead of the full license text. + + SPDX-License-Identifier: GPL-2.0-only + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ diff --git a/poky/bitbake/LICENSE.MIT b/poky/bitbake/LICENSE.MIT new file mode 100644 index 0000000..a6919eb --- /dev/null +++ b/poky/bitbake/LICENSE.MIT @@ -0,0 +1,25 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Note: +Individual files contain the following tag instead of the full license text. + + SPDX-License-Identifier: MIT + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ diff --git a/poky/bitbake/README b/poky/bitbake/README new file mode 100644 index 0000000..80a9711 --- /dev/null +++ b/poky/bitbake/README @@ -0,0 +1,43 @@ +Bitbake +======= + +BitBake is a generic task execution engine that allows shell and Python tasks to be run +efficiently and in parallel while working within complex inter-task dependency constraints. +One of BitBake's main users, OpenEmbedded, takes this core and builds embedded Linux software +stacks using a task-oriented approach. + +For information about Bitbake, see the OpenEmbedded website: + https://www.openembedded.org/ + +Bitbake plain documentation can be found under the doc directory or its integrated +html version at the Yocto Project website: + https://docs.yoctoproject.org + +Contributing +------------ + +Please refer to +https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded +for guidelines on how to submit patches, just note that the latter documentation is intended +for OpenEmbedded (and its core) not bitbake patches (bitbake-devel@lists.openembedded.org) +but in general main guidelines apply. Once the commit(s) have been created, the way to send +the patch is through git-send-email. For example, to send the last commit (HEAD) on current +branch, type: + + git send-email -M -1 --to bitbake-devel@lists.openembedded.org + +Mailing list: + + https://lists.openembedded.org/g/bitbake-devel + +Source code: + + https://git.openembedded.org/bitbake/ + +Testing: + +Bitbake has a testsuite located in lib/bb/tests/ whichs aim to try and prevent regressions. +You can run this with "bitbake-selftest". In particular the fetcher is well covered since +it has so many corner cases. The datastore has many tests too. Testing with the testsuite is +recommended before submitting patches, particularly to the fetcher and datastore. We also +appreciate new test cases and may require them for more obscure issues. diff --git a/poky/bitbake/bin/bitbake b/poky/bitbake/bin/bitbake new file mode 100755 index 0000000..0b9cc62 --- /dev/null +++ b/poky/bitbake/bin/bitbake @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer +# Copyright (C) 2005 Holger Hans Peter Freyther +# Copyright (C) 2005 ROAD GmbH +# Copyright (C) 2006 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys +import warnings +warnings.simplefilter("default") + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), + 'lib')) +try: + import bb +except RuntimeError as exc: + sys.exit(str(exc)) + +from bb import cookerdata +from bb.main import bitbake_main, BitBakeConfigParameters, BBMainException + +bb.utils.check_system_locale() + +__version__ = "2.0.0" + +if __name__ == "__main__": + if __version__ != bb.__version__: + sys.exit("Bitbake core version and program version mismatch!") + try: + sys.exit(bitbake_main(BitBakeConfigParameters(sys.argv), + cookerdata.CookerConfiguration())) + except BBMainException as err: + sys.exit(err) + except bb.BBHandledException: + sys.exit(1) + except Exception: + import traceback + traceback.print_exc() + sys.exit(1) diff --git a/poky/bitbake/bin/bitbake-diffsigs b/poky/bitbake/bin/bitbake-diffsigs new file mode 100755 index 0000000..fe0f33e --- /dev/null +++ b/poky/bitbake/bin/bitbake-diffsigs @@ -0,0 +1,204 @@ +#!/usr/bin/env python3 + +# bitbake-diffsigs / bitbake-dumpsig +# BitBake task signature data dump and comparison utility +# +# Copyright (C) 2012-2013, 2017 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys +import warnings + +warnings.simplefilter("default") +import argparse +import logging +import pickle + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib')) + +import bb.tinfoil +import bb.siggen +import bb.msg + +myname = os.path.basename(sys.argv[0]) +logger = bb.msg.logger_create(myname) + +is_dump = myname == 'bitbake-dumpsig' + + +def find_siginfo(tinfoil, pn, taskname, sigs=None): + result = None + tinfoil.set_event_mask(['bb.event.FindSigInfoResult', + 'logging.LogRecord', + 'bb.command.CommandCompleted', + 'bb.command.CommandFailed']) + ret = tinfoil.run_command('findSigInfo', pn, taskname, sigs) + if ret: + while True: + event = tinfoil.wait_event(1) + if event: + if isinstance(event, bb.command.CommandCompleted): + break + elif isinstance(event, bb.command.CommandFailed): + logger.error(str(event)) + sys.exit(2) + elif isinstance(event, bb.event.FindSigInfoResult): + result = event.result + elif isinstance(event, logging.LogRecord): + logger.handle(event) + else: + logger.error('No result returned from findSigInfo command') + sys.exit(2) + return result + + +def find_siginfo_task(bbhandler, pn, taskname, sig1=None, sig2=None): + """ Find the most recent signature files for the specified PN/task """ + + if not taskname.startswith('do_'): + taskname = 'do_%s' % taskname + + if sig1 and sig2: + sigfiles = find_siginfo(bbhandler, pn, taskname, [sig1, sig2]) + if not sigfiles: + logger.error('No sigdata files found matching %s %s matching either %s or %s' % (pn, taskname, sig1, sig2)) + sys.exit(1) + elif sig1 not in sigfiles: + logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig1)) + sys.exit(1) + elif sig2 not in sigfiles: + logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig2)) + sys.exit(1) + latestfiles = [sigfiles[sig1], sigfiles[sig2]] + else: + filedates = find_siginfo(bbhandler, pn, taskname) + latestfiles = sorted(filedates.keys(), key=lambda f: filedates[f])[-2:] + if not latestfiles: + logger.error('No sigdata files found matching %s %s' % (pn, taskname)) + sys.exit(1) + + return latestfiles + + +# Define recursion callback +def recursecb(key, hash1, hash2): + hashes = [hash1, hash2] + hashfiles = find_siginfo(tinfoil, key, None, hashes) + + recout = [] + if not hashfiles: + recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2)) + elif hash1 not in hashfiles: + recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash1)) + elif hash2 not in hashfiles: + recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash2)) + else: + out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color) + for change in out2: + for line in change.splitlines(): + recout.append(' ' + line) + + return recout + + +parser = argparse.ArgumentParser( + description=("Dumps" if is_dump else "Compares") + " siginfo/sigdata files written out by BitBake") + +parser.add_argument('-D', '--debug', + help='Enable debug output', + action='store_true') + +if is_dump: + parser.add_argument("-t", "--task", + help="find the signature data file for the last run of the specified task", + action="store", dest="taskargs", nargs=2, metavar=('recipename', 'taskname')) + + parser.add_argument("sigdatafile1", + help="Signature file to dump. Not used when using -t/--task.", + action="store", nargs='?', metavar="sigdatafile") +else: + parser.add_argument('-c', '--color', + help='Colorize the output (where %(metavar)s is %(choices)s)', + choices=['auto', 'always', 'never'], default='auto', metavar='color') + + parser.add_argument('-d', '--dump', + help='Dump the last signature data instead of comparing (equivalent to using bitbake-dumpsig)', + action='store_true') + + parser.add_argument("-t", "--task", + help="find the signature data files for the last two runs of the specified task and compare them", + action="store", dest="taskargs", nargs=2, metavar=('recipename', 'taskname')) + + parser.add_argument("-s", "--signature", + help="With -t/--task, specify the signatures to look for instead of taking the last two", + action="store", dest="sigargs", nargs=2, metavar=('fromsig', 'tosig')) + + parser.add_argument("sigdatafile1", + help="First signature file to compare (or signature file to dump, if second not specified). Not used when using -t/--task.", + action="store", nargs='?') + + parser.add_argument("sigdatafile2", + help="Second signature file to compare", + action="store", nargs='?') + +options = parser.parse_args() +if is_dump: + options.color = 'never' + options.dump = True + options.sigdatafile2 = None + options.sigargs = None + +if options.debug: + logger.setLevel(logging.DEBUG) + +color = (options.color == 'always' or (options.color == 'auto' and sys.stdout.isatty())) + +if options.taskargs: + with bb.tinfoil.Tinfoil() as tinfoil: + tinfoil.prepare(config_only=True) + if not options.dump and options.sigargs: + files = find_siginfo_task(tinfoil, options.taskargs[0], options.taskargs[1], options.sigargs[0], + options.sigargs[1]) + else: + files = find_siginfo_task(tinfoil, options.taskargs[0], options.taskargs[1]) + + if options.dump: + logger.debug("Signature file: %s" % files[-1]) + output = bb.siggen.dump_sigfile(files[-1]) + else: + if len(files) < 2: + logger.error('Only one matching sigdata file found for the specified task (%s %s)' % ( + options.taskargs[0], options.taskargs[1])) + sys.exit(1) + + # Recurse into signature comparison + logger.debug("Signature file (previous): %s" % files[-2]) + logger.debug("Signature file (latest): %s" % files[-1]) + output = bb.siggen.compare_sigfiles(files[-2], files[-1], recursecb, color=color) +else: + if options.sigargs: + logger.error('-s/--signature can only be used together with -t/--task') + sys.exit(1) + try: + if not options.dump and options.sigdatafile1 and options.sigdatafile2: + with bb.tinfoil.Tinfoil() as tinfoil: + tinfoil.prepare(config_only=True) + output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, recursecb, color=color) + elif options.sigdatafile1: + output = bb.siggen.dump_sigfile(options.sigdatafile1) + else: + logger.error('Must specify signature file(s) or -t/--task') + parser.print_help() + sys.exit(1) + except IOError as e: + logger.error(str(e)) + sys.exit(1) + except (pickle.UnpicklingError, EOFError): + logger.error('Invalid signature data - ensure you are specifying sigdata/siginfo files') + sys.exit(1) + +if output: + print('\n'.join(output)) diff --git a/poky/bitbake/bin/bitbake-dumpsig b/poky/bitbake/bin/bitbake-dumpsig new file mode 120000 index 0000000..b1e8489 --- /dev/null +++ b/poky/bitbake/bin/bitbake-dumpsig @@ -0,0 +1 @@ +bitbake-diffsigs \ No newline at end of file diff --git a/poky/bitbake/bin/bitbake-getvar b/poky/bitbake/bin/bitbake-getvar new file mode 100755 index 0000000..5435a8d --- /dev/null +++ b/poky/bitbake/bin/bitbake-getvar @@ -0,0 +1,50 @@ +#! /usr/bin/env python3 +# +# Copyright (C) 2021 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import argparse +import io +import os +import sys +import warnings +warnings.simplefilter("default") + +bindir = os.path.dirname(__file__) +topdir = os.path.dirname(bindir) +sys.path[0:0] = [os.path.join(topdir, 'lib')] + +import bb.tinfoil + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Bitbake Query Variable") + parser.add_argument("variable", help="variable name to query") + parser.add_argument("-r", "--recipe", help="Recipe name to query", default=None, required=False) + parser.add_argument('-u', '--unexpand', help='Do not expand the value (with --value)', action="store_true") + parser.add_argument('-f', '--flag', help='Specify a variable flag to query (with --value)', default=None) + parser.add_argument('--value', help='Only report the value, no history and no variable name', action="store_true") + args = parser.parse_args() + + if args.unexpand and not args.value: + print("--unexpand only makes sense with --value") + sys.exit(1) + + if args.flag and not args.value: + print("--flag only makes sense with --value") + sys.exit(1) + + with bb.tinfoil.Tinfoil(tracking=True) as tinfoil: + if args.recipe: + tinfoil.prepare(quiet=2) + d = tinfoil.parse_recipe(args.recipe) + else: + tinfoil.prepare(quiet=2, config_only=True) + d = tinfoil.config_data + if args.flag: + print(str(d.getVarFlag(args.variable, args.flag, expand=(not args.unexpand)))) + elif args.value: + print(str(d.getVar(args.variable, expand=(not args.unexpand)))) + else: + bb.data.emit_var(args.variable, d=d, all=True) diff --git a/poky/bitbake/bin/bitbake-hashclient b/poky/bitbake/bin/bitbake-hashclient new file mode 100755 index 0000000..494f175 --- /dev/null +++ b/poky/bitbake/bin/bitbake-hashclient @@ -0,0 +1,169 @@ +#! /usr/bin/env python3 +# +# Copyright (C) 2019 Garmin Ltd. +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import argparse +import hashlib +import logging +import os +import pprint +import sys +import threading +import time +import warnings +warnings.simplefilter("default") + +try: + import tqdm + ProgressBar = tqdm.tqdm +except ImportError: + class ProgressBar(object): + def __init__(self, *args, **kwargs): + pass + + def __enter__(self): + return self + + def __exit__(self, *args, **kwargs): + pass + + def update(self): + pass + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib')) + +import hashserv + +DEFAULT_ADDRESS = 'unix://./hashserve.sock' +METHOD = 'stress.test.method' + + +def main(): + def handle_stats(args, client): + if args.reset: + s = client.reset_stats() + else: + s = client.get_stats() + pprint.pprint(s) + return 0 + + def handle_stress(args, client): + def thread_main(pbar, lock): + nonlocal found_hashes + nonlocal missed_hashes + nonlocal max_time + + client = hashserv.create_client(args.address) + + for i in range(args.requests): + taskhash = hashlib.sha256() + taskhash.update(args.taskhash_seed.encode('utf-8')) + taskhash.update(str(i).encode('utf-8')) + + start_time = time.perf_counter() + l = client.get_unihash(METHOD, taskhash.hexdigest()) + elapsed = time.perf_counter() - start_time + + with lock: + if l: + found_hashes += 1 + else: + missed_hashes += 1 + + max_time = max(elapsed, max_time) + pbar.update() + + max_time = 0 + found_hashes = 0 + missed_hashes = 0 + lock = threading.Lock() + total_requests = args.clients * args.requests + start_time = time.perf_counter() + with ProgressBar(total=total_requests) as pbar: + threads = [threading.Thread(target=thread_main, args=(pbar, lock), daemon=False) for _ in range(args.clients)] + for t in threads: + t.start() + + for t in threads: + t.join() + + elapsed = time.perf_counter() - start_time + with lock: + print("%d requests in %.1fs. %.1f requests per second" % (total_requests, elapsed, total_requests / elapsed)) + print("Average request time %.8fs" % (elapsed / total_requests)) + print("Max request time was %.8fs" % max_time) + print("Found %d hashes, missed %d" % (found_hashes, missed_hashes)) + + if args.report: + with ProgressBar(total=args.requests) as pbar: + for i in range(args.requests): + taskhash = hashlib.sha256() + taskhash.update(args.taskhash_seed.encode('utf-8')) + taskhash.update(str(i).encode('utf-8')) + + outhash = hashlib.sha256() + outhash.update(args.outhash_seed.encode('utf-8')) + outhash.update(str(i).encode('utf-8')) + + client.report_unihash(taskhash.hexdigest(), METHOD, outhash.hexdigest(), taskhash.hexdigest()) + + with lock: + pbar.update() + + parser = argparse.ArgumentParser(description='Hash Equivalence Client') + parser.add_argument('--address', default=DEFAULT_ADDRESS, help='Server address (default "%(default)s")') + parser.add_argument('--log', default='WARNING', help='Set logging level') + + subparsers = parser.add_subparsers() + + stats_parser = subparsers.add_parser('stats', help='Show server stats') + stats_parser.add_argument('--reset', action='store_true', + help='Reset server stats') + stats_parser.set_defaults(func=handle_stats) + + stress_parser = subparsers.add_parser('stress', help='Run stress test') + stress_parser.add_argument('--clients', type=int, default=10, + help='Number of simultaneous clients') + stress_parser.add_argument('--requests', type=int, default=1000, + help='Number of requests each client will perform') + stress_parser.add_argument('--report', action='store_true', + help='Report new hashes') + stress_parser.add_argument('--taskhash-seed', default='', + help='Include string in taskhash') + stress_parser.add_argument('--outhash-seed', default='', + help='Include string in outhash') + stress_parser.set_defaults(func=handle_stress) + + args = parser.parse_args() + + logger = logging.getLogger('hashserv') + + level = getattr(logging, args.log.upper(), None) + if not isinstance(level, int): + raise ValueError('Invalid log level: %s' % args.log) + + logger.setLevel(level) + console = logging.StreamHandler() + console.setLevel(level) + logger.addHandler(console) + + func = getattr(args, 'func', None) + if func: + client = hashserv.create_client(args.address) + + return func(args, client) + + return 0 + + +if __name__ == '__main__': + try: + ret = main() + except Exception: + ret = 1 + import traceback + traceback.print_exc() + sys.exit(ret) diff --git a/poky/bitbake/bin/bitbake-hashserv b/poky/bitbake/bin/bitbake-hashserv new file mode 100755 index 0000000..00af76b --- /dev/null +++ b/poky/bitbake/bin/bitbake-hashserv @@ -0,0 +1,66 @@ +#! /usr/bin/env python3 +# +# Copyright (C) 2018 Garmin Ltd. +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys +import logging +import argparse +import sqlite3 +import warnings +warnings.simplefilter("default") + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib')) + +import hashserv + +VERSION = "1.0.0" + +DEFAULT_BIND = 'unix://./hashserve.sock' + + +def main(): + parser = argparse.ArgumentParser(description='Hash Equivalence Reference Server. Version=%s' % VERSION, + epilog='''The bind address is the path to a unix domain socket if it is + prefixed with "unix://". Otherwise, it is an IP address + and port in form ADDRESS:PORT. To bind to all addresses, leave + the ADDRESS empty, e.g. "--bind :8686". To bind to a specific + IPv6 address, enclose the address in "[]", e.g. + "--bind [::1]:8686"''' + ) + + parser.add_argument('-b', '--bind', default=DEFAULT_BIND, help='Bind address (default "%(default)s")') + parser.add_argument('-d', '--database', default='./hashserv.db', help='Database file (default "%(default)s")') + parser.add_argument('-l', '--log', default='WARNING', help='Set logging level') + parser.add_argument('-u', '--upstream', help='Upstream hashserv to pull hashes from') + parser.add_argument('-r', '--read-only', action='store_true', help='Disallow write operations from clients') + + args = parser.parse_args() + + logger = logging.getLogger('hashserv') + + level = getattr(logging, args.log.upper(), None) + if not isinstance(level, int): + raise ValueError('Invalid log level: %s' % args.log) + + logger.setLevel(level) + console = logging.StreamHandler() + console.setLevel(level) + logger.addHandler(console) + + server = hashserv.create_server(args.bind, args.database, upstream=args.upstream, read_only=args.read_only) + server.serve_forever() + return 0 + + +if __name__ == '__main__': + try: + ret = main() + except Exception: + ret = 1 + import traceback + traceback.print_exc() + sys.exit(ret) diff --git a/poky/bitbake/bin/bitbake-layers b/poky/bitbake/bin/bitbake-layers new file mode 100755 index 0000000..d4b1d1a --- /dev/null +++ b/poky/bitbake/bin/bitbake-layers @@ -0,0 +1,102 @@ +#!/usr/bin/env python3 + +# This script has subcommands which operate against your bitbake layers, either +# displaying useful information, or acting against them. +# See the help output for details on available commands. + +# Copyright (C) 2011 Mentor Graphics Corporation +# Copyright (C) 2011-2015 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import logging +import os +import sys +import argparse +import warnings +warnings.simplefilter("default") + +bindir = os.path.dirname(__file__) +topdir = os.path.dirname(bindir) +sys.path[0:0] = [os.path.join(topdir, 'lib')] + +import bb.tinfoil +import bb.msg + +logger = bb.msg.logger_create('bitbake-layers', sys.stdout) + +def main(): + parser = argparse.ArgumentParser( + description="BitBake layers utility", + epilog="Use %(prog)s --help to get help on a specific command", + add_help=False) + parser.add_argument('-d', '--debug', help='Enable debug output', action='store_true') + parser.add_argument('-q', '--quiet', help='Print only errors', action='store_true') + parser.add_argument('-F', '--force', help='Force add without recipe parse verification', action='store_true') + parser.add_argument('--color', choices=['auto', 'always', 'never'], default='auto', help='Colorize output (where %(metavar)s is %(choices)s)', metavar='COLOR') + + global_args, unparsed_args = parser.parse_known_args() + + # Help is added here rather than via add_help=True, as we don't want it to + # be handled by parse_known_args() + parser.add_argument('-h', '--help', action='help', default=argparse.SUPPRESS, + help='show this help message and exit') + subparsers = parser.add_subparsers(title='subcommands', metavar='') + subparsers.required = True + + if global_args.debug: + logger.setLevel(logging.DEBUG) + elif global_args.quiet: + logger.setLevel(logging.ERROR) + + # Need to re-run logger_create with color argument + # (will be the same logger since it has the same name) + bb.msg.logger_create('bitbake-layers', output=sys.stdout, + color=global_args.color, + level=logger.getEffectiveLevel()) + + plugins = [] + tinfoil = bb.tinfoil.Tinfoil(tracking=True) + tinfoil.logger.setLevel(logger.getEffectiveLevel()) + try: + tinfoil.prepare(True) + for path in ([topdir] + + tinfoil.config_data.getVar('BBPATH').split(':')): + pluginpath = os.path.join(path, 'lib', 'bblayers') + bb.utils.load_plugins(logger, plugins, pluginpath) + + registered = False + for plugin in plugins: + if hasattr(plugin, 'tinfoil_init'): + plugin.tinfoil_init(tinfoil) + if hasattr(plugin, 'register_commands'): + registered = True + plugin.register_commands(subparsers) + + if not registered: + logger.error("No commands registered - missing plugins?") + sys.exit(1) + + args = parser.parse_args(unparsed_args, namespace=global_args) + + if getattr(args, 'parserecipes', False): + tinfoil.config_data.disableTracking() + tinfoil.parse_recipes() + tinfoil.config_data.enableTracking() + + return args.func(args) + finally: + tinfoil.shutdown() + + +if __name__ == "__main__": + try: + ret = main() + except bb.BBHandledException: + ret = 1 + except Exception: + ret = 1 + import traceback + traceback.print_exc() + sys.exit(ret) diff --git a/poky/bitbake/bin/bitbake-prserv b/poky/bitbake/bin/bitbake-prserv new file mode 100755 index 0000000..5be42f3 --- /dev/null +++ b/poky/bitbake/bin/bitbake-prserv @@ -0,0 +1,65 @@ +#!/usr/bin/env python3 +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys,logging +import optparse +import warnings +warnings.simplefilter("default") + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)),'lib')) + +import prserv +import prserv.serv + +__version__="1.0.0" + +PRHOST_DEFAULT='0.0.0.0' +PRPORT_DEFAULT=8585 + +def main(): + parser = optparse.OptionParser( + version="Bitbake PR Service Core version %s, %%prog version %s" % (prserv.__version__, __version__), + usage = "%prog < --start | --stop > [options]") + + parser.add_option("-f", "--file", help="database filename(default: prserv.sqlite3)", action="store", + dest="dbfile", type="string", default="prserv.sqlite3") + parser.add_option("-l", "--log", help="log filename(default: prserv.log)", action="store", + dest="logfile", type="string", default="prserv.log") + parser.add_option("--loglevel", help="logging level, i.e. CRITICAL, ERROR, WARNING, INFO, DEBUG", + action = "store", type="string", dest="loglevel", default = "INFO") + parser.add_option("--start", help="start daemon", + action="store_true", dest="start") + parser.add_option("--stop", help="stop daemon", + action="store_true", dest="stop") + parser.add_option("--host", help="ip address to bind", action="store", + dest="host", type="string", default=PRHOST_DEFAULT) + parser.add_option("--port", help="port number(default: 8585)", action="store", + dest="port", type="int", default=PRPORT_DEFAULT) + parser.add_option("-r", "--read-only", help="open database in read-only mode", + action="store_true") + + options, args = parser.parse_args(sys.argv) + prserv.init_logger(os.path.abspath(options.logfile),options.loglevel) + + if options.start: + ret=prserv.serv.start_daemon(options.dbfile, options.host, options.port,os.path.abspath(options.logfile), options.read_only) + elif options.stop: + ret=prserv.serv.stop_daemon(options.host, options.port) + else: + ret=parser.print_help() + return ret + +if __name__ == "__main__": + try: + ret = main() + except Exception: + ret = 1 + import traceback + traceback.print_exc() + sys.exit(ret) + diff --git a/poky/bitbake/bin/bitbake-selftest b/poky/bitbake/bin/bitbake-selftest new file mode 100755 index 0000000..f25f23b --- /dev/null +++ b/poky/bitbake/bin/bitbake-selftest @@ -0,0 +1,77 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys, logging +import warnings +warnings.simplefilter("default") +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib')) + +import unittest +try: + import bb + import hashserv + import layerindexlib +except RuntimeError as exc: + sys.exit(str(exc)) + +tests = ["bb.tests.codeparser", + "bb.tests.color", + "bb.tests.cooker", + "bb.tests.cow", + "bb.tests.data", + "bb.tests.event", + "bb.tests.fetch", + "bb.tests.parse", + "bb.tests.persist_data", + "bb.tests.runqueue", + "bb.tests.siggen", + "bb.tests.utils", + "bb.tests.compression", + "hashserv.tests", + "layerindexlib.tests.layerindexobj", + "layerindexlib.tests.restapi", + "layerindexlib.tests.cooker"] + +for t in tests: + t = '.'.join(t.split('.')[:3]) + __import__(t) + + +# Set-up logging +class StdoutStreamHandler(logging.StreamHandler): + """Special handler so that unittest is able to capture stdout""" + def __init__(self): + # Override __init__() because we don't want to set self.stream here + logging.Handler.__init__(self) + + @property + def stream(self): + # We want to dynamically write wherever sys.stdout is pointing to + return sys.stdout + + +handler = StdoutStreamHandler() +bb.logger.addHandler(handler) +bb.logger.setLevel(logging.DEBUG) + + +ENV_HELP = """\ +Environment variables: + BB_SKIP_NETTESTS set to 'yes' in order to skip tests using network + connection + BB_TMPDIR_NOCLEAN set to 'yes' to preserve test tmp directories +""" + +class main(unittest.main): + def _print_help(self, *args, **kwargs): + super(main, self)._print_help(*args, **kwargs) + print(ENV_HELP) + + +if __name__ == '__main__': + main(defaultTest=tests, buffer=True) diff --git a/poky/bitbake/bin/bitbake-server b/poky/bitbake/bin/bitbake-server new file mode 100755 index 0000000..d00bb06 --- /dev/null +++ b/poky/bitbake/bin/bitbake-server @@ -0,0 +1,54 @@ +#!/usr/bin/env python3 +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Copyright (C) 2020 Richard Purdie +# + +import os +import sys +import warnings +warnings.simplefilter("default") +import logging +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib')) + +import bb + +bb.utils.check_system_locale() + +# Users shouldn't be running this code directly +if len(sys.argv) != 10 or not sys.argv[1].startswith("decafbad"): + print("bitbake-server is meant for internal execution by bitbake itself, please don't use it standalone.") + sys.exit(1) + +import bb.server.process + +lockfd = int(sys.argv[2]) +readypipeinfd = int(sys.argv[3]) +logfile = sys.argv[4] +lockname = sys.argv[5] +sockname = sys.argv[6] +timeout = float(sys.argv[7]) +xmlrpcinterface = (sys.argv[8], int(sys.argv[9])) +if xmlrpcinterface[0] == "None": + xmlrpcinterface = (None, xmlrpcinterface[1]) + +# Replace standard fds with our own +with open('/dev/null', 'r') as si: + os.dup2(si.fileno(), sys.stdin.fileno()) + +so = open(logfile, 'a+') +os.dup2(so.fileno(), sys.stdout.fileno()) +os.dup2(so.fileno(), sys.stderr.fileno()) + +# Have stdout and stderr be the same so log output matches chronologically +# and there aren't two seperate buffers +sys.stderr = sys.stdout + +logger = logging.getLogger("BitBake") +# Ensure logging messages get sent to the UI as events +handler = bb.event.LogHandler() +logger.addHandler(handler) + +bb.server.process.execServer(lockfd, readypipeinfd, lockname, sockname, timeout, xmlrpcinterface) + diff --git a/poky/bitbake/bin/bitbake-worker b/poky/bitbake/bin/bitbake-worker new file mode 100755 index 0000000..5e62bc2 --- /dev/null +++ b/poky/bitbake/bin/bitbake-worker @@ -0,0 +1,551 @@ +#!/usr/bin/env python3 +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys +import warnings +warnings.simplefilter("default") +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib')) +from bb import fetch2 +import logging +import bb +import select +import errno +import signal +import pickle +import traceback +import queue +import shlex +import subprocess +from multiprocessing import Lock +from threading import Thread + +bb.utils.check_system_locale() + +# Users shouldn't be running this code directly +if len(sys.argv) != 2 or not sys.argv[1].startswith("decafbad"): + print("bitbake-worker is meant for internal execution by bitbake itself, please don't use it standalone.") + sys.exit(1) + +profiling = False +if sys.argv[1].startswith("decafbadbad"): + profiling = True + try: + import cProfile as profile + except: + import profile + +# Unbuffer stdout to avoid log truncation in the event +# of an unorderly exit as well as to provide timely +# updates to log files for use with tail +try: + if sys.stdout.name == '': + import fcntl + fl = fcntl.fcntl(sys.stdout.fileno(), fcntl.F_GETFL) + fl |= os.O_SYNC + fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl) + #sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0) +except: + pass + +logger = logging.getLogger("BitBake") + +worker_pipe = sys.stdout.fileno() +bb.utils.nonblockingfd(worker_pipe) +# Need to guard against multiprocessing being used in child processes +# and multiple processes trying to write to the parent at the same time +worker_pipe_lock = None + +handler = bb.event.LogHandler() +logger.addHandler(handler) + +if 0: + # Code to write out a log file of all events passing through the worker + logfilename = "/tmp/workerlogfile" + format_str = "%(levelname)s: %(message)s" + conlogformat = bb.msg.BBLogFormatter(format_str) + consolelog = logging.FileHandler(logfilename) + consolelog.setFormatter(conlogformat) + logger.addHandler(consolelog) + +worker_queue = queue.Queue() + +def worker_fire(event, d): + data = b"" + pickle.dumps(event) + b"" + worker_fire_prepickled(data) + +def worker_fire_prepickled(event): + global worker_queue + + worker_queue.put(event) + +# +# We can end up with write contention with the cooker, it can be trying to send commands +# and we can be trying to send event data back. Therefore use a separate thread for writing +# back data to cooker. +# +worker_thread_exit = False + +def worker_flush(worker_queue): + worker_queue_int = b"" + global worker_pipe, worker_thread_exit + + while True: + try: + worker_queue_int = worker_queue_int + worker_queue.get(True, 1) + except queue.Empty: + pass + while (worker_queue_int or not worker_queue.empty()): + try: + (_, ready, _) = select.select([], [worker_pipe], [], 1) + if not worker_queue.empty(): + worker_queue_int = worker_queue_int + worker_queue.get() + written = os.write(worker_pipe, worker_queue_int) + worker_queue_int = worker_queue_int[written:] + except (IOError, OSError) as e: + if e.errno != errno.EAGAIN and e.errno != errno.EPIPE: + raise + if worker_thread_exit and worker_queue.empty() and not worker_queue_int: + return + +worker_thread = Thread(target=worker_flush, args=(worker_queue,)) +worker_thread.start() + +def worker_child_fire(event, d): + global worker_pipe + global worker_pipe_lock + + data = b"" + pickle.dumps(event) + b"" + try: + worker_pipe_lock.acquire() + while(len(data)): + written = worker_pipe.write(data) + data = data[written:] + worker_pipe_lock.release() + except IOError: + sigterm_handler(None, None) + raise + +bb.event.worker_fire = worker_fire + +lf = None +#lf = open("/tmp/workercommandlog", "w+") +def workerlog_write(msg): + if lf: + lf.write(msg) + lf.flush() + +def sigterm_handler(signum, frame): + signal.signal(signal.SIGTERM, signal.SIG_DFL) + os.killpg(0, signal.SIGTERM) + sys.exit() + +def fork_off_task(cfg, data, databuilder, workerdata, fn, task, taskname, taskhash, unihash, appends, taskdepdata, extraconfigdata, quieterrors=False, dry_run_exec=False): + # We need to setup the environment BEFORE the fork, since + # a fork() or exec*() activates PSEUDO... + + envbackup = {} + fakeroot = False + fakeenv = {} + umask = None + + uid = os.getuid() + gid = os.getgid() + + + taskdep = workerdata["taskdeps"][fn] + if 'umask' in taskdep and taskname in taskdep['umask']: + umask = taskdep['umask'][taskname] + elif workerdata["umask"]: + umask = workerdata["umask"] + if umask: + # umask might come in as a number or text string.. + try: + umask = int(umask, 8) + except TypeError: + pass + + dry_run = cfg.dry_run or dry_run_exec + + # We can't use the fakeroot environment in a dry run as it possibly hasn't been built + if 'fakeroot' in taskdep and taskname in taskdep['fakeroot'] and not dry_run: + fakeroot = True + envvars = (workerdata["fakerootenv"][fn] or "").split() + for key, value in (var.split('=') for var in envvars): + envbackup[key] = os.environ.get(key) + os.environ[key] = value + fakeenv[key] = value + + fakedirs = (workerdata["fakerootdirs"][fn] or "").split() + for p in fakedirs: + bb.utils.mkdirhier(p) + logger.debug2('Running %s:%s under fakeroot, fakedirs: %s' % + (fn, taskname, ', '.join(fakedirs))) + else: + envvars = (workerdata["fakerootnoenv"][fn] or "").split() + for key, value in (var.split('=') for var in envvars): + envbackup[key] = os.environ.get(key) + os.environ[key] = value + fakeenv[key] = value + + sys.stdout.flush() + sys.stderr.flush() + + try: + pipein, pipeout = os.pipe() + pipein = os.fdopen(pipein, 'rb', 4096) + pipeout = os.fdopen(pipeout, 'wb', 0) + pid = os.fork() + except OSError as e: + logger.critical("fork failed: %d (%s)" % (e.errno, e.strerror)) + sys.exit(1) + + if pid == 0: + def child(): + global worker_pipe + global worker_pipe_lock + pipein.close() + + bb.utils.signal_on_parent_exit("SIGTERM") + + # Save out the PID so that the event can include it the + # events + bb.event.worker_pid = os.getpid() + bb.event.worker_fire = worker_child_fire + worker_pipe = pipeout + worker_pipe_lock = Lock() + + # Make the child the process group leader and ensure no + # child process will be controlled by the current terminal + # This ensures signals sent to the controlling terminal like Ctrl+C + # don't stop the child processes. + os.setsid() + + signal.signal(signal.SIGTERM, sigterm_handler) + # Let SIGHUP exit as SIGTERM + signal.signal(signal.SIGHUP, sigterm_handler) + + # No stdin + newsi = os.open(os.devnull, os.O_RDWR) + os.dup2(newsi, sys.stdin.fileno()) + + if umask: + os.umask(umask) + + try: + bb_cache = bb.cache.NoCache(databuilder) + (realfn, virtual, mc) = bb.cache.virtualfn2realfn(fn) + the_data = databuilder.mcdata[mc] + the_data.setVar("BB_WORKERCONTEXT", "1") + the_data.setVar("BB_TASKDEPDATA", taskdepdata) + the_data.setVar('BB_CURRENTTASK', taskname.replace("do_", "")) + if cfg.limited_deps: + the_data.setVar("BB_LIMITEDDEPS", "1") + the_data.setVar("BUILDNAME", workerdata["buildname"]) + the_data.setVar("DATE", workerdata["date"]) + the_data.setVar("TIME", workerdata["time"]) + for varname, value in extraconfigdata.items(): + the_data.setVar(varname, value) + + bb.parse.siggen.set_taskdata(workerdata["sigdata"]) + if "newhashes" in workerdata: + bb.parse.siggen.set_taskhashes(workerdata["newhashes"]) + ret = 0 + + the_data = bb_cache.loadDataFull(fn, appends) + the_data.setVar('BB_TASKHASH', taskhash) + the_data.setVar('BB_UNIHASH', unihash) + + bb.utils.set_process_name("%s:%s" % (the_data.getVar("PN"), taskname.replace("do_", ""))) + + if not the_data.getVarFlag(taskname, 'network', False): + if bb.utils.is_local_uid(uid): + logger.debug("Attempting to disable network for %s" % taskname) + bb.utils.disable_network(uid, gid) + else: + logger.debug("Skipping disable network for %s since %s is not a local uid." % (taskname, uid)) + + # exported_vars() returns a generator which *cannot* be passed to os.environ.update() + # successfully. We also need to unset anything from the environment which shouldn't be there + exports = bb.data.exported_vars(the_data) + + bb.utils.empty_environment() + for e, v in exports: + os.environ[e] = v + + for e in fakeenv: + os.environ[e] = fakeenv[e] + the_data.setVar(e, fakeenv[e]) + the_data.setVarFlag(e, 'export', "1") + + task_exports = the_data.getVarFlag(taskname, 'exports') + if task_exports: + for e in task_exports.split(): + the_data.setVarFlag(e, 'export', '1') + v = the_data.getVar(e) + if v is not None: + os.environ[e] = v + + if quieterrors: + the_data.setVarFlag(taskname, "quieterrors", "1") + + except Exception: + if not quieterrors: + logger.critical(traceback.format_exc()) + os._exit(1) + try: + if dry_run: + return 0 + try: + ret = bb.build.exec_task(fn, taskname, the_data, cfg.profile) + finally: + if fakeroot: + fakerootcmd = shlex.split(the_data.getVar("FAKEROOTCMD")) + subprocess.run(fakerootcmd + ['-S'], check=True, stdout=subprocess.PIPE) + return ret + except: + os._exit(1) + if not profiling: + os._exit(child()) + else: + profname = "profile-%s.log" % (fn.replace("/", "-") + "-" + taskname) + prof = profile.Profile() + try: + ret = profile.Profile.runcall(prof, child) + finally: + prof.dump_stats(profname) + bb.utils.process_profilelog(profname) + os._exit(ret) + else: + for key, value in iter(envbackup.items()): + if value is None: + del os.environ[key] + else: + os.environ[key] = value + + return pid, pipein, pipeout + +class runQueueWorkerPipe(): + """ + Abstraction for a pipe between a worker thread and the worker server + """ + def __init__(self, pipein, pipeout): + self.input = pipein + if pipeout: + pipeout.close() + bb.utils.nonblockingfd(self.input) + self.queue = b"" + + def read(self): + start = len(self.queue) + try: + self.queue = self.queue + (self.input.read(102400) or b"") + except (OSError, IOError) as e: + if e.errno != errno.EAGAIN: + raise + + end = len(self.queue) + index = self.queue.find(b"") + while index != -1: + msg = self.queue[:index+8] + assert msg.startswith(b"") and msg.count(b"") == 1 + worker_fire_prepickled(msg) + self.queue = self.queue[index+8:] + index = self.queue.find(b"") + return (end > start) + + def close(self): + while self.read(): + continue + if len(self.queue) > 0: + print("Warning, worker child left partial message: %s" % self.queue) + self.input.close() + +normalexit = False + +class BitbakeWorker(object): + def __init__(self, din): + self.input = din + bb.utils.nonblockingfd(self.input) + self.queue = b"" + self.cookercfg = None + self.databuilder = None + self.data = None + self.extraconfigdata = None + self.build_pids = {} + self.build_pipes = {} + + signal.signal(signal.SIGTERM, self.sigterm_exception) + # Let SIGHUP exit as SIGTERM + signal.signal(signal.SIGHUP, self.sigterm_exception) + if "beef" in sys.argv[1]: + bb.utils.set_process_name("Worker (Fakeroot)") + else: + bb.utils.set_process_name("Worker") + + def sigterm_exception(self, signum, stackframe): + if signum == signal.SIGTERM: + bb.warn("Worker received SIGTERM, shutting down...") + elif signum == signal.SIGHUP: + bb.warn("Worker received SIGHUP, shutting down...") + self.handle_finishnow(None) + signal.signal(signal.SIGTERM, signal.SIG_DFL) + os.kill(os.getpid(), signal.SIGTERM) + + def serve(self): + while True: + (ready, _, _) = select.select([self.input] + [i.input for i in self.build_pipes.values()], [] , [], 1) + if self.input in ready: + try: + r = self.input.read() + if len(r) == 0: + # EOF on pipe, server must have terminated + self.sigterm_exception(signal.SIGTERM, None) + self.queue = self.queue + r + except (OSError, IOError): + pass + if len(self.queue): + self.handle_item(b"cookerconfig", self.handle_cookercfg) + self.handle_item(b"extraconfigdata", self.handle_extraconfigdata) + self.handle_item(b"workerdata", self.handle_workerdata) + self.handle_item(b"newtaskhashes", self.handle_newtaskhashes) + self.handle_item(b"runtask", self.handle_runtask) + self.handle_item(b"finishnow", self.handle_finishnow) + self.handle_item(b"ping", self.handle_ping) + self.handle_item(b"quit", self.handle_quit) + + for pipe in self.build_pipes: + if self.build_pipes[pipe].input in ready: + self.build_pipes[pipe].read() + if len(self.build_pids): + while self.process_waitpid(): + continue + + + def handle_item(self, item, func): + if self.queue.startswith(b"<" + item + b">"): + index = self.queue.find(b"") + while index != -1: + try: + func(self.queue[(len(item) + 2):index]) + except pickle.UnpicklingError: + workerlog_write("Unable to unpickle data: %s\n" % ":".join("{:02x}".format(c) for c in self.queue)) + raise + self.queue = self.queue[(index + len(item) + 3):] + index = self.queue.find(b"") + + def handle_cookercfg(self, data): + self.cookercfg = pickle.loads(data) + self.databuilder = bb.cookerdata.CookerDataBuilder(self.cookercfg, worker=True) + self.databuilder.parseBaseConfiguration(worker=True) + self.data = self.databuilder.data + + def handle_extraconfigdata(self, data): + self.extraconfigdata = pickle.loads(data) + + def handle_workerdata(self, data): + self.workerdata = pickle.loads(data) + bb.build.verboseShellLogging = self.workerdata["build_verbose_shell"] + bb.build.verboseStdoutLogging = self.workerdata["build_verbose_stdout"] + bb.msg.loggerDefaultLogLevel = self.workerdata["logdefaultlevel"] + bb.msg.loggerDefaultDomains = self.workerdata["logdefaultdomain"] + for mc in self.databuilder.mcdata: + self.databuilder.mcdata[mc].setVar("PRSERV_HOST", self.workerdata["prhost"]) + self.databuilder.mcdata[mc].setVar("BB_HASHSERVE", self.workerdata["hashservaddr"]) + + def handle_newtaskhashes(self, data): + self.workerdata["newhashes"] = pickle.loads(data) + + def handle_ping(self, _): + workerlog_write("Handling ping\n") + + logger.warning("Pong from bitbake-worker!") + + def handle_quit(self, data): + workerlog_write("Handling quit\n") + + global normalexit + normalexit = True + sys.exit(0) + + def handle_runtask(self, data): + fn, task, taskname, taskhash, unihash, quieterrors, appends, taskdepdata, dry_run_exec = pickle.loads(data) + workerlog_write("Handling runtask %s %s %s\n" % (task, fn, taskname)) + + pid, pipein, pipeout = fork_off_task(self.cookercfg, self.data, self.databuilder, self.workerdata, fn, task, taskname, taskhash, unihash, appends, taskdepdata, self.extraconfigdata, quieterrors, dry_run_exec) + + self.build_pids[pid] = task + self.build_pipes[pid] = runQueueWorkerPipe(pipein, pipeout) + + def process_waitpid(self): + """ + Return none is there are no processes awaiting result collection, otherwise + collect the process exit codes and close the information pipe. + """ + try: + pid, status = os.waitpid(-1, os.WNOHANG) + if pid == 0 or os.WIFSTOPPED(status): + return False + except OSError: + return False + + workerlog_write("Exit code of %s for pid %s\n" % (status, pid)) + + if os.WIFEXITED(status): + status = os.WEXITSTATUS(status) + elif os.WIFSIGNALED(status): + # Per shell conventions for $?, when a process exits due to + # a signal, we return an exit code of 128 + SIGNUM + status = 128 + os.WTERMSIG(status) + + task = self.build_pids[pid] + del self.build_pids[pid] + + self.build_pipes[pid].close() + del self.build_pipes[pid] + + worker_fire_prepickled(b"" + pickle.dumps((task, status)) + b"") + + return True + + def handle_finishnow(self, _): + if self.build_pids: + logger.info("Sending SIGTERM to remaining %s tasks", len(self.build_pids)) + for k, v in iter(self.build_pids.items()): + try: + os.kill(-k, signal.SIGTERM) + os.waitpid(-1, 0) + except: + pass + for pipe in self.build_pipes: + self.build_pipes[pipe].read() + +try: + worker = BitbakeWorker(os.fdopen(sys.stdin.fileno(), 'rb')) + if not profiling: + worker.serve() + else: + profname = "profile-worker.log" + prof = profile.Profile() + try: + profile.Profile.runcall(prof, worker.serve) + finally: + prof.dump_stats(profname) + bb.utils.process_profilelog(profname) +except BaseException as e: + if not normalexit: + import traceback + sys.stderr.write(traceback.format_exc()) + sys.stderr.write(str(e)) +finally: + worker_thread_exit = True + worker_thread.join() + +workerlog_write("exiting") +if not normalexit: + sys.exit(1) +sys.exit(0) diff --git a/poky/bitbake/bin/git-make-shallow b/poky/bitbake/bin/git-make-shallow new file mode 100755 index 0000000..d0532c5 --- /dev/null +++ b/poky/bitbake/bin/git-make-shallow @@ -0,0 +1,173 @@ +#!/usr/bin/env python3 +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +"""git-make-shallow: make the current git repository shallow + +Remove the history of the specified revisions, then optionally filter the +available refs to those specified. +""" + +import argparse +import collections +import errno +import itertools +import os +import subprocess +import sys +import warnings +warnings.simplefilter("default") + +version = 1.0 + + +def main(): + if sys.version_info < (3, 4, 0): + sys.exit('Python 3.4 or greater is required') + + git_dir = check_output(['git', 'rev-parse', '--git-dir']).rstrip() + shallow_file = os.path.join(git_dir, 'shallow') + if os.path.exists(shallow_file): + try: + check_output(['git', 'fetch', '--unshallow']) + except subprocess.CalledProcessError: + try: + os.unlink(shallow_file) + except OSError as exc: + if exc.errno != errno.ENOENT: + raise + + args = process_args() + revs = check_output(['git', 'rev-list'] + args.revisions).splitlines() + + make_shallow(shallow_file, args.revisions, args.refs) + + ref_revs = check_output(['git', 'rev-list'] + args.refs).splitlines() + remaining_history = set(revs) & set(ref_revs) + for rev in remaining_history: + if check_output(['git', 'rev-parse', '{}^@'.format(rev)]): + sys.exit('Error: %s was not made shallow' % rev) + + filter_refs(args.refs) + + if args.shrink: + shrink_repo(git_dir) + subprocess.check_call(['git', 'fsck', '--unreachable']) + + +def process_args(): + # TODO: add argument to automatically keep local-only refs, since they + # can't be easily restored with a git fetch. + parser = argparse.ArgumentParser(description='Remove the history of the specified revisions, then optionally filter the available refs to those specified.') + parser.add_argument('--ref', '-r', metavar='REF', action='append', dest='refs', help='remove all but the specified refs (cumulative)') + parser.add_argument('--shrink', '-s', action='store_true', help='shrink the git repository by repacking and pruning') + parser.add_argument('revisions', metavar='REVISION', nargs='+', help='a git revision/commit') + if len(sys.argv) < 2: + parser.print_help() + sys.exit(2) + + args = parser.parse_args() + + if args.refs: + args.refs = check_output(['git', 'rev-parse', '--symbolic-full-name'] + args.refs).splitlines() + else: + args.refs = get_all_refs(lambda r, t, tt: t == 'commit' or tt == 'commit') + + args.refs = list(filter(lambda r: not r.endswith('/HEAD'), args.refs)) + args.revisions = check_output(['git', 'rev-parse'] + ['%s^{}' % i for i in args.revisions]).splitlines() + return args + + +def check_output(cmd, input=None): + return subprocess.check_output(cmd, universal_newlines=True, input=input) + + +def make_shallow(shallow_file, revisions, refs): + """Remove the history of the specified revisions.""" + for rev in follow_history_intersections(revisions, refs): + print("Processing %s" % rev) + with open(shallow_file, 'a') as f: + f.write(rev + '\n') + + +def get_all_refs(ref_filter=None): + """Return all the existing refs in this repository, optionally filtering the refs.""" + ref_output = check_output(['git', 'for-each-ref', '--format=%(refname)\t%(objecttype)\t%(*objecttype)']) + ref_split = [tuple(iter_extend(l.rsplit('\t'), 3)) for l in ref_output.splitlines()] + if ref_filter: + ref_split = (e for e in ref_split if ref_filter(*e)) + refs = [r[0] for r in ref_split] + return refs + + +def iter_extend(iterable, length, obj=None): + """Ensure that iterable is the specified length by extending with obj.""" + return itertools.islice(itertools.chain(iterable, itertools.repeat(obj)), length) + + +def filter_refs(refs): + """Remove all but the specified refs from the git repository.""" + all_refs = get_all_refs() + to_remove = set(all_refs) - set(refs) + if to_remove: + check_output(['xargs', '-0', '-n', '1', 'git', 'update-ref', '-d', '--no-deref'], + input=''.join(l + '\0' for l in to_remove)) + + +def follow_history_intersections(revisions, refs): + """Determine all the points where the history of the specified revisions intersects the specified refs.""" + queue = collections.deque(revisions) + seen = set() + + for rev in iter_except(queue.popleft, IndexError): + if rev in seen: + continue + + parents = check_output(['git', 'rev-parse', '%s^@' % rev]).splitlines() + + yield rev + seen.add(rev) + + if not parents: + continue + + check_refs = check_output(['git', 'merge-base', '--independent'] + sorted(refs)).splitlines() + for parent in parents: + for ref in check_refs: + print("Checking %s vs %s" % (parent, ref)) + try: + merge_base = check_output(['git', 'merge-base', parent, ref]).rstrip() + except subprocess.CalledProcessError: + continue + else: + queue.append(merge_base) + + +def iter_except(func, exception, start=None): + """Yield a function repeatedly until it raises an exception.""" + try: + if start is not None: + yield start() + while True: + yield func() + except exception: + pass + + +def shrink_repo(git_dir): + """Shrink the newly shallow repository, removing the unreachable objects.""" + subprocess.check_call(['git', 'reflog', 'expire', '--expire-unreachable=now', '--all']) + subprocess.check_call(['git', 'repack', '-ad']) + try: + os.unlink(os.path.join(git_dir, 'objects', 'info', 'alternates')) + except OSError as exc: + if exc.errno != errno.ENOENT: + raise + subprocess.check_call(['git', 'prune', '--expire', 'now']) + + +if __name__ == '__main__': + main() diff --git a/poky/bitbake/bin/toaster b/poky/bitbake/bin/toaster new file mode 100755 index 0000000..558a819 --- /dev/null +++ b/poky/bitbake/bin/toaster @@ -0,0 +1,324 @@ +#!/bin/echo ERROR: This script needs to be sourced. Please run as . + +# toaster - shell script to start Toaster + +# Copyright (C) 2013-2015 Intel Corp. +# +# SPDX-License-Identifier: GPL-2.0-or-later +# + +HELP=" +Usage 1: source toaster start|stop [webport=] [noweb] [nobuild] [toasterdir] + Optional arguments: + [nobuild] Setup the environment for capturing builds with toaster but disable managed builds + [noweb] Setup the environment for capturing builds with toaster but don't start the web server + [webport] Set the development server (default: localhost:8000) + [toasterdir] Set absolute path to be used as TOASTER_DIR (default: BUILDDIR/../) +Usage 2: source toaster manage [createsuperuser|lsupdates|migrate|makemigrations|checksettings|collectstatic|...] +" + +custom_extention() +{ + custom_extension=$BBBASEDIR/lib/toaster/orm/fixtures/custom_toaster_append.sh + if [ -f $custom_extension ] ; then + $custom_extension $* + fi +} + +databaseCheck() +{ + retval=0 + # you can always add a superuser later via + # ../bitbake/lib/toaster/manage.py createsuperuser --username= + $MANAGE migrate --noinput || retval=1 + + if [ $retval -eq 1 ]; then + echo "Failed migrations, halting system start" 1>&2 + return $retval + fi + # Make sure that checksettings can pick up any value for TEMPLATECONF + export TEMPLATECONF + $MANAGE checksettings --traceback || retval=1 + + if [ $retval -eq 1 ]; then + printf "\nError while checking settings; exiting\n" + return $retval + fi + + return $retval +} + +webserverKillAll() +{ + local pidfile + if [ -f ${BUILDDIR}/.toastermain.pid ] ; then + custom_extention web_stop_postpend + else + custom_extention noweb_stop_postpend + fi + for pidfile in ${BUILDDIR}/.toastermain.pid ${BUILDDIR}/.runbuilds.pid; do + if [ -f ${pidfile} ]; then + pid=`cat ${pidfile}` + while kill -0 $pid 2>/dev/null; do + kill -SIGTERM $pid 2>/dev/null + sleep 1 + done + rm ${pidfile} + fi + done +} + +webserverStartAll() +{ + # do not start if toastermain points to a valid process + if ! cat "${BUILDDIR}/.toastermain.pid" 2>/dev/null | xargs -I{} kill -0 {} ; then + retval=1 + rm "${BUILDDIR}/.toastermain.pid" + fi + + retval=0 + + # check the database + databaseCheck || return 1 + + echo "Starting webserver..." + + $MANAGE runserver --noreload "$ADDR_PORT" \ + >${BUILDDIR}/toaster_web.log 2>&1 \ + & echo $! >${BUILDDIR}/.toastermain.pid + + sleep 1 + + if ! cat "${BUILDDIR}/.toastermain.pid" | xargs -I{} kill -0 {} ; then + retval=1 + rm "${BUILDDIR}/.toastermain.pid" + else + echo "Toaster development webserver started at http://$ADDR_PORT" + echo -e "\nYou can now run 'bitbake ' on the command line and monitor your build in Toaster.\nYou can also use a Toaster project to configure and run a build.\n" + custom_extention web_start_postpend $ADDR_PORT + fi + + return $retval +} + +INSTOPSYSTEM=0 + +# define the stop command +stop_system() +{ + # prevent reentry + if [ $INSTOPSYSTEM -eq 1 ]; then return; fi + INSTOPSYSTEM=1 + webserverKillAll + # unset exported variables + unset TOASTER_DIR + unset BITBAKE_UI + unset BBBASEDIR + trap - SIGHUP + #trap - SIGCHLD + INSTOPSYSTEM=0 +} + +verify_prereq() { + # Verify Django version + reqfile=$(python3 -c "import os; print(os.path.realpath('$BBBASEDIR/toaster-requirements.txt'))") + exp='s/Django\([><=]\+\)\([^,]\+\),\([><=]\+\)\(.\+\)/' + # expand version parts to 2 digits to support 1.10.x > 1.8 + # (note:helper functions hard to insert in-line) + exp=$exp'import sys,django;' + exp=$exp'version=["%02d" % int(n) for n in django.get_version().split(".")];' + exp=$exp'vmin=["%02d" % int(n) for n in "\2".split(".")];' + exp=$exp'vmax=["%02d" % int(n) for n in "\4".split(".")];' + exp=$exp'sys.exit(not (version \1 vmin and version \3 vmax))' + exp=$exp'/p' + if ! sed -n "$exp" $reqfile | python3 - ; then + req=`grep ^Django $reqfile` + echo "This program needs $req" + echo "Please install with pip3 install -r $reqfile" + return 2 + fi + + return 0 +} + +# read command line parameters +if [ -n "$BASH_SOURCE" ] ; then + TOASTER=${BASH_SOURCE} +elif [ -n "$ZSH_NAME" ] ; then + TOASTER=${(%):-%x} +else + TOASTER=$0 +fi + +export BBBASEDIR=`dirname $TOASTER`/.. +MANAGE="python3 $BBBASEDIR/lib/toaster/manage.py" +if [ -z "$OE_ROOT" ]; then + OE_ROOT=`dirname $TOASTER`/../.. +fi + +# this is the configuraton file we are using for toaster +# we are using the same logic that oe-setup-builddir uses +# (based on TEMPLATECONF and .templateconf) to determine +# which toasterconf.json to use. +# note: There are a number of relative path assumptions +# in the local layers that currently make using an arbitrary +# toasterconf.json difficult. + +. $OE_ROOT/.templateconf +if [ -n "$TEMPLATECONF" ]; then + if [ ! -d "$TEMPLATECONF" ]; then + # Allow TEMPLATECONF=meta-xyz/conf as a shortcut + if [ -d "$OE_ROOT/$TEMPLATECONF" ]; then + TEMPLATECONF="$OE_ROOT/$TEMPLATECONF" + fi + fi +fi + +unset OE_ROOT + + +WEBSERVER=1 +export TOASTER_BUILDSERVER=1 +ADDR_PORT="localhost:8000" +TOASTERDIR=`dirname $BUILDDIR` +unset CMD +for param in $*; do + case $param in + noweb ) + WEBSERVER=0 + ;; + nobuild ) + TOASTER_BUILDSERVER=0 + ;; + start ) + CMD=$param + ;; + stop ) + CMD=$param + ;; + webport=*) + ADDR_PORT="${param#*=}" + # Split the addr:port string + ADDR=`echo $ADDR_PORT | cut -f 1 -d ':'` + PORT=`echo $ADDR_PORT | cut -f 2 -d ':'` + # If only a port has been speified then set address to localhost. + if [ $ADDR = $PORT ] ; then + ADDR_PORT="localhost:$PORT" + fi + ;; + toasterdir=*) + TOASTERDIR="${param#*=}" + ;; + manage ) + CMD=$param + manage_cmd="" + ;; + --help) + echo "$HELP" + return 0 + ;; + *) + if [ "manage" == "$CMD" ] ; then + manage_cmd="$manage_cmd $param" + else + echo "$HELP" + exit 1 + fi + ;; + + esac +done + +if [ `basename \"$0\"` = `basename \"${TOASTER}\"` ]; then + echo "Error: This script needs to be sourced. Please run as . $TOASTER" + return 1 +fi + +verify_prereq || return 1 + +# We make sure we're running in the current shell and in a good environment +if [ -z "$BUILDDIR" ] || ! which bitbake >/dev/null 2>&1 ; then + echo "Error: Build environment is not setup or bitbake is not in path." 1>&2 + return 2 +fi + +# this defines the dir toaster will use for +# 1) clones of layers (in _toaster_clones ) +# 2) the build dir (in build) +# 3) the sqlite db if that is being used. +# 4) pid's we need to clean up on exit/shutdown +export TOASTER_DIR=$TOASTERDIR +export BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS TOASTER_DIR" + +# Determine the action. If specified by arguments, fine, if not, toggle it +if [ "$CMD" = "start" ] ; then + if [ -n "$BBSERVER" ]; then + echo " Toaster is already running. Exiting..." + return 1 +fi +elif [ "$CMD" = "" ]; then + echo "No command specified" + echo "$HELP" + return 1 +fi + +echo "The system will $CMD." + +# Execute the commands +custom_extention toaster_prepend $CMD $ADDR_PORT + +case $CMD in + start ) + # check if addr:port is not in use + if [ "$CMD" == 'start' ]; then + if [ $WEBSERVER -gt 0 ]; then + $MANAGE checksocket "$ADDR_PORT" || return 1 + fi + fi + + # Create configuration file + conf=${BUILDDIR}/conf/local.conf + line='INHERIT+="toaster buildhistory"' + grep -q "$line" $conf || echo $line >> $conf + + if [ $WEBSERVER -eq 0 ] ; then + # Do not update the database for "noweb" unless + # it does not yet exist + if [ ! -f "$TOASTER_DIR/toaster.sqlite" ] ; then + if ! databaseCheck; then + echo "Failed ${CMD}." + return 4 + fi + fi + custom_extention noweb_start_postpend $ADDR_PORT + fi + if [ $WEBSERVER -gt 0 ] && ! webserverStartAll; then + echo "Failed ${CMD}." + return 4 + fi + export BITBAKE_UI='toasterui' + if [ $TOASTER_BUILDSERVER -eq 1 ] ; then + $MANAGE runbuilds \ + >${BUILDDIR}/toaster_runbuilds.log 2>&1 \ + & echo $! >${BUILDDIR}/.runbuilds.pid + else + echo "Toaster build server not started." + fi + + # set fail safe stop system on terminal exit + trap stop_system SIGHUP + echo "Successful ${CMD}." + custom_extention toaster_postpend $CMD $ADDR_PORT + return 0 + ;; + stop ) + stop_system + echo "Successful ${CMD}." + ;; + manage ) + cd $BBBASEDIR/lib/toaster + $MANAGE $manage_cmd + ;; +esac +custom_extention toaster_postpend $CMD $ADDR_PORT + diff --git a/poky/bitbake/bin/toaster-eventreplay b/poky/bitbake/bin/toaster-eventreplay new file mode 100755 index 0000000..404b61f --- /dev/null +++ b/poky/bitbake/bin/toaster-eventreplay @@ -0,0 +1,115 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2014 Alex Damian +# +# SPDX-License-Identifier: GPL-2.0-only +# +# This file re-uses code spread throughout other Bitbake source files. +# As such, all other copyrights belong to their own right holders. +# + +""" +This command takes a filename as a single parameter. The filename is read +as a build eventlog, and the ToasterUI is used to process events in the file +and log data in the database +""" + +import os +import sys +import json +import pickle +import codecs +import warnings +warnings.simplefilter("default") + +from collections import namedtuple + +# mangle syspath to allow easy import of modules +from os.path import join, dirname, abspath +sys.path.insert(0, join(dirname(dirname(abspath(__file__))), 'lib')) + +import bb.cooker +from bb.ui import toasterui + +class EventPlayer: + """Emulate a connection to a bitbake server.""" + + def __init__(self, eventfile, variables): + self.eventfile = eventfile + self.variables = variables + self.eventmask = [] + + def waitEvent(self, _timeout): + """Read event from the file.""" + line = self.eventfile.readline().strip() + if not line: + return + try: + event_str = json.loads(line)['vars'].encode('utf-8') + event = pickle.loads(codecs.decode(event_str, 'base64')) + event_name = "%s.%s" % (event.__module__, event.__class__.__name__) + if event_name not in self.eventmask: + return + return event + except ValueError as err: + print("Failed loading ", line) + raise err + + def runCommand(self, command_line): + """Emulate running a command on the server.""" + name = command_line[0] + + if name == "getVariable": + var_name = command_line[1] + variable = self.variables.get(var_name) + if variable: + return variable['v'], None + return None, "Missing variable %s" % var_name + + elif name == "getAllKeysWithFlags": + dump = {} + flaglist = command_line[1] + for key, val in self.variables.items(): + try: + if not key.startswith("__"): + dump[key] = { + 'v': val['v'], + 'history' : val['history'], + } + for flag in flaglist: + dump[key][flag] = val[flag] + except Exception as err: + print(err) + return (dump, None) + + elif name == 'setEventMask': + self.eventmask = command_line[-1] + return True, None + + else: + raise Exception("Command %s not implemented" % command_line[0]) + + def getEventHandle(self): + """ + This method is called by toasterui. + The return value is passed to self.runCommand but not used there. + """ + pass + +def main(argv): + with open(argv[-1]) as eventfile: + # load variables from the first line + variables = json.loads(eventfile.readline().strip())['allvariables'] + + params = namedtuple('ConfigParams', ['observe_only'])(True) + player = EventPlayer(eventfile, variables) + + return toasterui.main(player, player, params) + +# run toaster ui on our mock bitbake class +if __name__ == "__main__": + if len(sys.argv) != 2: + print("Usage: %s " % os.path.basename(sys.argv[0])) + sys.exit(1) + + sys.exit(main(sys.argv)) diff --git a/poky/bitbake/contrib/README b/poky/bitbake/contrib/README new file mode 100644 index 0000000..25e5156 --- /dev/null +++ b/poky/bitbake/contrib/README @@ -0,0 +1 @@ +This directory is for additional contributed files which may be useful. diff --git a/poky/bitbake/contrib/autobuilderlog.json b/poky/bitbake/contrib/autobuilderlog.json new file mode 100644 index 0000000..193a675 --- /dev/null +++ b/poky/bitbake/contrib/autobuilderlog.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "loggers": { + "BitBake.SigGen.HashEquiv": { + "level": "VERBOSE", + "handlers": ["BitBake.verbconsole"] + }, + "BitBake.RunQueue.HashEquiv": { + "level": "VERBOSE", + "handlers": ["BitBake.verbconsole"] + } + } +} diff --git a/poky/bitbake/contrib/bbdev.sh b/poky/bitbake/contrib/bbdev.sh new file mode 100644 index 0000000..33a7853 --- /dev/null +++ b/poky/bitbake/contrib/bbdev.sh @@ -0,0 +1,31 @@ +# This is a shell function to be sourced into your shell or placed in your .profile, +# which makes setting things up for BitBake a bit easier. +# +# The author disclaims copyright to the contents of this file and places it in the +# public domain. + +bbdev () { + local BBDIR PKGDIR BUILDDIR + if test x"$1" = "x--help"; then echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]"; return 1; fi + if test x"$1" = x; then BBDIR=`pwd`; else BBDIR=$1; fi + if test x"$2" = x; then PKGDIR=`pwd`; else PKGDIR=$2; fi + if test x"$3" = x; then BUILDDIR=`pwd`; else BUILDDIR=$3; fi + + BBDIR=`readlink -f $BBDIR` + PKGDIR=`readlink -f $PKGDIR` + BUILDDIR=`readlink -f $BUILDDIR` + if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then + echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]" + return 1 + fi + + PATH=$BBDIR/bin:$PATH + BBPATH=$BBDIR + if test x"$BBDIR" != x"$PKGDIR"; then + BBPATH=$PKGDIR:$BBPATH + fi + if test x"$PKGDIR" != x"$BUILDDIR"; then + BBPATH=$BUILDDIR:$BBPATH + fi + export BBPATH +} diff --git a/poky/bitbake/contrib/bbparse-torture.py b/poky/bitbake/contrib/bbparse-torture.py new file mode 100755 index 0000000..c25d547 --- /dev/null +++ b/poky/bitbake/contrib/bbparse-torture.py @@ -0,0 +1,89 @@ +#! /usr/bin/env python3 +# +# Copyright (C) 2020 Joshua Watt +# +# SPDX-License-Identifier: MIT + +import argparse +import os +import random +import shutil +import signal +import subprocess +import sys +import time + + +def try_unlink(path): + try: + os.unlink(path) + except: + pass + + +def main(): + def cleanup(): + shutil.rmtree("tmp/cache", ignore_errors=True) + try_unlink("bitbake-cookerdaemon.log") + try_unlink("bitbake.sock") + try_unlink("bitbake.lock") + + parser = argparse.ArgumentParser( + description="Bitbake parser torture test", + epilog=""" + A torture test for bitbake's parser. Repeatedly interrupts parsing until + bitbake decides to deadlock. + """, + ) + + args = parser.parse_args() + + if not "BUILDDIR" in os.environ: + print( + "'BUILDDIR' not found in the environment. Did you initialize the build environment?" + ) + return 1 + + os.chdir(os.environ["BUILDDIR"]) + + run_num = 0 + while True: + if run_num % 100 == 0: + print("Calibrating wait time...") + cleanup() + + start_time = time.monotonic() + r = subprocess.run(["bitbake", "-p"]) + max_wait_time = time.monotonic() - start_time + + if r.returncode != 0: + print("Calibration run exited with %d" % r.returncode) + return 1 + + print("Maximum wait time is %f seconds" % max_wait_time) + + run_num += 1 + wait_time = random.random() * max_wait_time + + print("Run #%d" % run_num) + print("Will sleep for %f seconds" % wait_time) + + cleanup() + with subprocess.Popen(["bitbake", "-p"]) as proc: + time.sleep(wait_time) + proc.send_signal(signal.SIGINT) + try: + proc.wait(45) + except subprocess.TimeoutExpired: + print("Run #%d: Waited too long. Possible deadlock!" % run_num) + proc.wait() + return 1 + + if proc.returncode == 0: + print("Exited successfully. Timeout too long?") + else: + print("Exited with %d" % proc.returncode) + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/poky/bitbake/contrib/dump_cache.py b/poky/bitbake/contrib/dump_cache.py new file mode 100755 index 0000000..c6723cb --- /dev/null +++ b/poky/bitbake/contrib/dump_cache.py @@ -0,0 +1,83 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2012, 2018 Wind River Systems, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +# +# Used for dumping the bb_cache.dat +# +import os +import sys +import argparse + +# For importing bb.cache +sys.path.insert(0, os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), '../lib')) +from bb.cache import CoreRecipeInfo + +import pickle + +class DumpCache(object): + def __init__(self): + parser = argparse.ArgumentParser( + description="bb_cache.dat's dumper", + epilog="Use %(prog)s --help to get help") + parser.add_argument("-r", "--recipe", + help="specify the recipe, default: all recipes", action="store") + parser.add_argument("-m", "--members", + help = "specify the member, use comma as separator for multiple ones, default: all members", action="store", default="") + parser.add_argument("-s", "--skip", + help = "skip skipped recipes", action="store_true") + parser.add_argument("cachefile", + help = "specify bb_cache.dat", nargs = 1, action="store", default="") + + self.args = parser.parse_args() + + def main(self): + with open(self.args.cachefile[0], "rb") as cachefile: + pickled = pickle.Unpickler(cachefile) + while True: + try: + key = pickled.load() + val = pickled.load() + except Exception: + break + if isinstance(val, CoreRecipeInfo): + pn = val.pn + + if self.args.recipe and self.args.recipe != pn: + continue + + if self.args.skip and val.skipped: + continue + + if self.args.members: + out = key + for member in self.args.members.split(','): + out += ": %s" % val.__dict__.get(member) + print("%s" % out) + else: + print("%s: %s" % (key, val.__dict__)) + elif not self.args.recipe: + print("%s %s" % (key, val)) + +if __name__ == "__main__": + try: + dump = DumpCache() + ret = dump.main() + except Exception as esc: + ret = 1 + import traceback + traceback.print_exc() + sys.exit(ret) diff --git a/poky/bitbake/contrib/hashserv/Dockerfile b/poky/bitbake/contrib/hashserv/Dockerfile new file mode 100644 index 0000000..74b4a3b --- /dev/null +++ b/poky/bitbake/contrib/hashserv/Dockerfile @@ -0,0 +1,23 @@ +# SPDX-License-Identifier: MIT +# +# Copyright (c) 2021 Joshua Watt +# +# Dockerfile to build a bitbake hash equivalence server container +# +# From the root of the bitbake repository, run: +# +# docker build -f contrib/hashserv/Dockerfile . +# + +FROM alpine:3.13.1 + +RUN apk add --no-cache python3 + +COPY bin/bitbake-hashserv /opt/bbhashserv/bin/ +COPY lib/hashserv /opt/bbhashserv/lib/hashserv/ +COPY lib/bb /opt/bbhashserv/lib/bb/ +COPY lib/codegen.py /opt/bbhashserv/lib/codegen.py +COPY lib/ply /opt/bbhashserv/lib/ply/ +COPY lib/bs4 /opt/bbhashserv/lib/bs4/ + +ENTRYPOINT ["/opt/bbhashserv/bin/bitbake-hashserv"] diff --git a/poky/bitbake/contrib/prserv/Dockerfile b/poky/bitbake/contrib/prserv/Dockerfile new file mode 100644 index 0000000..9585fe3 --- /dev/null +++ b/poky/bitbake/contrib/prserv/Dockerfile @@ -0,0 +1,62 @@ +# SPDX-License-Identifier: MIT +# +# Copyright (c) 2022 Daniel Gomez +# +# Dockerfile to build a bitbake PR service container +# +# From the root of the bitbake repository, run: +# +# docker build -f contrib/prserv/Dockerfile . -t prserv +# +# Running examples: +# +# 1. PR Service in RW mode, port 18585: +# +# docker run --detach --tty \ +# --env PORT=18585 \ +# --publish 18585:18585 \ +# --volume $PWD:/var/lib/bbprserv \ +# prserv +# +# 2. PR Service in RO mode, default port (8585) and custom LOGFILE: +# +# docker run --detach --tty \ +# --env DBMODE="--read-only" \ +# --env LOGFILE=/var/lib/bbprserv/prservro.log \ +# --publish 8585:8585 \ +# --volume $PWD:/var/lib/bbprserv \ +# prserv +# + +FROM alpine:3.14.4 + +RUN apk add --no-cache python3 + +COPY bin/bitbake-prserv /opt/bbprserv/bin/ +COPY lib/prserv /opt/bbprserv/lib/prserv/ +COPY lib/bb /opt/bbprserv/lib/bb/ +COPY lib/codegen.py /opt/bbprserv/lib/codegen.py +COPY lib/ply /opt/bbprserv/lib/ply/ +COPY lib/bs4 /opt/bbprserv/lib/bs4/ + +ENV PATH=$PATH:/opt/bbprserv/bin + +RUN mkdir -p /var/lib/bbprserv + +ENV DBFILE=/var/lib/bbprserv/prserv.sqlite3 \ + LOGFILE=/var/lib/bbprserv/prserv.log \ + LOGLEVEL=debug \ + HOST=0.0.0.0 \ + PORT=8585 \ + DBMODE="" + +ENTRYPOINT [ "/bin/sh", "-c", \ +"bitbake-prserv \ +--file=$DBFILE \ +--log=$LOGFILE \ +--loglevel=$LOGLEVEL \ +--start \ +--host=$HOST \ +--port=$PORT \ +$DBMODE \ +&& tail -f $LOGFILE"] diff --git a/poky/bitbake/contrib/vim/LICENSE.txt b/poky/bitbake/contrib/vim/LICENSE.txt new file mode 100644 index 0000000..c7d9150 --- /dev/null +++ b/poky/bitbake/contrib/vim/LICENSE.txt @@ -0,0 +1,18 @@ +The MIT License (MIT) + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/poky/bitbake/contrib/vim/ftdetect/bitbake.vim b/poky/bitbake/contrib/vim/ftdetect/bitbake.vim new file mode 100644 index 0000000..09fc4dc --- /dev/null +++ b/poky/bitbake/contrib/vim/ftdetect/bitbake.vim @@ -0,0 +1,24 @@ +" Vim filetype detection file +" Language: BitBake +" Author: Ricardo Salveti +" Copyright: Copyright (C) 2008 Ricardo Salveti +" Licence: You may redistribute this under the same terms as Vim itself +" +" This sets up the syntax highlighting for BitBake files, like .bb, .bbclass and .inc + +if &compatible || version < 600 || exists("b:loaded_bitbake_plugin") + finish +endif + +" .bb, .bbappend and .bbclass +au BufNewFile,BufRead *.{bb,bbappend,bbclass} set filetype=bitbake + +" .inc +au BufNewFile,BufRead *.inc set filetype=bitbake + +" .conf +au BufNewFile,BufRead *.conf + \ if (match(expand("%:p:h"), "conf") > 0) | + \ set filetype=bitbake | + \ endif + diff --git a/poky/bitbake/contrib/vim/ftplugin/bitbake.vim b/poky/bitbake/contrib/vim/ftplugin/bitbake.vim new file mode 100644 index 0000000..9e8d3e1 --- /dev/null +++ b/poky/bitbake/contrib/vim/ftplugin/bitbake.vim @@ -0,0 +1,13 @@ +" Only do this when not done yet for this buffer +if exists("b:did_ftplugin") + finish +endif + +" Don't load another plugin for this buffer +let b:did_ftplugin = 1 + +let b:undo_ftplugin = "setl cms< sts< sw< et< sua<" + +setlocal commentstring=#\ %s +setlocal softtabstop=4 shiftwidth=4 expandtab +setlocal suffixesadd+=.bb,.bbclass diff --git a/poky/bitbake/contrib/vim/indent/bitbake.vim b/poky/bitbake/contrib/vim/indent/bitbake.vim new file mode 100644 index 0000000..1381034 --- /dev/null +++ b/poky/bitbake/contrib/vim/indent/bitbake.vim @@ -0,0 +1,343 @@ +" Vim indent file +" Language: BitBake +" Copyright: Copyright (C) 2019 Agilent Technologies, Inc. +" Maintainer: Chris Laplante +" License: You may redistribute this under the same terms as Vim itself + + +if exists("b:did_indent") + finish +endif + +if exists("*BitbakeIndent") + finish +endif + +runtime! indent/sh.vim +unlet b:did_indent + +setlocal indentexpr=BitbakeIndent(v:lnum) +setlocal autoindent nolisp + +function s:is_bb_python_func_def(lnum) + let stack = synstack(a:lnum, 1) + if len(stack) == 0 + return 0 + endif + + let top = synIDattr(stack[0], "name") + echo top + + return synIDattr(stack[0], "name") == "bbPyFuncDef" +endfunction + +"""" begin modified from indent/python.vim, upstream commit 7a9bd7c1e0ce1baf5a02daf36eeae3638aa315c7 +"""" This copied code is licensed the same as Vim itself. +setlocal indentkeys+=<:>,=elif,=except + +let s:keepcpo= &cpo +set cpo&vim + +let s:maxoff = 50 " maximum number of lines to look backwards for () + +function GetPythonIndent(lnum) + + " If this line is explicitly joined: If the previous line was also joined, + " line it up with that one, otherwise add two 'shiftwidth' + if getline(a:lnum - 1) =~ '\\$' + if a:lnum > 1 && getline(a:lnum - 2) =~ '\\$' + return indent(a:lnum - 1) + endif + return indent(a:lnum - 1) + (exists("g:pyindent_continue") ? eval(g:pyindent_continue) : (shiftwidth() * 2)) + endif + + " If the start of the line is in a string don't change the indent. + if has('syntax_items') + \ && synIDattr(synID(a:lnum, 1, 1), "name") =~ "String$" + return -1 + endif + + " Search backwards for the previous non-empty line. + let plnum = prevnonblank(v:lnum - 1) + + if plnum == 0 + " This is the first non-empty line, use zero indent. + return 0 + endif + + call cursor(plnum, 1) + + " Identing inside parentheses can be very slow, regardless of the searchpair() + " timeout, so let the user disable this feature if he doesn't need it + let disable_parentheses_indenting = get(g:, "pyindent_disable_parentheses_indenting", 0) + + if disable_parentheses_indenting == 1 + let plindent = indent(plnum) + let plnumstart = plnum + else + " searchpair() can be slow sometimes, limit the time to 150 msec or what is + " put in g:pyindent_searchpair_timeout + let searchpair_stopline = 0 + let searchpair_timeout = get(g:, 'pyindent_searchpair_timeout', 150) + + " If the previous line is inside parenthesis, use the indent of the starting + " line. + " Trick: use the non-existing "dummy" variable to break out of the loop when + " going too far back. + let parlnum = searchpair('(\|{\|\[', '', ')\|}\|\]', 'nbW', + \ "line('.') < " . (plnum - s:maxoff) . " ? dummy :" + \ . " synIDattr(synID(line('.'), col('.'), 1), 'name')" + \ . " =~ '\\(Comment\\|Todo\\|String\\)$'", + \ searchpair_stopline, searchpair_timeout) + if parlnum > 0 + " We may have found the opening brace of a BitBake Python task, e.g. 'python do_task {' + " If so, ignore it here - it will be handled later. + if s:is_bb_python_func_def(parlnum) + let parlnum = 0 + let plindent = indent(plnum) + let plnumstart = plnum + else + let plindent = indent(parlnum) + let plnumstart = parlnum + endif + else + let plindent = indent(plnum) + let plnumstart = plnum + endif + + " When inside parenthesis: If at the first line below the parenthesis add + " two 'shiftwidth', otherwise same as previous line. + " i = (a + " + b + " + c) + call cursor(a:lnum, 1) + let p = searchpair('(\|{\|\[', '', ')\|}\|\]', 'bW', + \ "line('.') < " . (a:lnum - s:maxoff) . " ? dummy :" + \ . " synIDattr(synID(line('.'), col('.'), 1), 'name')" + \ . " =~ '\\(Comment\\|Todo\\|String\\)$'", + \ searchpair_stopline, searchpair_timeout) + if p > 0 + if s:is_bb_python_func_def(p) + " Handle first non-empty line inside a BB Python task + if p == plnum + return shiftwidth() + endif + + " Handle the user actually trying to close a BitBake Python task + let line = getline(a:lnum) + if line =~ '^\s*}' + return -2 + endif + + " Otherwise ignore the brace + let p = 0 + else + if p == plnum + " When the start is inside parenthesis, only indent one 'shiftwidth'. + let pp = searchpair('(\|{\|\[', '', ')\|}\|\]', 'bW', + \ "line('.') < " . (a:lnum - s:maxoff) . " ? dummy :" + \ . " synIDattr(synID(line('.'), col('.'), 1), 'name')" + \ . " =~ '\\(Comment\\|Todo\\|String\\)$'", + \ searchpair_stopline, searchpair_timeout) + if pp > 0 + return indent(plnum) + (exists("g:pyindent_nested_paren") ? eval(g:pyindent_nested_paren) : shiftwidth()) + endif + return indent(plnum) + (exists("g:pyindent_open_paren") ? eval(g:pyindent_open_paren) : (shiftwidth() * 2)) + endif + if plnumstart == p + return indent(plnum) + endif + return plindent + endif + endif + + endif + + + " Get the line and remove a trailing comment. + " Use syntax highlighting attributes when possible. + let pline = getline(plnum) + let pline_len = strlen(pline) + if has('syntax_items') + " If the last character in the line is a comment, do a binary search for + " the start of the comment. synID() is slow, a linear search would take + " too long on a long line. + if synIDattr(synID(plnum, pline_len, 1), "name") =~ "\\(Comment\\|Todo\\)$" + let min = 1 + let max = pline_len + while min < max + let col = (min + max) / 2 + if synIDattr(synID(plnum, col, 1), "name") =~ "\\(Comment\\|Todo\\)$" + let max = col + else + let min = col + 1 + endif + endwhile + let pline = strpart(pline, 0, min - 1) + endif + else + let col = 0 + while col < pline_len + if pline[col] == '#' + let pline = strpart(pline, 0, col) + break + endif + let col = col + 1 + endwhile + endif + + " If the previous line ended with a colon, indent this line + if pline =~ ':\s*$' + return plindent + shiftwidth() + endif + + " If the previous line was a stop-execution statement... + " TODO: utilize this logic to deindent when ending a bbPyDefRegion + if getline(plnum) =~ '^\s*\(break\|continue\|raise\|return\|pass\|bb\.fatal\)\>' + " See if the user has already dedented + if indent(a:lnum) > indent(plnum) - shiftwidth() + " If not, recommend one dedent + return indent(plnum) - shiftwidth() + endif + " Otherwise, trust the user + return -1 + endif + + " If the current line begins with a keyword that lines up with "try" + if getline(a:lnum) =~ '^\s*\(except\|finally\)\>' + let lnum = a:lnum - 1 + while lnum >= 1 + if getline(lnum) =~ '^\s*\(try\|except\)\>' + let ind = indent(lnum) + if ind >= indent(a:lnum) + return -1 " indent is already less than this + endif + return ind " line up with previous try or except + endif + let lnum = lnum - 1 + endwhile + return -1 " no matching "try"! + endif + + " If the current line begins with a header keyword, dedent + if getline(a:lnum) =~ '^\s*\(elif\|else\)\>' + + " Unless the previous line was a one-liner + if getline(plnumstart) =~ '^\s*\(for\|if\|try\)\>' + return plindent + endif + + " Or the user has already dedented + if indent(a:lnum) <= plindent - shiftwidth() + return -1 + endif + + return plindent - shiftwidth() + endif + + " When after a () construct we probably want to go back to the start line. + " a = (b + " + c) + " here + if parlnum > 0 + return plindent + endif + + return -1 + +endfunction + +let &cpo = s:keepcpo +unlet s:keepcpo + +""" end of stuff from indent/python.vim + + +let b:did_indent = 1 +setlocal indentkeys+=0\" + + +function BitbakeIndent(lnum) + if !has('syntax_items') + return -1 + endif + + let stack = synstack(a:lnum, 1) + if len(stack) == 0 + return -1 + endif + + let name = synIDattr(stack[0], "name") + + " TODO: support different styles of indentation for assignments. For now, + " we only support like this: + " VAR = " \ + " value1 \ + " value2 \ + " " + " + " i.e. each value indented by shiftwidth(), with the final quote " completely unindented. + if name == "bbVarValue" + " Quote handling is tricky. kernel.bbclass has this line for instance: + " EXTRA_OEMAKE = " HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" " HOSTCPP="${BUILD_CPP}"" + " Instead of trying to handle crazy cases like that, just assume that a + " double-quote on a line by itself (following an assignment) means the + " user is closing the assignment, and de-dent. + if getline(a:lnum) =~ '^\s*"$' + return 0 + endif + + let prevstack = synstack(a:lnum - 1, 1) + if len(prevstack) == 0 + return -1 + endif + + let prevname = synIDattr(prevstack[0], "name") + + " Only indent if there was actually a continuation character on + " the previous line, to avoid misleading indentation. + let prevlinelastchar = synIDattr(synID(a:lnum - 1, col([a:lnum - 1, "$"]) - 1, 1), "name") + let prev_continued = prevlinelastchar == "bbContinue" + + " Did the previous line introduce an assignment? + if index(["bbVarDef", "bbVarFlagDef"], prevname) != -1 + if prev_continued + return shiftwidth() + endif + endif + + if !prev_continued + return 0 + endif + + " Autoindent can take it from here + return -1 + endif + + if index(["bbPyDefRegion", "bbPyFuncRegion"], name) != -1 + let ret = GetPythonIndent(a:lnum) + " Should normally always be indented by at least one shiftwidth; but allow + " return of -1 (defer to autoindent) or -2 (force indent to 0) + if ret == 0 + return shiftwidth() + elseif ret == -2 + return 0 + endif + return ret + endif + + " TODO: GetShIndent doesn't detect tasks prepended with 'fakeroot' + " Need to submit a patch upstream to Vim to provide an extension point. + " Unlike the Python indenter, the Sh indenter is way too large to copy and + " modify here. + if name == "bbShFuncRegion" + return GetShIndent() + endif + + " TODO: + " + heuristics for de-denting out of a bbPyDefRegion? e.g. when the user + " types an obvious BB keyword like addhandler or addtask, or starts + " writing a shell task. Maybe too hard to implement... + + return -1 +endfunction diff --git a/poky/bitbake/contrib/vim/plugin/newbb.vim b/poky/bitbake/contrib/vim/plugin/newbb.vim new file mode 100644 index 0000000..3a42027 --- /dev/null +++ b/poky/bitbake/contrib/vim/plugin/newbb.vim @@ -0,0 +1,88 @@ +" Vim plugin file +" Purpose: Create a template for new bb files +" Author: Ricardo Salveti +" Copyright: Copyright (C) 2008 Ricardo Salveti +" +" This file is licensed under the MIT license, see COPYING.MIT in +" this source distribution for the terms. +" +" Based on the gentoo-syntax package +" +" Will try to use git to find the user name and email + +if &compatible || v:version < 600 || exists("b:loaded_bitbake_plugin") + finish +endif + +fun! GetUserName() + let l:user_name = system("git config --get user.name") + if v:shell_error + return "Unknown User" + else + return substitute(l:user_name, "\n", "", "") +endfun + +fun! GetUserEmail() + let l:user_email = system("git config --get user.email") + if v:shell_error + return "unknown@user.org" + else + return substitute(l:user_email, "\n", "", "") +endfun + +fun! BBHeader() + let l:current_year = strftime("%Y") + let l:user_name = GetUserName() + let l:user_email = GetUserEmail() + 0 put ='# Copyright (C) ' . l:current_year . + \ ' ' . l:user_name . ' <' . l:user_email . '>' + put ='# Released under the MIT license (see COPYING.MIT for the terms)' + $ +endfun + +fun! NewBBTemplate() + if line2byte(line('$') + 1) != -1 + return + endif + + let l:paste = &paste + set nopaste + + " Get the header + call BBHeader() + + " New the bb template + put ='SUMMARY = \"\"' + put ='HOMEPAGE = \"\"' + put ='LICENSE = \"\"' + put ='SECTION = \"\"' + put ='DEPENDS = \"\"' + put ='' + put ='SRC_URI = \"\"' + + " Go to the first place to edit + 0 + /^SUMMARY =/ + exec "normal 2f\"" + + if paste == 1 + set paste + endif +endfun + +if !exists("g:bb_create_on_empty") + let g:bb_create_on_empty = 1 +endif + +" disable in case of vimdiff +if v:progname =~ "vimdiff" + let g:bb_create_on_empty = 0 +endif + +augroup NewBB + au BufNewFile,BufReadPost *.bb + \ if g:bb_create_on_empty | + \ call NewBBTemplate() | + \ endif +augroup END + diff --git a/poky/bitbake/contrib/vim/plugin/newbbappend.vim b/poky/bitbake/contrib/vim/plugin/newbbappend.vim new file mode 100644 index 0000000..3f65f79 --- /dev/null +++ b/poky/bitbake/contrib/vim/plugin/newbbappend.vim @@ -0,0 +1,46 @@ +" Vim plugin file +" Purpose: Create a template for new bbappend file +" Author: Joshua Watt +" Copyright: Copyright (C) 2017 Joshua Watt +" +" This file is licensed under the MIT license, see COPYING.MIT in +" this source distribution for the terms. +" + +if &compatible || v:version < 600 || exists("b:loaded_bitbake_plugin") + finish +endif + +fun! NewBBAppendTemplate() + if line2byte(line('$') + 1) != -1 + return + endif + + let l:paste = &paste + set nopaste + + " New bbappend template + 0 put ='FILESEXTRAPATHS:prepend := \"${THISDIR}/${PN}:\"' + 2 + + if paste == 1 + set paste + endif +endfun + +if !exists("g:bb_create_on_empty") + let g:bb_create_on_empty = 1 +endif + +" disable in case of vimdiff +if v:progname =~ "vimdiff" + let g:bb_create_on_empty = 0 +endif + +augroup NewBBAppend + au BufNewFile,BufReadPost *.bbappend + \ if g:bb_create_on_empty | + \ call NewBBAppendTemplate() | + \ endif +augroup END + diff --git a/poky/bitbake/contrib/vim/syntax/bitbake.vim b/poky/bitbake/contrib/vim/syntax/bitbake.vim new file mode 100644 index 0000000..c5ea80f --- /dev/null +++ b/poky/bitbake/contrib/vim/syntax/bitbake.vim @@ -0,0 +1,129 @@ +" Vim syntax file +" Language: BitBake bb/bbclasses/inc +" Author: Chris Larson +" Ricardo Salveti +" Copyright: Copyright (C) 2004 Chris Larson +" Copyright (C) 2008 Ricardo Salveti +" +" This file is licensed under the MIT license, see COPYING.MIT in +" this source distribution for the terms. +" +" Syntax highlighting for bb, bbclasses and inc files. +" +" It's an entirely new type, just has specific syntax in shell and python code + +if &compatible || v:version < 600 || exists("b:loaded_bitbake_plugin") + finish +endif +if exists("b:current_syntax") + finish +endif + +syn include @python syntax/python.vim +if exists("b:current_syntax") + unlet b:current_syntax +endif + +" BitBake syntax + +" Matching case +syn case match + +" Indicates the error when nothing is matched +syn match bbUnmatched "." + +" Comments +syn cluster bbCommentGroup contains=bbTodo,@Spell +syn keyword bbTodo COMBAK FIXME TODO XXX contained +syn match bbComment "#.*$" contains=@bbCommentGroup + +" String helpers +syn match bbQuote +['"]+ contained +syn match bbDelimiter "[(){}=]" contained +syn match bbArrayBrackets "[\[\]]" contained + +" BitBake strings +syn match bbContinue "\\$" +syn region bbString matchgroup=bbQuote start=+"+ skip=+\\$+ end=+"+ contained contains=bbTodo,bbContinue,bbVarDeref,bbVarPyValue,@Spell +syn region bbString matchgroup=bbQuote start=+'+ skip=+\\$+ end=+'+ contained contains=bbTodo,bbContinue,bbVarDeref,bbVarPyValue,@Spell + +" Vars definition +syn match bbExport "^export" nextgroup=bbIdentifier skipwhite +syn keyword bbExportFlag export contained nextgroup=bbIdentifier skipwhite +syn match bbIdentifier "[a-zA-Z0-9\-_\.\/\+]\+" display contained +syn match bbVarDeref "${[a-zA-Z0-9\-_:\.\/\+]\+}" contained +syn match bbVarEq "\(:=\|+=\|=+\|\.=\|=\.\|?=\|??=\|=\)" contained nextgroup=bbVarValue +syn match bbVarDef "^\(export\s*\)\?\([a-zA-Z0-9\-_\.\/\+][${}a-zA-Z0-9\-_:\.\/\+]*\)\s*\(:=\|+=\|=+\|\.=\|=\.\|?=\|??=\|=\)\@=" contains=bbExportFlag,bbIdentifier,bbOverrideOperator,bbVarDeref nextgroup=bbVarEq +syn match bbVarValue ".*$" contained contains=bbString,bbVarDeref,bbVarPyValue +syn region bbVarPyValue start=+${@+ skip=+\\$+ end=+}+ contained contains=@python + +" Vars metadata flags +syn match bbVarFlagDef "^\([a-zA-Z0-9\-_\.]\+\)\(\[[a-zA-Z0-9\-_\.+]\+\]\)\@=" contains=bbIdentifier nextgroup=bbVarFlagFlag +syn region bbVarFlagFlag matchgroup=bbArrayBrackets start="\[" end="\]\s*\(:=\|=\|.=\|=.|+=\|=+\|?=\)\@=" contained contains=bbIdentifier nextgroup=bbVarEq + +" Includes and requires +syn keyword bbInclude inherit include require contained +syn match bbIncludeRest ".*$" contained contains=bbString,bbVarDeref +syn match bbIncludeLine "^\(inherit\|include\|require\)\s\+" contains=bbInclude nextgroup=bbIncludeRest + +" Add taks and similar +syn keyword bbStatement addtask deltask addhandler after before EXPORT_FUNCTIONS contained +syn match bbStatementRest ".*$" skipwhite contained contains=bbStatement +syn match bbStatementLine "^\(addtask\|deltask\|addhandler\|after\|before\|EXPORT_FUNCTIONS\)\s\+" contains=bbStatement nextgroup=bbStatementRest + +" OE Important Functions +syn keyword bbOEFunctions do_fetch do_unpack do_patch do_configure do_compile do_stage do_install do_package contained + +" Generic Functions +syn match bbFunction "\h[0-9A-Za-z_\-\.]*" display contained contains=bbOEFunctions + +syn keyword bbOverrideOperator append prepend remove contained + +" BitBake shell metadata +syn include @shell syntax/sh.vim +if exists("b:current_syntax") + unlet b:current_syntax +endif +syn keyword bbShFakeRootFlag fakeroot contained +syn match bbShFuncDef "^\(fakeroot\s*\)\?\([\.0-9A-Za-z_:${}\-\.]\+\)\(python\)\@ + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/poky/bitbake/doc/COPYING.MIT b/poky/bitbake/doc/COPYING.MIT new file mode 100644 index 0000000..7e7d574 --- /dev/null +++ b/poky/bitbake/doc/COPYING.MIT @@ -0,0 +1,17 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/poky/bitbake/doc/Makefile b/poky/bitbake/doc/Makefile new file mode 100644 index 0000000..996f01b --- /dev/null +++ b/poky/bitbake/doc/Makefile @@ -0,0 +1,35 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= -W --keep-going -j auto +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build +DESTDIR = final + +ifeq ($(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi),0) +$(error "The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed") +endif + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile clean publish + +publish: Makefile html singlehtml + rm -rf $(BUILDDIR)/$(DESTDIR)/ + mkdir -p $(BUILDDIR)/$(DESTDIR)/ + cp -r $(BUILDDIR)/html/* $(BUILDDIR)/$(DESTDIR)/ + cp $(BUILDDIR)/singlehtml/index.html $(BUILDDIR)/$(DESTDIR)/singleindex.html + sed -i -e 's@index.html#@singleindex.html#@g' $(BUILDDIR)/$(DESTDIR)/singleindex.html + +clean: + @rm -rf $(BUILDDIR) + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/poky/bitbake/doc/README b/poky/bitbake/doc/README new file mode 100644 index 0000000..cdbb237 --- /dev/null +++ b/poky/bitbake/doc/README @@ -0,0 +1,55 @@ +Documentation +============= + +This is the directory that contains the BitBake documentation. + +Manual Organization +=================== + +Folders exist for individual manuals as follows: + +* bitbake-user-manual --- The BitBake User Manual + +Each folder is self-contained regarding content and figures. + +If you want to find HTML versions of the BitBake manuals on the web, +go to https://www.openembedded.org/wiki/Documentation. + +Sphinx +====== + +The BitBake documentation was migrated from the original DocBook +format to Sphinx based documentation for the Yocto Project 3.2 +release. + +Additional information related to the Sphinx migration, and guidelines +for developers willing to contribute to the BitBake documentation can +be found in the Yocto Project Documentation README file: + +https://git.yoctoproject.org/cgit/cgit.cgi/yocto-docs/tree/documentation/README + +How to build the Yocto Project documentation +============================================ + +Sphinx is written in Python. While it might work with Python2, for +obvious reasons, we will only support building the BitBake +documentation with Python3. + +Sphinx might be available in your Linux distro packages repositories, +however it is not recommend using distro packages, as they might be +old versions, especially if you are using an LTS version of your +distro. The recommended method to install Sphinx and all required +dependencies is to use the Python Package Index (pip). + +To install all required packages run: + + $ pip3 install sphinx sphinx_rtd_theme pyyaml + +To build the documentation locally, run: + + $ cd documentation + $ make -f Makefile.sphinx html + +The resulting HTML index page will be _build/html/index.html, and you +can browse your own copy of the locally generated documentation with +your browser. diff --git a/poky/bitbake/doc/_templates/breadcrumbs.html b/poky/bitbake/doc/_templates/breadcrumbs.html new file mode 100644 index 0000000..eb6244b --- /dev/null +++ b/poky/bitbake/doc/_templates/breadcrumbs.html @@ -0,0 +1,14 @@ +{% extends "!breadcrumbs.html" %} + +{% block breadcrumbs %} +
  • + {{ doctype or 'single' }} + {{ release }} +
  • +
  • »
  • + {% for doc in parents %} +
  • {{ doc.title }} »
  • + {% endfor %} +
  • {{ title }}
  • +{% endblock %} + diff --git a/poky/bitbake/doc/_templates/layout.html b/poky/bitbake/doc/_templates/layout.html new file mode 100644 index 0000000..308d5c7 --- /dev/null +++ b/poky/bitbake/doc/_templates/layout.html @@ -0,0 +1,7 @@ +{% extends "!layout.html" %} + +{% block extrabody %} +
    +
    +{% endblock %} + diff --git a/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst new file mode 100644 index 0000000..7a22e96 --- /dev/null +++ b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst @@ -0,0 +1,724 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +========= +Execution +========= + +| + +The primary purpose for running BitBake is to produce some kind of +output such as a single installable package, a kernel, a software +development kit, or even a full, board-specific bootable Linux image, +complete with bootloader, kernel, and root filesystem. Of course, you +can execute the ``bitbake`` command with options that cause it to +execute single tasks, compile single recipe files, capture or clear +data, or simply return information about the execution environment. + +This chapter describes BitBake's execution process from start to finish +when you use it to create an image. The execution process is launched +using the following command form:: + + $ bitbake target + +For information on +the BitBake command and its options, see ":ref:`The BitBake Command +`" section. + +.. note:: + + Prior to executing BitBake, you should take advantage of available + parallel thread execution on your build host by setting the + :term:`BB_NUMBER_THREADS` variable in + your project's ``local.conf`` configuration file. + + A common method to determine this value for your build host is to run + the following:: + + $ grep processor /proc/cpuinfo + + This command returns + the number of processors, which takes into account hyper-threading. + Thus, a quad-core build host with hyper-threading most likely shows + eight processors, which is the value you would then assign to + :term:`BB_NUMBER_THREADS`. + + A possibly simpler solution is that some Linux distributions (e.g. + Debian and Ubuntu) provide the ``ncpus`` command. + +Parsing the Base Configuration Metadata +======================================= + +The first thing BitBake does is parse base configuration metadata. Base +configuration metadata consists of your project's ``bblayers.conf`` file +to determine what layers BitBake needs to recognize, all necessary +``layer.conf`` files (one from each layer), and ``bitbake.conf``. The +data itself is of various types: + +- **Recipes:** Details about particular pieces of software. + +- **Class Data:** An abstraction of common build information (e.g. how to + build a Linux kernel). + +- **Configuration Data:** Machine-specific settings, policy decisions, + and so forth. Configuration data acts as the glue to bind everything + together. + +The ``layer.conf`` files are used to construct key variables such as +:term:`BBPATH` and :term:`BBFILES`. +:term:`BBPATH` is used to search for configuration and class files under the +``conf`` and ``classes`` directories, respectively. :term:`BBFILES` is used +to locate both recipe and recipe append files (``.bb`` and +``.bbappend``). If there is no ``bblayers.conf`` file, it is assumed the +user has set the :term:`BBPATH` and :term:`BBFILES` directly in the environment. + +Next, the ``bitbake.conf`` file is located using the :term:`BBPATH` variable +that was just constructed. The ``bitbake.conf`` file may also include +other configuration files using the ``include`` or ``require`` +directives. + +Prior to parsing configuration files, BitBake looks at certain +variables, including: + +- :term:`BB_ENV_PASSTHROUGH` +- :term:`BB_ENV_PASSTHROUGH_ADDITIONS` +- :term:`BB_PRESERVE_ENV` +- :term:`BB_ORIGENV` +- :term:`BITBAKE_UI` + +The first four variables in this list relate to how BitBake treats shell +environment variables during task execution. By default, BitBake cleans +the environment variables and provides tight control over the shell +execution environment. However, through the use of these first four +variables, you can apply your control regarding the environment +variables allowed to be used by BitBake in the shell during execution of +tasks. See the +":ref:`bitbake-user-manual/bitbake-user-manual-metadata:Passing Information Into the Build Task Environment`" +section and the information about these variables in the variable +glossary for more information on how they work and on how to use them. + +The base configuration metadata is global and therefore affects all +recipes and tasks that are executed. + +BitBake first searches the current working directory for an optional +``conf/bblayers.conf`` configuration file. This file is expected to +contain a :term:`BBLAYERS` variable that is a +space-delimited list of 'layer' directories. Recall that if BitBake +cannot find a ``bblayers.conf`` file, then it is assumed the user has +set the :term:`BBPATH` and :term:`BBFILES` variables directly in the +environment. + +For each directory (layer) in this list, a ``conf/layer.conf`` file is +located and parsed with the :term:`LAYERDIR` variable +being set to the directory where the layer was found. The idea is these +files automatically set up :term:`BBPATH` and other +variables correctly for a given build directory. + +BitBake then expects to find the ``conf/bitbake.conf`` file somewhere in +the user-specified :term:`BBPATH`. That configuration file generally has +include directives to pull in any other metadata such as files specific +to the architecture, the machine, the local environment, and so forth. + +Only variable definitions and include directives are allowed in BitBake +``.conf`` files. Some variables directly influence BitBake's behavior. +These variables might have been set from the environment depending on +the environment variables previously mentioned or set in the +configuration files. The ":ref:`bitbake-user-manual/bitbake-user-manual-ref-variables:Variables Glossary`" +chapter presents a full list of +variables. + +After parsing configuration files, BitBake uses its rudimentary +inheritance mechanism, which is through class files, to inherit some +standard classes. BitBake parses a class when the inherit directive +responsible for getting that class is encountered. + +The ``base.bbclass`` file is always included. Other classes that are +specified in the configuration using the +:term:`INHERIT` variable are also included. BitBake +searches for class files in a ``classes`` subdirectory under the paths +in :term:`BBPATH` in the same way as configuration files. + +A good way to get an idea of the configuration files and the class files +used in your execution environment is to run the following BitBake +command:: + + $ bitbake -e > mybb.log + +Examining the top of the ``mybb.log`` +shows you the many configuration files and class files used in your +execution environment. + +.. note:: + + You need to be aware of how BitBake parses curly braces. If a recipe + uses a closing curly brace within the function and the character has + no leading spaces, BitBake produces a parsing error. If you use a + pair of curly braces in a shell function, the closing curly brace + must not be located at the start of the line without leading spaces. + + Here is an example that causes BitBake to produce a parsing error:: + + fakeroot create_shar() { + cat << "EOF" > ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.sh + usage() + { + echo "test" + ###### The following "}" at the start of the line causes a parsing error ###### + } + EOF + } + + Writing the recipe this way avoids the error: + fakeroot create_shar() { + cat << "EOF" > ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.sh + usage() + { + echo "test" + ###### The following "}" with a leading space at the start of the line avoids the error ###### + } + EOF + } + +Locating and Parsing Recipes +============================ + +During the configuration phase, BitBake will have set +:term:`BBFILES`. BitBake now uses it to construct a +list of recipes to parse, along with any append files (``.bbappend``) to +apply. :term:`BBFILES` is a space-separated list of available files and +supports wildcards. An example would be:: + + BBFILES = "/path/to/bbfiles/*.bb /path/to/appends/*.bbappend" + +BitBake parses each +recipe and append file located with :term:`BBFILES` and stores the values of +various variables into the datastore. + +.. note:: + + Append files are applied in the order they are encountered in BBFILES. + +For each file, a fresh copy of the base configuration is made, then the +recipe is parsed line by line. Any inherit statements cause BitBake to +find and then parse class files (``.bbclass``) using +:term:`BBPATH` as the search path. Finally, BitBake +parses in order any append files found in :term:`BBFILES`. + +One common convention is to use the recipe filename to define pieces of +metadata. For example, in ``bitbake.conf`` the recipe name and version +are used to set the variables :term:`PN` and +:term:`PV`:: + + PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0] or 'defaultpkgname'}" + PV = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or '1.0'}" + +In this example, a recipe called "something_1.2.3.bb" would set +:term:`PN` to "something" and :term:`PV` to "1.2.3". + +By the time parsing is complete for a recipe, BitBake has a list of +tasks that the recipe defines and a set of data consisting of keys and +values as well as dependency information about the tasks. + +BitBake does not need all of this information. It only needs a small +subset of the information to make decisions about the recipe. +Consequently, BitBake caches the values in which it is interested and +does not store the rest of the information. Experience has shown it is +faster to re-parse the metadata than to try and write it out to the disk +and then reload it. + +Where possible, subsequent BitBake commands reuse this cache of recipe +information. The validity of this cache is determined by first computing +a checksum of the base configuration data (see +:term:`BB_HASHCONFIG_IGNORE_VARS`) and +then checking if the checksum matches. If that checksum matches what is +in the cache and the recipe and class files have not changed, BitBake is +able to use the cache. BitBake then reloads the cached information about +the recipe instead of reparsing it from scratch. + +Recipe file collections exist to allow the user to have multiple +repositories of ``.bb`` files that contain the same exact package. For +example, one could easily use them to make one's own local copy of an +upstream repository, but with custom modifications that one does not +want upstream. Here is an example:: + + BBFILES = "/stuff/openembedded/*/*.bb /stuff/openembedded.modified/*/*.bb" + BBFILE_COLLECTIONS = "upstream local" + BBFILE_PATTERN_upstream = "^/stuff/openembedded/" + BBFILE_PATTERN_local = "^/stuff/openembedded.modified/" + BBFILE_PRIORITY_upstream = "5" + BBFILE_PRIORITY_local = "10" + +.. note:: + + The layers mechanism is now the preferred method of collecting code. + While the collections code remains, its main use is to set layer + priorities and to deal with overlap (conflicts) between layers. + +.. _bb-bitbake-providers: + +Providers +========= + +Assuming BitBake has been instructed to execute a target and that all +the recipe files have been parsed, BitBake starts to figure out how to +build the target. BitBake looks through the :term:`PROVIDES` list for each +of the recipes. A :term:`PROVIDES` list is the list of names by which the +recipe can be known. Each recipe's :term:`PROVIDES` list is created +implicitly through the recipe's :term:`PN` variable and +explicitly through the recipe's :term:`PROVIDES` +variable, which is optional. + +When a recipe uses :term:`PROVIDES`, that recipe's functionality can be +found under an alternative name or names other than the implicit :term:`PN` +name. As an example, suppose a recipe named ``keyboard_1.0.bb`` +contained the following:: + + PROVIDES += "fullkeyboard" + +The :term:`PROVIDES` +list for this recipe becomes "keyboard", which is implicit, and +"fullkeyboard", which is explicit. Consequently, the functionality found +in ``keyboard_1.0.bb`` can be found under two different names. + +.. _bb-bitbake-preferences: + +Preferences +=========== + +The :term:`PROVIDES` list is only part of the solution for figuring out a +target's recipes. Because targets might have multiple providers, BitBake +needs to prioritize providers by determining provider preferences. + +A common example in which a target has multiple providers is +"virtual/kernel", which is on the :term:`PROVIDES` list for each kernel +recipe. Each machine often selects the best kernel provider by using a +line similar to the following in the machine configuration file:: + + PREFERRED_PROVIDER_virtual/kernel = "linux-yocto" + +The default :term:`PREFERRED_PROVIDER` is the provider +with the same name as the target. BitBake iterates through each target +it needs to build and resolves them and their dependencies using this +process. + +Understanding how providers are chosen is made complicated by the fact +that multiple versions might exist for a given provider. BitBake +defaults to the highest version of a provider. Version comparisons are +made using the same method as Debian. You can use the +:term:`PREFERRED_VERSION` variable to +specify a particular version. You can influence the order by using the +:term:`DEFAULT_PREFERENCE` variable. + +By default, files have a preference of "0". Setting +:term:`DEFAULT_PREFERENCE` to "-1" makes the recipe unlikely to be used +unless it is explicitly referenced. Setting :term:`DEFAULT_PREFERENCE` to +"1" makes it likely the recipe is used. :term:`PREFERRED_VERSION` overrides +any :term:`DEFAULT_PREFERENCE` setting. :term:`DEFAULT_PREFERENCE` is often used +to mark newer and more experimental recipe versions until they have +undergone sufficient testing to be considered stable. + +When there are multiple "versions" of a given recipe, BitBake defaults +to selecting the most recent version, unless otherwise specified. If the +recipe in question has a +:term:`DEFAULT_PREFERENCE` set lower than +the other recipes (default is 0), then it will not be selected. This +allows the person or persons maintaining the repository of recipe files +to specify their preference for the default selected version. +Additionally, the user can specify their preferred version. + +If the first recipe is named ``a_1.1.bb``, then the +:term:`PN` variable will be set to "a", and the +:term:`PV` variable will be set to 1.1. + +Thus, if a recipe named ``a_1.2.bb`` exists, BitBake will choose 1.2 by +default. However, if you define the following variable in a ``.conf`` +file that BitBake parses, you can change that preference:: + + PREFERRED_VERSION_a = "1.1" + +.. note:: + + It is common for a recipe to provide two versions -- a stable, + numbered (and preferred) version, and a version that is automatically + checked out from a source code repository that is considered more + "bleeding edge" but can be selected only explicitly. + + For example, in the OpenEmbedded codebase, there is a standard, + versioned recipe file for BusyBox, ``busybox_1.22.1.bb``, but there + is also a Git-based version, ``busybox_git.bb``, which explicitly + contains the line :: + + DEFAULT_PREFERENCE = "-1" + + to ensure that the + numbered, stable version is always preferred unless the developer + selects otherwise. + +.. _bb-bitbake-dependencies: + +Dependencies +============ + +Each target BitBake builds consists of multiple tasks such as ``fetch``, +``unpack``, ``patch``, ``configure``, and ``compile``. For best +performance on multi-core systems, BitBake considers each task as an +independent entity with its own set of dependencies. + +Dependencies are defined through several variables. You can find +information about variables BitBake uses in the +:doc:`bitbake-user-manual-ref-variables` near the end of this manual. At a +basic level, it is sufficient to know that BitBake uses the +:term:`DEPENDS` and +:term:`RDEPENDS` variables when calculating +dependencies. + +For more information on how BitBake handles dependencies, see the +:ref:`bitbake-user-manual/bitbake-user-manual-metadata:Dependencies` +section. + +.. _ref-bitbake-tasklist: + +The Task List +============= + +Based on the generated list of providers and the dependency information, +BitBake can now calculate exactly what tasks it needs to run and in what +order it needs to run them. The +:ref:`bitbake-user-manual/bitbake-user-manual-execution:executing tasks` +section has more information on how BitBake chooses which task to +execute next. + +The build now starts with BitBake forking off threads up to the limit +set in the :term:`BB_NUMBER_THREADS` +variable. BitBake continues to fork threads as long as there are tasks +ready to run, those tasks have all their dependencies met, and the +thread threshold has not been exceeded. + +It is worth noting that you can greatly speed up the build time by +properly setting the :term:`BB_NUMBER_THREADS` variable. + +As each task completes, a timestamp is written to the directory +specified by the :term:`STAMP` variable. On subsequent +runs, BitBake looks in the build directory within ``tmp/stamps`` and +does not rerun tasks that are already completed unless a timestamp is +found to be invalid. Currently, invalid timestamps are only considered +on a per recipe file basis. So, for example, if the configure stamp has +a timestamp greater than the compile timestamp for a given target, then +the compile task would rerun. Running the compile task again, however, +has no effect on other providers that depend on that target. + +The exact format of the stamps is partly configurable. In modern +versions of BitBake, a hash is appended to the stamp so that if the +configuration changes, the stamp becomes invalid and the task is +automatically rerun. This hash, or signature used, is governed by the +signature policy that is configured (see the +:ref:`bitbake-user-manual/bitbake-user-manual-execution:checksums (signatures)` +section for information). It is also +possible to append extra metadata to the stamp using the +``[stamp-extra-info]`` task flag. For example, OpenEmbedded uses this +flag to make some tasks machine-specific. + +.. note:: + + Some tasks are marked as "nostamp" tasks. No timestamp file is + created when these tasks are run. Consequently, "nostamp" tasks are + always rerun. + +For more information on tasks, see the +:ref:`bitbake-user-manual/bitbake-user-manual-metadata:tasks` section. + +Executing Tasks +=============== + +Tasks can be either a shell task or a Python task. For shell tasks, +BitBake writes a shell script to +``${``\ :term:`T`\ ``}/run.do_taskname.pid`` and then +executes the script. The generated shell script contains all the +exported variables, and the shell functions with all variables expanded. +Output from the shell script goes to the file +``${``\ :term:`T`\ ``}/log.do_taskname.pid``. Looking at the expanded shell functions in +the run file and the output in the log files is a useful debugging +technique. + +For Python tasks, BitBake executes the task internally and logs +information to the controlling terminal. Future versions of BitBake will +write the functions to files similar to the way shell tasks are handled. +Logging will be handled in a way similar to shell tasks as well. + +The order in which BitBake runs the tasks is controlled by its task +scheduler. It is possible to configure the scheduler and define custom +implementations for specific use cases. For more information, see these +variables that control the behavior: + +- :term:`BB_SCHEDULER` + +- :term:`BB_SCHEDULERS` + +It is possible to have functions run before and after a task's main +function. This is done using the ``[prefuncs]`` and ``[postfuncs]`` +flags of the task that lists the functions to run. + +.. _checksums: + +Checksums (Signatures) +====================== + +A checksum is a unique signature of a task's inputs. The signature of a +task can be used to determine if a task needs to be run. Because it is a +change in a task's inputs that triggers running the task, BitBake needs +to detect all the inputs to a given task. For shell tasks, this turns +out to be fairly easy because BitBake generates a "run" shell script for +each task and it is possible to create a checksum that gives you a good +idea of when the task's data changes. + +To complicate the problem, some things should not be included in the +checksum. First, there is the actual specific build path of a given task +- the working directory. It does not matter if the working directory +changes because it should not affect the output for target packages. The +simplistic approach for excluding the working directory is to set it to +some fixed value and create the checksum for the "run" script. BitBake +goes one step better and uses the +:term:`BB_BASEHASH_IGNORE_VARS` variable +to define a list of variables that should never be included when +generating the signatures. + +Another problem results from the "run" scripts containing functions that +might or might not get called. The incremental build solution contains +code that figures out dependencies between shell functions. This code is +used to prune the "run" scripts down to the minimum set, thereby +alleviating this problem and making the "run" scripts much more readable +as a bonus. + +So far we have solutions for shell scripts. What about Python tasks? The +same approach applies even though these tasks are more difficult. The +process needs to figure out what variables a Python function accesses +and what functions it calls. Again, the incremental build solution +contains code that first figures out the variable and function +dependencies, and then creates a checksum for the data used as the input +to the task. + +Like the working directory case, situations exist where dependencies +should be ignored. For these cases, you can instruct the build process +to ignore a dependency by using a line like the following:: + + PACKAGE_ARCHS[vardepsexclude] = "MACHINE" + +This example ensures that the +``PACKAGE_ARCHS`` variable does not depend on the value of ``MACHINE``, +even if it does reference it. + +Equally, there are cases where we need to add dependencies BitBake is +not able to find. You can accomplish this by using a line like the +following:: + + PACKAGE_ARCHS[vardeps] = "MACHINE" + +This example explicitly +adds the ``MACHINE`` variable as a dependency for ``PACKAGE_ARCHS``. + +Consider a case with in-line Python, for example, where BitBake is not +able to figure out dependencies. When running in debug mode (i.e. using +``-DDD``), BitBake produces output when it discovers something for which +it cannot figure out dependencies. + +Thus far, this section has limited discussion to the direct inputs into +a task. Information based on direct inputs is referred to as the +"basehash" in the code. However, there is still the question of a task's +indirect inputs --- the things that were already built and present in the +build directory. The checksum (or signature) for a particular task needs +to add the hashes of all the tasks on which the particular task depends. +Choosing which dependencies to add is a policy decision. However, the +effect is to generate a master checksum that combines the basehash and +the hashes of the task's dependencies. + +At the code level, there are a variety of ways both the basehash and the +dependent task hashes can be influenced. Within the BitBake +configuration file, we can give BitBake some extra information to help +it construct the basehash. The following statement effectively results +in a list of global variable dependency excludes --- variables never +included in any checksum. This example uses variables from OpenEmbedded +to help illustrate the concept:: + + BB_BASEHASH_IGNORE_VARS ?= "TMPDIR FILE PATH PWD BB_TASKHASH BBPATH DL_DIR \ + SSTATE_DIR THISDIR FILESEXTRAPATHS FILE_DIRNAME HOME LOGNAME SHELL \ + USER FILESPATH STAGING_DIR_HOST STAGING_DIR_TARGET COREBASE PRSERV_HOST \ + PRSERV_DUMPDIR PRSERV_DUMPFILE PRSERV_LOCKDOWN PARALLEL_MAKE \ + CCACHE_DIR EXTERNAL_TOOLCHAIN CCACHE CCACHE_DISABLE LICENSE_PATH SDKPKGSUFFIX" + +The previous example excludes the work directory, which is part of +``TMPDIR``. + +The rules for deciding which hashes of dependent tasks to include +through dependency chains are more complex and are generally +accomplished with a Python function. The code in +``meta/lib/oe/sstatesig.py`` shows two examples of this and also +illustrates how you can insert your own policy into the system if so +desired. This file defines the two basic signature generators +OpenEmbedded-Core uses: "OEBasic" and "OEBasicHash". By default, there +is a dummy "noop" signature handler enabled in BitBake. This means that +behavior is unchanged from previous versions. ``OE-Core`` uses the +"OEBasicHash" signature handler by default through this setting in the +``bitbake.conf`` file:: + + BB_SIGNATURE_HANDLER ?= "OEBasicHash" + +The "OEBasicHash" :term:`BB_SIGNATURE_HANDLER` is the same as the "OEBasic" +version but adds the task hash to the stamp files. This results in any +metadata change that changes the task hash, automatically causing the +task to be run again. This removes the need to bump +:term:`PR` values, and changes to metadata automatically +ripple across the build. + +It is also worth noting that the end result of these signature +generators is to make some dependency and hash information available to +the build. This information includes: + +- ``BB_BASEHASH_task-``\ *taskname*: The base hashes for each task in the + recipe. + +- ``BB_BASEHASH_``\ *filename:taskname*: The base hashes for each + dependent task. + +- :term:`BB_TASKHASH`: The hash of the currently running task. + +It is worth noting that BitBake's "-S" option lets you debug BitBake's +processing of signatures. The options passed to -S allow different +debugging modes to be used, either using BitBake's own debug functions +or possibly those defined in the metadata/signature handler itself. The +simplest parameter to pass is "none", which causes a set of signature +information to be written out into ``STAMPS_DIR`` corresponding to the +targets specified. The other currently available parameter is +"printdiff", which causes BitBake to try to establish the closest +signature match it can (e.g. in the sstate cache) and then run +``bitbake-diffsigs`` over the matches to determine the stamps and delta +where these two stamp trees diverge. + +.. note:: + + It is likely that future versions of BitBake will provide other + signature handlers triggered through additional "-S" parameters. + +You can find more information on checksum metadata in the +:ref:`bitbake-user-manual/bitbake-user-manual-metadata:task checksums and setscene` +section. + +Setscene +======== + +The setscene process enables BitBake to handle "pre-built" artifacts. +The ability to handle and reuse these artifacts allows BitBake the +luxury of not having to build something from scratch every time. +Instead, BitBake can use, when possible, existing build artifacts. + +BitBake needs to have reliable data indicating whether or not an +artifact is compatible. Signatures, described in the previous section, +provide an ideal way of representing whether an artifact is compatible. +If a signature is the same, an object can be reused. + +If an object can be reused, the problem then becomes how to replace a +given task or set of tasks with the pre-built artifact. BitBake solves +the problem with the "setscene" process. + +When BitBake is asked to build a given target, before building anything, +it first asks whether cached information is available for any of the +targets it's building, or any of the intermediate targets. If cached +information is available, BitBake uses this information instead of +running the main tasks. + +BitBake first calls the function defined by the +:term:`BB_HASHCHECK_FUNCTION` variable +with a list of tasks and corresponding hashes it wants to build. This +function is designed to be fast and returns a list of the tasks for +which it believes in can obtain artifacts. + +Next, for each of the tasks that were returned as possibilities, BitBake +executes a setscene version of the task that the possible artifact +covers. Setscene versions of a task have the string "_setscene" appended +to the task name. So, for example, the task with the name ``xxx`` has a +setscene task named ``xxx_setscene``. The setscene version of the task +executes and provides the necessary artifacts returning either success +or failure. + +As previously mentioned, an artifact can cover more than one task. For +example, it is pointless to obtain a compiler if you already have the +compiled binary. To handle this, BitBake calls the +:term:`BB_SETSCENE_DEPVALID` function for +each successful setscene task to know whether or not it needs to obtain +the dependencies of that task. + +You can find more information on setscene metadata in the +:ref:`bitbake-user-manual/bitbake-user-manual-metadata:task checksums and setscene` +section. + +Logging +======= + +In addition to the standard command line option to control how verbose +builds are when execute, bitbake also supports user defined +configuration of the `Python +logging `__ facilities +through the :term:`BB_LOGCONFIG` variable. This +variable defines a json or yaml `logging +configuration `__ +that will be intelligently merged into the default configuration. The +logging configuration is merged using the following rules: + +- The user defined configuration will completely replace the default + configuration if top level key ``bitbake_merge`` is set to the value + ``False``. In this case, all other rules are ignored. + +- The user configuration must have a top level ``version`` which must + match the value of the default configuration. + +- Any keys defined in the ``handlers``, ``formatters``, or ``filters``, + will be merged into the same section in the default configuration, + with the user specified keys taking replacing a default one if there + is a conflict. In practice, this means that if both the default + configuration and user configuration specify a handler named + ``myhandler``, the user defined one will replace the default. To + prevent the user from inadvertently replacing a default handler, + formatter, or filter, all of the default ones are named with a prefix + of "``BitBake.``" + +- If a logger is defined by the user with the key ``bitbake_merge`` set + to ``False``, that logger will be completely replaced by user + configuration. In this case, no other rules will apply to that + logger. + +- All user defined ``filter`` and ``handlers`` properties for a given + logger will be merged with corresponding properties from the default + logger. For example, if the user configuration adds a filter called + ``myFilter`` to the ``BitBake.SigGen``, and the default configuration + adds a filter called ``BitBake.defaultFilter``, both filters will be + applied to the logger + +As an example, consider the following user logging configuration file +which logs all Hash Equivalence related messages of VERBOSE or higher to +a file called ``hashequiv.log`` :: + + { + "version": 1, + "handlers": { + "autobuilderlog": { + "class": "logging.FileHandler", + "formatter": "logfileFormatter", + "level": "DEBUG", + "filename": "hashequiv.log", + "mode": "w" + } + }, + "formatters": { + "logfileFormatter": { + "format": "%(name)s: %(levelname)s: %(message)s" + } + }, + "loggers": { + "BitBake.SigGen.HashEquiv": { + "level": "VERBOSE", + "handlers": ["autobuilderlog"] + }, + "BitBake.RunQueue.HashEquiv": { + "level": "VERBOSE", + "handlers": ["autobuilderlog"] + } + } + } diff --git a/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst new file mode 100644 index 0000000..519aec9 --- /dev/null +++ b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst @@ -0,0 +1,806 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +===================== +File Download Support +===================== + +| + +BitBake's fetch module is a standalone piece of library code that deals +with the intricacies of downloading source code and files from remote +systems. Fetching source code is one of the cornerstones of building +software. As such, this module forms an important part of BitBake. + +The current fetch module is called "fetch2" and refers to the fact that +it is the second major version of the API. The original version is +obsolete and has been removed from the codebase. Thus, in all cases, +"fetch" refers to "fetch2" in this manual. + +The Download (Fetch) +==================== + +BitBake takes several steps when fetching source code or files. The +fetcher codebase deals with two distinct processes in order: obtaining +the files from somewhere (cached or otherwise) and then unpacking those +files into a specific location and perhaps in a specific way. Getting +and unpacking the files is often optionally followed by patching. +Patching, however, is not covered by this module. + +The code to execute the first part of this process, a fetch, looks +something like the following:: + + src_uri = (d.getVar('SRC_URI') or "").split() + fetcher = bb.fetch2.Fetch(src_uri, d) + fetcher.download() + +This code sets up an instance of the fetch class. The instance uses a +space-separated list of URLs from the :term:`SRC_URI` +variable and then calls the ``download`` method to download the files. + +The instantiation of the fetch class is usually followed by:: + + rootdir = l.getVar('WORKDIR') + fetcher.unpack(rootdir) + +This code unpacks the downloaded files to the specified by ``WORKDIR``. + +.. note:: + + For convenience, the naming in these examples matches the variables + used by OpenEmbedded. If you want to see the above code in action, + examine the OpenEmbedded class file ``base.bbclass`` + . + +The :term:`SRC_URI` and ``WORKDIR`` variables are not hardcoded into the +fetcher, since those fetcher methods can be (and are) called with +different variable names. In OpenEmbedded for example, the shared state +(sstate) code uses the fetch module to fetch the sstate files. + +When the ``download()`` method is called, BitBake tries to resolve the +URLs by looking for source files in a specific search order: + +- *Pre-mirror Sites:* BitBake first uses pre-mirrors to try and find + source files. These locations are defined using the + :term:`PREMIRRORS` variable. + +- *Source URI:* If pre-mirrors fail, BitBake uses the original URL (e.g + from :term:`SRC_URI`). + +- *Mirror Sites:* If fetch failures occur, BitBake next uses mirror + locations as defined by the :term:`MIRRORS` variable. + +For each URL passed to the fetcher, the fetcher calls the submodule that +handles that particular URL type. This behavior can be the source of +some confusion when you are providing URLs for the :term:`SRC_URI` variable. +Consider the following two URLs:: + + https://git.yoctoproject.org/git/poky;protocol=git + git://git.yoctoproject.org/git/poky;protocol=http + +In the former case, the URL is passed to the ``wget`` fetcher, which does not +understand "git". Therefore, the latter case is the correct form since the Git +fetcher does know how to use HTTP as a transport. + +Here are some examples that show commonly used mirror definitions:: + + PREMIRRORS ?= "\ + bzr://.*/.\* http://somemirror.org/sources/ \ + cvs://.*/.\* http://somemirror.org/sources/ \ + git://.*/.\* http://somemirror.org/sources/ \ + hg://.*/.\* http://somemirror.org/sources/ \ + osc://.*/.\* http://somemirror.org/sources/ \ + p4://.*/.\* http://somemirror.org/sources/ \ + svn://.*/.\* http://somemirror.org/sources/" + + MIRRORS =+ "\ + ftp://.*/.\* http://somemirror.org/sources/ \ + http://.*/.\* http://somemirror.org/sources/ \ + https://.*/.\* http://somemirror.org/sources/" + +It is useful to note that BitBake +supports cross-URLs. It is possible to mirror a Git repository on an +HTTP server as a tarball. This is what the ``git://`` mapping in the +previous example does. + +Since network accesses are slow, BitBake maintains a cache of files +downloaded from the network. Any source files that are not local (i.e. +downloaded from the Internet) are placed into the download directory, +which is specified by the :term:`DL_DIR` variable. + +File integrity is of key importance for reproducing builds. For +non-local archive downloads, the fetcher code can verify SHA-256 and MD5 +checksums to ensure the archives have been downloaded correctly. You can +specify these checksums by using the :term:`SRC_URI` variable with the +appropriate varflags as follows:: + + SRC_URI[md5sum] = "value" + SRC_URI[sha256sum] = "value" + +You can also specify the checksums as +parameters on the :term:`SRC_URI` as shown below:: + + SRC_URI = "http://example.com/foobar.tar.bz2;md5sum=4a8e0f237e961fd7785d19d07fdb994d" + +If multiple URIs exist, you can specify the checksums either directly as +in the previous example, or you can name the URLs. The following syntax +shows how you name the URIs:: + + SRC_URI = "http://example.com/foobar.tar.bz2;name=foo" + SRC_URI[foo.md5sum] = 4a8e0f237e961fd7785d19d07fdb994d + +After a file has been downloaded and +has had its checksum checked, a ".done" stamp is placed in :term:`DL_DIR`. +BitBake uses this stamp during subsequent builds to avoid downloading or +comparing a checksum for the file again. + +.. note:: + + It is assumed that local storage is safe from data corruption. If + this were not the case, there would be bigger issues to worry about. + +If :term:`BB_STRICT_CHECKSUM` is set, any +download without a checksum triggers an error message. The +:term:`BB_NO_NETWORK` variable can be used to +make any attempted network access a fatal error, which is useful for +checking that mirrors are complete as well as other things. + +If :term:`BB_CHECK_SSL_CERTS` is set to ``0`` then SSL certificate checking will +be disabled. This variable defaults to ``1`` so SSL certificates are normally +checked. + +.. _bb-the-unpack: + +The Unpack +========== + +The unpack process usually immediately follows the download. For all +URLs except Git URLs, BitBake uses the common ``unpack`` method. + +A number of parameters exist that you can specify within the URL to +govern the behavior of the unpack stage: + +- *unpack:* Controls whether the URL components are unpacked. If set to + "1", which is the default, the components are unpacked. If set to + "0", the unpack stage leaves the file alone. This parameter is useful + when you want an archive to be copied in and not be unpacked. + +- *dos:* Applies to ``.zip`` and ``.jar`` files and specifies whether + to use DOS line ending conversion on text files. + +- *striplevel:* Strip specified number of leading components (levels) + from file names on extraction + +- *subdir:* Unpacks the specific URL to the specified subdirectory + within the root directory. + +The unpack call automatically decompresses and extracts files with ".Z", +".z", ".gz", ".xz", ".zip", ".jar", ".ipk", ".rpm". ".srpm", ".deb" and +".bz2" extensions as well as various combinations of tarball extensions. + +As mentioned, the Git fetcher has its own unpack method that is +optimized to work with Git trees. Basically, this method works by +cloning the tree into the final directory. The process is completed +using references so that there is only one central copy of the Git +metadata needed. + +.. _bb-fetchers: + +Fetchers +======== + +As mentioned earlier, the URL prefix determines which fetcher submodule +BitBake uses. Each submodule can support different URL parameters, which +are described in the following sections. + +.. _local-file-fetcher: + +Local file fetcher (``file://``) +-------------------------------- + +This submodule handles URLs that begin with ``file://``. The filename +you specify within the URL can be either an absolute or relative path to +a file. If the filename is relative, the contents of the +:term:`FILESPATH` variable is used in the same way +``PATH`` is used to find executables. If the file cannot be found, it is +assumed that it is available in :term:`DL_DIR` by the +time the ``download()`` method is called. + +If you specify a directory, the entire directory is unpacked. + +Here are a couple of example URLs, the first relative and the second +absolute:: + + SRC_URI = "file://relativefile.patch" + SRC_URI = "file:///Users/ich/very_important_software" + +.. _http-ftp-fetcher: + +HTTP/FTP wget fetcher (``http://``, ``ftp://``, ``https://``) +------------------------------------------------------------- + +This fetcher obtains files from web and FTP servers. Internally, the +fetcher uses the wget utility. + +The executable and parameters used are specified by the +``FETCHCMD_wget`` variable, which defaults to sensible values. The +fetcher supports a parameter "downloadfilename" that allows the name of +the downloaded file to be specified. Specifying the name of the +downloaded file is useful for avoiding collisions in +:term:`DL_DIR` when dealing with multiple files that +have the same name. + +If a username and password are specified in the ``SRC_URI``, a Basic +Authorization header will be added to each request, including across redirects. +To instead limit the Authorization header to the first request, add +"redirectauth=0" to the list of parameters. + +Some example URLs are as follows:: + + SRC_URI = "http://oe.handhelds.org/not_there.aac" + SRC_URI = "ftp://oe.handhelds.org/not_there_as_well.aac" + SRC_URI = "ftp://you@oe.handhelds.org/home/you/secret.plan" + +.. note:: + + Because URL parameters are delimited by semi-colons, this can + introduce ambiguity when parsing URLs that also contain semi-colons, + for example:: + + SRC_URI = "http://abc123.org/git/?p=gcc/gcc.git;a=snapshot;h=a5dd47" + + + Such URLs should should be modified by replacing semi-colons with '&' + characters:: + + SRC_URI = "http://abc123.org/git/?p=gcc/gcc.git&a=snapshot&h=a5dd47" + + + In most cases this should work. Treating semi-colons and '&' in + queries identically is recommended by the World Wide Web Consortium + (W3C). Note that due to the nature of the URL, you may have to + specify the name of the downloaded file as well:: + + SRC_URI = "http://abc123.org/git/?p=gcc/gcc.git&a=snapshot&h=a5dd47;downloadfilename=myfile.bz2" + + +.. _cvs-fetcher: + +CVS fetcher (``(cvs://``) +------------------------- + +This submodule handles checking out files from the CVS version control +system. You can configure it using a number of different variables: + +- :term:`FETCHCMD_cvs `: The name of the executable to use when running + the ``cvs`` command. This name is usually "cvs". + +- :term:`SRCDATE`: The date to use when fetching the CVS source code. A + special value of "now" causes the checkout to be updated on every + build. + +- :term:`CVSDIR`: Specifies where a temporary + checkout is saved. The location is often ``DL_DIR/cvs``. + +- CVS_PROXY_HOST: The name to use as a "proxy=" parameter to the + ``cvs`` command. + +- CVS_PROXY_PORT: The port number to use as a "proxyport=" + parameter to the ``cvs`` command. + +As well as the standard username and password URL syntax, you can also +configure the fetcher with various URL parameters: + +The supported parameters are as follows: + +- *"method":* The protocol over which to communicate with the CVS + server. By default, this protocol is "pserver". If "method" is set to + "ext", BitBake examines the "rsh" parameter and sets ``CVS_RSH``. You + can use "dir" for local directories. + +- *"module":* Specifies the module to check out. You must supply this + parameter. + +- *"tag":* Describes which CVS TAG should be used for the checkout. By + default, the TAG is empty. + +- *"date":* Specifies a date. If no "date" is specified, the + :term:`SRCDATE` of the configuration is used to + checkout a specific date. The special value of "now" causes the + checkout to be updated on every build. + +- *"localdir":* Used to rename the module. Effectively, you are + renaming the output directory to which the module is unpacked. You + are forcing the module into a special directory relative to + :term:`CVSDIR`. + +- *"rsh":* Used in conjunction with the "method" parameter. + +- *"scmdata":* Causes the CVS metadata to be maintained in the tarball + the fetcher creates when set to "keep". The tarball is expanded into + the work directory. By default, the CVS metadata is removed. + +- *"fullpath":* Controls whether the resulting checkout is at the + module level, which is the default, or is at deeper paths. + +- *"norecurse":* Causes the fetcher to only checkout the specified + directory with no recurse into any subdirectories. + +- *"port":* The port to which the CVS server connects. + +Some example URLs are as follows:: + + SRC_URI = "cvs://CVSROOT;module=mymodule;tag=some-version;method=ext" + SRC_URI = "cvs://CVSROOT;module=mymodule;date=20060126;localdir=usethat" + +.. _svn-fetcher: + +Subversion (SVN) Fetcher (``svn://``) +------------------------------------- + +This fetcher submodule fetches code from the Subversion source control +system. The executable used is specified by ``FETCHCMD_svn``, which +defaults to "svn". The fetcher's temporary working directory is set by +:term:`SVNDIR`, which is usually ``DL_DIR/svn``. + +The supported parameters are as follows: + +- *"module":* The name of the svn module to checkout. You must provide + this parameter. You can think of this parameter as the top-level + directory of the repository data you want. + +- *"path_spec":* A specific directory in which to checkout the + specified svn module. + +- *"protocol":* The protocol to use, which defaults to "svn". If + "protocol" is set to "svn+ssh", the "ssh" parameter is also used. + +- *"rev":* The revision of the source code to checkout. + +- *"scmdata":* Causes the ".svn" directories to be available during + compile-time when set to "keep". By default, these directories are + removed. + +- *"ssh":* An optional parameter used when "protocol" is set to + "svn+ssh". You can use this parameter to specify the ssh program used + by svn. + +- *"transportuser":* When required, sets the username for the + transport. By default, this parameter is empty. The transport + username is different than the username used in the main URL, which + is passed to the subversion command. + +Following are three examples using svn:: + + SRC_URI = "svn://myrepos/proj1;module=vip;protocol=http;rev=667" + SRC_URI = "svn://myrepos/proj1;module=opie;protocol=svn+ssh" + SRC_URI = "svn://myrepos/proj1;module=trunk;protocol=http;path_spec=${MY_DIR}/proj1" + +.. _git-fetcher: + +Git Fetcher (``git://``) +------------------------ + +This fetcher submodule fetches code from the Git source control system. +The fetcher works by creating a bare clone of the remote into +:term:`GITDIR`, which is usually ``DL_DIR/git2``. This +bare clone is then cloned into the work directory during the unpack +stage when a specific tree is checked out. This is done using alternates +and by reference to minimize the amount of duplicate data on the disk +and make the unpack process fast. The executable used can be set with +``FETCHCMD_git``. + +This fetcher supports the following parameters: + +- *"protocol":* The protocol used to fetch the files. The default is + "git" when a hostname is set. If a hostname is not set, the Git + protocol is "file". You can also use "http", "https", "ssh" and + "rsync". + + .. note:: + + When ``protocol`` is "ssh", the URL expected in :term:`SRC_URI` differs + from the one that is typically passed to ``git clone`` command and provided + by the Git server to fetch from. For example, the URL returned by GitLab + server for ``mesa`` when cloning over SSH is + ``git@gitlab.freedesktop.org:mesa/mesa.git``, however the expected URL in + :term:`SRC_URI` is the following:: + + SRC_URI = "git://git@gitlab.freedesktop.org/mesa/mesa.git;branch=main;protocol=ssh;..." + + Note the ``:`` character changed for a ``/`` before the path to the project. + +- *"nocheckout":* Tells the fetcher to not checkout source code when + unpacking when set to "1". Set this option for the URL where there is + a custom routine to checkout code. The default is "0". + +- *"rebaseable":* Indicates that the upstream Git repository can be + rebased. You should set this parameter to "1" if revisions can become + detached from branches. In this case, the source mirror tarball is + done per revision, which has a loss of efficiency. Rebasing the + upstream Git repository could cause the current revision to disappear + from the upstream repository. This option reminds the fetcher to + preserve the local cache carefully for future use. The default value + for this parameter is "0". + +- *"nobranch":* Tells the fetcher to not check the SHA validation for + the branch when set to "1". The default is "0". Set this option for + the recipe that refers to the commit that is valid for any namespace + (branch, tag, ...) instead of the branch. + +- *"bareclone":* Tells the fetcher to clone a bare clone into the + destination directory without checking out a working tree. Only the + raw Git metadata is provided. This parameter implies the "nocheckout" + parameter as well. + +- *"branch":* The branch(es) of the Git tree to clone. Unless + "nobranch" is set to "1", this is a mandatory parameter. The number of + branch parameters must match the number of name parameters. + +- *"rev":* The revision to use for the checkout. The default is + "master". + +- *"tag":* Specifies a tag to use for the checkout. To correctly + resolve tags, BitBake must access the network. For that reason, tags + are often not used. As far as Git is concerned, the "tag" parameter + behaves effectively the same as the "rev" parameter. + +- *"subpath":* Limits the checkout to a specific subpath of the tree. + By default, the whole tree is checked out. + +- *"destsuffix":* The name of the path in which to place the checkout. + By default, the path is ``git/``. + +- *"usehead":* Enables local ``git://`` URLs to use the current branch + HEAD as the revision for use with ``AUTOREV``. The "usehead" + parameter implies no branch and only works when the transfer protocol + is ``file://``. + +Here are some example URLs:: + + SRC_URI = "git://github.com/fronteed/icheck.git;protocol=https;branch=${PV};tag=${PV}" + SRC_URI = "git://github.com/asciidoc/asciidoc-py;protocol=https;branch=main" + SRC_URI = "git://git@gitlab.freedesktop.org/mesa/mesa.git;branch=main;protocol=ssh;..." + +.. note:: + + When using ``git`` as the fetcher of the main source code of your software, + ``S`` should be set accordingly:: + + S = "${WORKDIR}/git" + +.. note:: + + Specifying passwords directly in ``git://`` urls is not supported. + There are several reasons: :term:`SRC_URI` is often written out to logs and + other places, and that could easily leak passwords; it is also all too + easy to share metadata without removing passwords. SSH keys, ``~/.netrc`` + and ``~/.ssh/config`` files can be used as alternatives. + + +.. _gitsm-fetcher: + +Git Submodule Fetcher (``gitsm://``) +------------------------------------ + +This fetcher submodule inherits from the :ref:`Git +fetcher` and extends that fetcher's behavior by fetching a +repository's submodules. :term:`SRC_URI` is passed to the Git fetcher as +described in the :ref:`bitbake-user-manual/bitbake-user-manual-fetching:git +fetcher (\`\`git://\`\`)` section. + +.. note:: + + You must clean a recipe when switching between '``git://``' and + '``gitsm://``' URLs. + + The Git Submodules fetcher is not a complete fetcher implementation. + The fetcher has known issues where it does not use the normal source + mirroring infrastructure properly. Further, the submodule sources it + fetches are not visible to the licensing and source archiving + infrastructures. + +.. _clearcase-fetcher: + +ClearCase Fetcher (``ccrc://``) +------------------------------- + +This fetcher submodule fetches code from a +`ClearCase `__ +repository. + +To use this fetcher, make sure your recipe has proper +:term:`SRC_URI`, :term:`SRCREV`, and +:term:`PV` settings. Here is an example:: + + SRC_URI = "ccrc://cc.example.org/ccrc;vob=/example_vob;module=/example_module" + SRCREV = "EXAMPLE_CLEARCASE_TAG" + PV = "${@d.getVar("SRCREV", False).replace("/", "+")}" + +The fetcher uses the ``rcleartool`` or +``cleartool`` remote client, depending on which one is available. + +Following are options for the :term:`SRC_URI` statement: + +- *vob*: The name, which must include the prepending "/" character, + of the ClearCase VOB. This option is required. + +- *module*: The module, which must include the prepending "/" + character, in the selected VOB. + + .. note:: + + The module and vob options are combined to create the load rule in the + view config spec. As an example, consider the vob and module values from + the SRC_URI statement at the start of this section. Combining those values + results in the following:: + + load /example_vob/example_module + +- *proto*: The protocol, which can be either ``http`` or ``https``. + +By default, the fetcher creates a configuration specification. If you +want this specification written to an area other than the default, use +the ``CCASE_CUSTOM_CONFIG_SPEC`` variable in your recipe to define where +the specification is written. + +.. note:: + + the SRCREV loses its functionality if you specify this variable. However, + SRCREV is still used to label the archive after a fetch even though it does + not define what is fetched. + +Here are a couple of other behaviors worth mentioning: + +- When using ``cleartool``, the login of ``cleartool`` is handled by + the system. The login require no special steps. + +- In order to use ``rcleartool`` with authenticated users, an + "rcleartool login" is necessary before using the fetcher. + +.. _perforce-fetcher: + +Perforce Fetcher (``p4://``) +---------------------------- + +This fetcher submodule fetches code from the +`Perforce `__ source control system. The +executable used is specified by ``FETCHCMD_p4``, which defaults to "p4". +The fetcher's temporary working directory is set by +:term:`P4DIR`, which defaults to "DL_DIR/p4". +The fetcher does not make use of a perforce client, instead it +relies on ``p4 files`` to retrieve a list of +files and ``p4 print`` to transfer the content +of those files locally. + +To use this fetcher, make sure your recipe has proper +:term:`SRC_URI`, :term:`SRCREV`, and +:term:`PV` values. The p4 executable is able to use the +config file defined by your system's ``P4CONFIG`` environment variable +in order to define the Perforce server URL and port, username, and +password if you do not wish to keep those values in a recipe itself. If +you choose not to use ``P4CONFIG``, or to explicitly set variables that +``P4CONFIG`` can contain, you can specify the ``P4PORT`` value, which is +the server's URL and port number, and you can specify a username and +password directly in your recipe within :term:`SRC_URI`. + +Here is an example that relies on ``P4CONFIG`` to specify the server URL +and port, username, and password, and fetches the Head Revision:: + + SRC_URI = "p4://example-depot/main/source/..." + SRCREV = "${AUTOREV}" + PV = "p4-${SRCPV}" + S = "${WORKDIR}/p4" + +Here is an example that specifies the server URL and port, username, and +password, and fetches a Revision based on a Label:: + + P4PORT = "tcp:p4server.example.net:1666" + SRC_URI = "p4://user:passwd@example-depot/main/source/..." + SRCREV = "release-1.0" + PV = "p4-${SRCPV}" + S = "${WORKDIR}/p4" + +.. note:: + + You should always set S to "${WORKDIR}/p4" in your recipe. + +By default, the fetcher strips the depot location from the local file paths. In +the above example, the content of ``example-depot/main/source/`` will be placed +in ``${WORKDIR}/p4``. For situations where preserving parts of the remote depot +paths locally is desirable, the fetcher supports two parameters: + +- *"module":* + The top-level depot location or directory to fetch. The value of this + parameter can also point to a single file within the depot, in which case + the local file path will include the module path. +- *"remotepath":* + When used with the value "``keep``", the fetcher will mirror the full depot + paths locally for the specified location, even in combination with the + ``module`` parameter. + +Here is an example use of the the ``module`` parameter:: + + SRC_URI = "p4://user:passwd@example-depot/main;module=source/..." + +In this case, the content of the top-level directory ``source/`` will be fetched +to ``${P4DIR}``, including the directory itself. The top-level directory will +be accesible at ``${P4DIR}/source/``. + +Here is an example use of the the ``remotepath`` parameter:: + + SRC_URI = "p4://user:passwd@example-depot/main;module=source/...;remotepath=keep" + +In this case, the content of the top-level directory ``source/`` will be fetched +to ``${P4DIR}``, but the complete depot paths will be mirrored locally. The +top-level directory will be accessible at +``${P4DIR}/example-depot/main/source/``. + +.. _repo-fetcher: + +Repo Fetcher (``repo://``) +-------------------------- + +This fetcher submodule fetches code from ``google-repo`` source control +system. The fetcher works by initiating and syncing sources of the +repository into :term:`REPODIR`, which is usually +``${DL_DIR}/repo``. + +This fetcher supports the following parameters: + +- *"protocol":* Protocol to fetch the repository manifest (default: + git). + +- *"branch":* Branch or tag of repository to get (default: master). + +- *"manifest":* Name of the manifest file (default: ``default.xml``). + +Here are some example URLs:: + + SRC_URI = "repo://REPOROOT;protocol=git;branch=some_branch;manifest=my_manifest.xml" + SRC_URI = "repo://REPOROOT;protocol=file;branch=some_branch;manifest=my_manifest.xml" + +.. _az-fetcher: + +Az Fetcher (``az://``) +-------------------------- + +This submodule fetches data from an +`Azure Storage account `__ , +it inherits its functionality from the HTTP wget fetcher, but modifies its +behavior to accomodate the usage of a +`Shared Access Signature (SAS) `__ +for non-public data. + +Such functionality is set by the variable: + +- :term:`AZ_SAS`: The Azure Storage Shared Access Signature provides secure + delegate access to resources, if this variable is set, the Az Fetcher will + use it when fetching artifacts from the cloud. + +You can specify the AZ_SAS variable as shown below:: + + AZ_SAS = "se=2021-01-01&sp=r&sv=2018-11-09&sr=c&skoid=&sig=" + +Here is an example URL:: + + SRC_URI = "az://.blob.core.windows.net//" + +It can also be used when setting mirrors definitions using the :term:`PREMIRRORS` variable. + +.. _crate-fetcher: + +Crate Fetcher (``crate://``) +---------------------------- + +This submodule fetches code for +`Rust language "crates" `__ +corresponding to Rust libraries and programs to compile. Such crates are typically shared +on https://crates.io/ but this fetcher supports other crate registries too. + +The format for the :term:`SRC_URI` setting must be:: + + SRC_URI = "crate://REGISTRY/NAME/VERSION" + +Here is an example URL:: + + SRC_URI = "crate://crates.io/glob/0.2.11" + +.. _npm-fetcher: + +NPM Fetcher (``npm://``) +------------------------ + +This submodule fetches source code from an +`NPM `__ +Javascript package registry. + +The format for the :term:`SRC_URI` setting must be:: + + SRC_URI = "npm://some.registry.url;ParameterA=xxx;ParameterB=xxx;..." + +This fetcher supports the following parameters: + +- *"package":* The NPM package name. This is a mandatory parameter. + +- *"version":* The NPM package version. This is a mandatory parameter. + +- *"downloadfilename":* Specifies the filename used when storing the downloaded file. + +- *"destsuffix":* Specifies the directory to use to unpack the package (default: ``npm``). + +Note that NPM fetcher only fetches the package source itself. The dependencies +can be fetched through the `npmsw-fetcher`_. + +Here is an example URL with both fetchers:: + + SRC_URI = " \ + npm://registry.npmjs.org/;package=cute-files;version=${PV} \ + npmsw://${THISDIR}/${BPN}/npm-shrinkwrap.json \ + " + +See :yocto_docs:`Creating Node Package Manager (NPM) Packages +` +in the Yocto Project manual for details about using +:yocto_docs:`devtool ` +to automatically create a recipe from an NPM URL. + +.. _npmsw-fetcher: + +NPM shrinkwrap Fetcher (``npmsw://``) +------------------------------------- + +This submodule fetches source code from an +`NPM shrinkwrap `__ +description file, which lists the dependencies +of an NPM package while locking their versions. + +The format for the :term:`SRC_URI` setting must be:: + + SRC_URI = "npmsw://some.registry.url;ParameterA=xxx;ParameterB=xxx;..." + +This fetcher supports the following parameters: + +- *"dev":* Set this parameter to ``1`` to install "devDependencies". + +- *"destsuffix":* Specifies the directory to use to unpack the dependencies + (``${S}`` by default). + +Note that the shrinkwrap file can also be provided by the recipe for +the package which has such dependencies, for example:: + + SRC_URI = " \ + npm://registry.npmjs.org/;package=cute-files;version=${PV} \ + npmsw://${THISDIR}/${BPN}/npm-shrinkwrap.json \ + " + +Such a file can automatically be generated using +:yocto_docs:`devtool ` +as described in the :yocto_docs:`Creating Node Package Manager (NPM) Packages +` +section of the Yocto Project. + +Other Fetchers +-------------- + +Fetch submodules also exist for the following: + +- Bazaar (``bzr://``) + +- Mercurial (``hg://``) + +- OSC (``osc://``) + +- Secure FTP (``sftp://``) + +- Secure Shell (``ssh://``) + +- Trees using Git Annex (``gitannex://``) + +No documentation currently exists for these lesser used fetcher +submodules. However, you might find the code helpful and readable. + +Auto Revisions +============== + +We need to document ``AUTOREV`` and :term:`SRCREV_FORMAT` here. diff --git a/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst new file mode 100644 index 0000000..722dc5a --- /dev/null +++ b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst @@ -0,0 +1,415 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +=================== +Hello World Example +=================== + +BitBake Hello World +=================== + +The simplest example commonly used to demonstrate any new programming +language or tool is the "`Hello +World `__" example. +This appendix demonstrates, in tutorial form, Hello World within the +context of BitBake. The tutorial describes how to create a new project +and the applicable metadata files necessary to allow BitBake to build +it. + +Obtaining BitBake +================= + +See the :ref:`bitbake-user-manual/bitbake-user-manual-hello:obtaining bitbake` section for +information on how to obtain BitBake. Once you have the source code on +your machine, the BitBake directory appears as follows:: + + $ ls -al + total 100 + drwxrwxr-x. 9 wmat wmat 4096 Jan 31 13:44 . + drwxrwxr-x. 3 wmat wmat 4096 Feb 4 10:45 .. + -rw-rw-r--. 1 wmat wmat 365 Nov 26 04:55 AUTHORS + drwxrwxr-x. 2 wmat wmat 4096 Nov 26 04:55 bin + drwxrwxr-x. 4 wmat wmat 4096 Jan 31 13:44 build + -rw-rw-r--. 1 wmat wmat 16501 Nov 26 04:55 ChangeLog + drwxrwxr-x. 2 wmat wmat 4096 Nov 26 04:55 classes + drwxrwxr-x. 2 wmat wmat 4096 Nov 26 04:55 conf + drwxrwxr-x. 3 wmat wmat 4096 Nov 26 04:55 contrib + -rw-rw-r--. 1 wmat wmat 17987 Nov 26 04:55 COPYING + drwxrwxr-x. 3 wmat wmat 4096 Nov 26 04:55 doc + -rw-rw-r--. 1 wmat wmat 69 Nov 26 04:55 .gitignore + -rw-rw-r--. 1 wmat wmat 849 Nov 26 04:55 HEADER + drwxrwxr-x. 5 wmat wmat 4096 Jan 31 13:44 lib + -rw-rw-r--. 1 wmat wmat 195 Nov 26 04:55 MANIFEST.in + -rw-rw-r--. 1 wmat wmat 2887 Nov 26 04:55 TODO + +At this point, you should have BitBake cloned to a directory that +matches the previous listing except for dates and user names. + +Setting Up the BitBake Environment +================================== + +First, you need to be sure that you can run BitBake. Set your working +directory to where your local BitBake files are and run the following +command:: + + $ ./bin/bitbake --version + BitBake Build Tool Core version 1.23.0, bitbake version 1.23.0 + +The console output tells you what version +you are running. + +The recommended method to run BitBake is from a directory of your +choice. To be able to run BitBake from any directory, you need to add +the executable binary to your binary to your shell's environment +``PATH`` variable. First, look at your current ``PATH`` variable by +entering the following:: + + $ echo $PATH + +Next, add the directory location +for the BitBake binary to the ``PATH``. Here is an example that adds the +``/home/scott-lenovo/bitbake/bin`` directory to the front of the +``PATH`` variable:: + + $ export PATH=/home/scott-lenovo/bitbake/bin:$PATH + +You should now be able to enter the ``bitbake`` command from the command +line while working from any directory. + +The Hello World Example +======================= + +The overall goal of this exercise is to build a complete "Hello World" +example utilizing task and layer concepts. Because this is how modern +projects such as OpenEmbedded and the Yocto Project utilize BitBake, the +example provides an excellent starting point for understanding BitBake. + +To help you understand how to use BitBake to build targets, the example +starts with nothing but the ``bitbake`` command, which causes BitBake to +fail and report problems. The example progresses by adding pieces to the +build to eventually conclude with a working, minimal "Hello World" +example. + +While every attempt is made to explain what is happening during the +example, the descriptions cannot cover everything. You can find further +information throughout this manual. Also, you can actively participate +in the :oe_lists:`/g/bitbake-devel` +discussion mailing list about the BitBake build tool. + +.. note:: + + This example was inspired by and drew heavily from + `Mailing List post - The BitBake equivalent of "Hello, World!" + `_. + +As stated earlier, the goal of this example is to eventually compile +"Hello World". However, it is unknown what BitBake needs and what you +have to provide in order to achieve that goal. Recall that BitBake +utilizes three types of metadata files: +:ref:`bitbake-user-manual/bitbake-user-manual-intro:configuration files`, +:ref:`bitbake-user-manual/bitbake-user-manual-intro:classes`, and +:ref:`bitbake-user-manual/bitbake-user-manual-intro:recipes`. +But where do they go? How does BitBake find +them? BitBake's error messaging helps you answer these types of +questions and helps you better understand exactly what is going on. + +Following is the complete "Hello World" example. + +#. **Create a Project Directory:** First, set up a directory for the + "Hello World" project. Here is how you can do so in your home + directory:: + + $ mkdir ~/hello + $ cd ~/hello + + This is the directory that + BitBake will use to do all of its work. You can use this directory + to keep all the metafiles needed by BitBake. Having a project + directory is a good way to isolate your project. + +#. **Run BitBake:** At this point, you have nothing but a project + directory. Run the ``bitbake`` command and see what it does:: + + $ bitbake + The BBPATH variable is not set and bitbake did not + find a conf/bblayers.conf file in the expected location. + Maybe you accidentally invoked bitbake from the wrong directory? + DEBUG: Removed the following variables from the environment: + GNOME_DESKTOP_SESSION_ID, XDG_CURRENT_DESKTOP, + GNOME_KEYRING_CONTROL, DISPLAY, SSH_AGENT_PID, LANG, no_proxy, + XDG_SESSION_PATH, XAUTHORITY, SESSION_MANAGER, SHLVL, + MANDATORY_PATH, COMPIZ_CONFIG_PROFILE, WINDOWID, EDITOR, + GPG_AGENT_INFO, SSH_AUTH_SOCK, GDMSESSION, GNOME_KEYRING_PID, + XDG_SEAT_PATH, XDG_CONFIG_DIRS, LESSOPEN, DBUS_SESSION_BUS_ADDRESS, + _, XDG_SESSION_COOKIE, DESKTOP_SESSION, LESSCLOSE, DEFAULTS_PATH, + UBUNTU_MENUPROXY, OLDPWD, XDG_DATA_DIRS, COLORTERM, LS_COLORS + + The majority of this output is specific to environment variables that + are not directly relevant to BitBake. However, the very first + message regarding the :term:`BBPATH` variable and the + ``conf/bblayers.conf`` file is relevant. + + When you run BitBake, it begins looking for metadata files. The + :term:`BBPATH` variable is what tells BitBake where + to look for those files. :term:`BBPATH` is not set and you need to set + it. Without :term:`BBPATH`, BitBake cannot find any configuration files + (``.conf``) or recipe files (``.bb``) at all. BitBake also cannot + find the ``bitbake.conf`` file. + +#. **Setting BBPATH:** For this example, you can set :term:`BBPATH` in + the same manner that you set ``PATH`` earlier in the appendix. You + should realize, though, that it is much more flexible to set the + :term:`BBPATH` variable up in a configuration file for each project. + + From your shell, enter the following commands to set and export the + :term:`BBPATH` variable:: + + $ BBPATH="projectdirectory" + $ export BBPATH + + Use your actual project directory in the command. BitBake uses that + directory to find the metadata it needs for your project. + + .. note:: + + When specifying your project directory, do not use the tilde + ("~") character as BitBake does not expand that character as the + shell would. + +#. **Run BitBake:** Now that you have :term:`BBPATH` defined, run the + ``bitbake`` command again:: + + $ bitbake + ERROR: Traceback (most recent call last): + File "/home/scott-lenovo/bitbake/lib/bb/cookerdata.py", line 163, in wrapped + return func(fn, *args) + File "/home/scott-lenovo/bitbake/lib/bb/cookerdata.py", line 173, in parse_config_file + return bb.parse.handle(fn, data, include) + File "/home/scott-lenovo/bitbake/lib/bb/parse/__init__.py", line 99, in handle + return h['handle'](fn, data, include) + File "/home/scott-lenovo/bitbake/lib/bb/parse/parse_py/ConfHandler.py", line 120, in handle + abs_fn = resolve_file(fn, data) + File "/home/scott-lenovo/bitbake/lib/bb/parse/__init__.py", line 117, in resolve_file + raise IOError("file %s not found in %s" % (fn, bbpath)) + IOError: file conf/bitbake.conf not found in /home/scott-lenovo/hello + + ERROR: Unable to parse conf/bitbake.conf: file conf/bitbake.conf not found in /home/scott-lenovo/hello + + This sample output shows that BitBake could not find the + ``conf/bitbake.conf`` file in the project directory. This file is + the first thing BitBake must find in order to build a target. And, + since the project directory for this example is empty, you need to + provide a ``conf/bitbake.conf`` file. + +#. **Creating conf/bitbake.conf:** The ``conf/bitbake.conf`` includes + a number of configuration variables BitBake uses for metadata and + recipe files. For this example, you need to create the file in your + project directory and define some key BitBake variables. For more + information on the ``bitbake.conf`` file, see + https://git.openembedded.org/bitbake/tree/conf/bitbake.conf. + + Use the following commands to create the ``conf`` directory in the + project directory:: + + $ mkdir conf + + From within the ``conf`` directory, + use some editor to create the ``bitbake.conf`` so that it contains + the following:: + + PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0] or 'defaultpkgname'}" + + TMPDIR = "${TOPDIR}/tmp" + CACHE = "${TMPDIR}/cache" + STAMP = "${TMPDIR}/${PN}/stamps" + T = "${TMPDIR}/${PN}/work" + B = "${TMPDIR}/${PN}" + + .. note:: + + Without a value for PN , the variables STAMP , T , and B , prevent more + than one recipe from working. You can fix this by either setting PN to + have a value similar to what OpenEmbedded and BitBake use in the default + bitbake.conf file (see previous example). Or, by manually updating each + recipe to set PN . You will also need to include PN as part of the STAMP + , T , and B variable definitions in the local.conf file. + + The ``TMPDIR`` variable establishes a directory that BitBake uses + for build output and intermediate files other than the cached + information used by the + :ref:`bitbake-user-manual/bitbake-user-manual-execution:setscene` + process. Here, the ``TMPDIR`` directory is set to ``hello/tmp``. + + .. tip:: + + You can always safely delete the tmp directory in order to rebuild a + BitBake target. The build process creates the directory for you when you + run BitBake. + + For information about each of the other variables defined in this + example, check :term:`PN`, :term:`TOPDIR`, :term:`CACHE`, :term:`STAMP`, + :term:`T` or :term:`B` to take you to the definitions in the + glossary. + +#. **Run BitBake:** After making sure that the ``conf/bitbake.conf`` file + exists, you can run the ``bitbake`` command again:: + + $ bitbake + ERROR: Traceback (most recent call last): + File "/home/scott-lenovo/bitbake/lib/bb/cookerdata.py", line 163, in wrapped + return func(fn, *args) + File "/home/scott-lenovo/bitbake/lib/bb/cookerdata.py", line 177, in _inherit + bb.parse.BBHandler.inherit(bbclass, "configuration INHERITs", 0, data) + File "/home/scott-lenovo/bitbake/lib/bb/parse/parse_py/BBHandler.py", line 92, in inherit + include(fn, file, lineno, d, "inherit") + File "/home/scott-lenovo/bitbake/lib/bb/parse/parse_py/ConfHandler.py", line 100, in include + raise ParseError("Could not %(error_out)s file %(fn)s" % vars(), oldfn, lineno) + ParseError: ParseError in configuration INHERITs: Could not inherit file classes/base.bbclass + + ERROR: Unable to parse base: ParseError in configuration INHERITs: Could not inherit file classes/base.bbclass + + In the sample output, + BitBake could not find the ``classes/base.bbclass`` file. You need + to create that file next. + +#. **Creating classes/base.bbclass:** BitBake uses class files to + provide common code and functionality. The minimally required class + for BitBake is the ``classes/base.bbclass`` file. The ``base`` class + is implicitly inherited by every recipe. BitBake looks for the class + in the ``classes`` directory of the project (i.e ``hello/classes`` + in this example). + + Create the ``classes`` directory as follows:: + + $ cd $HOME/hello + $ mkdir classes + + Move to the ``classes`` directory and then create the + ``base.bbclass`` file by inserting this single line: addtask build + The minimal task that BitBake runs is the ``do_build`` task. This is + all the example needs in order to build the project. Of course, the + ``base.bbclass`` can have much more depending on which build + environments BitBake is supporting. + +#. **Run BitBake:** After making sure that the ``classes/base.bbclass`` + file exists, you can run the ``bitbake`` command again:: + + $ bitbake + Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information. + + BitBake is finally reporting + no errors. However, you can see that it really does not have + anything to do. You need to create a recipe that gives BitBake + something to do. + +#. **Creating a Layer:** While it is not really necessary for such a + small example, it is good practice to create a layer in which to + keep your code separate from the general metadata used by BitBake. + Thus, this example creates and uses a layer called "mylayer". + + .. note:: + + You can find additional information on layers in the + ":ref:`bitbake-user-manual/bitbake-user-manual-intro:Layers`" section. + + Minimally, you need a recipe file and a layer configuration file in + your layer. The configuration file needs to be in the ``conf`` + directory inside the layer. Use these commands to set up the layer + and the ``conf`` directory:: + + $ cd $HOME + $ mkdir mylayer + $ cd mylayer + $ mkdir conf + + Move to the ``conf`` directory and create a ``layer.conf`` file that has the + following:: + + BBPATH .= ":${LAYERDIR}" + BBFILES += "${LAYERDIR}/*.bb" + BBFILE_COLLECTIONS += "mylayer" + BBFILE_PATTERN_mylayer := "^${LAYERDIR_RE}/" + + For information on these variables, click on :term:`BBFILES`, + :term:`LAYERDIR`, :term:`BBFILE_COLLECTIONS` or :term:`BBFILE_PATTERN_mylayer ` + to go to the definitions in the glossary. + + You need to create the recipe file next. Inside your layer at the + top-level, use an editor and create a recipe file named + ``printhello.bb`` that has the following:: + + DESCRIPTION = "Prints Hello World" + PN = 'printhello' + PV = '1' + + python do_build() { + bb.plain("********************"); + bb.plain("* *"); + bb.plain("* Hello, World! *"); + bb.plain("* *"); + bb.plain("********************"); + } + + The recipe file simply provides + a description of the recipe, the name, version, and the ``do_build`` + task, which prints out "Hello World" to the console. For more + information on :term:`DESCRIPTION`, :term:`PN` or :term:`PV` + follow the links to the glossary. + +#. **Run BitBake With a Target:** Now that a BitBake target exists, run + the command and provide that target:: + + $ cd $HOME/hello + $ bitbake printhello + ERROR: no recipe files to build, check your BBPATH and BBFILES? + + Summary: There was 1 ERROR message shown, returning a non-zero exit code. + + We have created the layer with the recipe and + the layer configuration file but it still seems that BitBake cannot + find the recipe. BitBake needs a ``conf/bblayers.conf`` that lists + the layers for the project. Without this file, BitBake cannot find + the recipe. + +#. **Creating conf/bblayers.conf:** BitBake uses the + ``conf/bblayers.conf`` file to locate layers needed for the project. + This file must reside in the ``conf`` directory of the project (i.e. + ``hello/conf`` for this example). + + Set your working directory to the ``hello/conf`` directory and then + create the ``bblayers.conf`` file so that it contains the following:: + + BBLAYERS ?= " \ + /home//mylayer \ + " + + You need to provide your own information for ``you`` in the file. + +#. **Run BitBake With a Target:** Now that you have supplied the + ``bblayers.conf`` file, run the ``bitbake`` command and provide the + target:: + + $ bitbake printhello + Parsing recipes: 100% |##################################################################################| + Time: 00:00:00 + Parsing of 1 .bb files complete (0 cached, 1 parsed). 1 targets, 0 skipped, 0 masked, 0 errors. + NOTE: Resolving any missing task queue dependencies + NOTE: Preparing RunQueue + NOTE: Executing RunQueue Tasks + ******************** + * * + * Hello, World! * + * * + ******************** + NOTE: Tasks Summary: Attempted 1 tasks of which 0 didn't need to be rerun and all succeeded. + + .. note:: + + After the first execution, re-running bitbake printhello again will not + result in a BitBake run that prints the same console output. The reason + for this is that the first time the printhello.bb recipe's do_build task + executes successfully, BitBake writes a stamp file for the task. Thus, + the next time you attempt to run the task using that same bitbake + command, BitBake notices the stamp and therefore determines that the task + does not need to be re-run. If you delete the tmp directory or run + bitbake -c clean printhello and then re-run the build, the "Hello, + World!" message will be printed again. diff --git a/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.rst b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.rst new file mode 100644 index 0000000..35ffb88 --- /dev/null +++ b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.rst @@ -0,0 +1,653 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +======== +Overview +======== + +| + +Welcome to the BitBake User Manual. This manual provides information on +the BitBake tool. The information attempts to be as independent as +possible regarding systems that use BitBake, such as OpenEmbedded and +the Yocto Project. In some cases, scenarios or examples within the +context of a build system are used in the manual to help with +understanding. For these cases, the manual clearly states the context. + +.. _intro: + +Introduction +============ + +Fundamentally, BitBake is a generic task execution engine that allows +shell and Python tasks to be run efficiently and in parallel while +working within complex inter-task dependency constraints. One of +BitBake's main users, OpenEmbedded, takes this core and builds embedded +Linux software stacks using a task-oriented approach. + +Conceptually, BitBake is similar to GNU Make in some regards but has +significant differences: + +- BitBake executes tasks according to the provided metadata that builds up + the tasks. Metadata is stored in recipe (``.bb``) and related recipe + "append" (``.bbappend``) files, configuration (``.conf``) and + underlying include (``.inc``) files, and in class (``.bbclass``) + files. The metadata provides BitBake with instructions on what tasks + to run and the dependencies between those tasks. + +- BitBake includes a fetcher library for obtaining source code from + various places such as local files, source control systems, or + websites. + +- The instructions for each unit to be built (e.g. a piece of software) + are known as "recipe" files and contain all the information about the + unit (dependencies, source file locations, checksums, description and + so on). + +- BitBake includes a client/server abstraction and can be used from a + command line or used as a service over XML-RPC and has several + different user interfaces. + +History and Goals +================= + +BitBake was originally a part of the OpenEmbedded project. It was +inspired by the Portage package management system used by the Gentoo +Linux distribution. On December 7, 2004, OpenEmbedded project team +member Chris Larson split the project into two distinct pieces: + +- BitBake, a generic task executor + +- OpenEmbedded, a metadata set utilized by BitBake + +Today, BitBake is the primary basis of the +`OpenEmbedded `__ project, which is being +used to build and maintain Linux distributions such as the `Poky +Reference Distribution `__, +developed under the umbrella of the `Yocto Project `__. + +Prior to BitBake, no other build tool adequately met the needs of an +aspiring embedded Linux distribution. All of the build systems used by +traditional desktop Linux distributions lacked important functionality, +and none of the ad hoc Buildroot-based systems, prevalent in the +embedded space, were scalable or maintainable. + +Some important original goals for BitBake were: + +- Handle cross-compilation. + +- Handle inter-package dependencies (build time on target architecture, + build time on native architecture, and runtime). + +- Support running any number of tasks within a given package, + including, but not limited to, fetching upstream sources, unpacking + them, patching them, configuring them, and so forth. + +- Be Linux distribution agnostic for both build and target systems. + +- Be architecture agnostic. + +- Support multiple build and target operating systems (e.g. Cygwin, the + BSDs, and so forth). + +- Be self-contained, rather than tightly integrated into the build + machine's root filesystem. + +- Handle conditional metadata on the target architecture, operating + system, distribution, and machine. + +- Be easy to use the tools to supply local metadata and packages + against which to operate. + +- Be easy to use BitBake to collaborate between multiple projects for + their builds. + +- Provide an inheritance mechanism to share common metadata between + many packages. + +Over time it became apparent that some further requirements were +necessary: + +- Handle variants of a base recipe (e.g. native, sdk, and multilib). + +- Split metadata into layers and allow layers to enhance or override + other layers. + +- Allow representation of a given set of input variables to a task as a + checksum. Based on that checksum, allow acceleration of builds with + prebuilt components. + +BitBake satisfies all the original requirements and many more with +extensions being made to the basic functionality to reflect the +additional requirements. Flexibility and power have always been the +priorities. BitBake is highly extensible and supports embedded Python +code and execution of any arbitrary tasks. + +.. _Concepts: + +Concepts +======== + +BitBake is a program written in the Python language. At the highest +level, BitBake interprets metadata, decides what tasks are required to +run, and executes those tasks. Similar to GNU Make, BitBake controls how +software is built. GNU Make achieves its control through "makefiles", +while BitBake uses "recipes". + +BitBake extends the capabilities of a simple tool like GNU Make by +allowing for the definition of much more complex tasks, such as +assembling entire embedded Linux distributions. + +The remainder of this section introduces several concepts that should be +understood in order to better leverage the power of BitBake. + +Recipes +------- + +BitBake Recipes, which are denoted by the file extension ``.bb``, are +the most basic metadata files. These recipe files provide BitBake with +the following: + +- Descriptive information about the package (author, homepage, license, + and so on) + +- The version of the recipe + +- Existing dependencies (both build and runtime dependencies) + +- Where the source code resides and how to fetch it + +- Whether the source code requires any patches, where to find them, and + how to apply them + +- How to configure and compile the source code + +- How to assemble the generated artifacts into one or more installable + packages + +- Where on the target machine to install the package or packages + created + +Within the context of BitBake, or any project utilizing BitBake as its +build system, files with the ``.bb`` extension are referred to as +recipes. + +.. note:: + + The term "package" is also commonly used to describe recipes. + However, since the same word is used to describe packaged output from + a project, it is best to maintain a single descriptive term - + "recipes". Put another way, a single "recipe" file is quite capable + of generating a number of related but separately installable + "packages". In fact, that ability is fairly common. + +Configuration Files +------------------- + +Configuration files, which are denoted by the ``.conf`` extension, +define various configuration variables that govern the project's build +process. These files fall into several areas that define machine +configuration, distribution configuration, possible compiler tuning, +general common configuration, and user configuration. The main +configuration file is the sample ``bitbake.conf`` file, which is located +within the BitBake source tree ``conf`` directory. + +Classes +------- + +Class files, which are denoted by the ``.bbclass`` extension, contain +information that is useful to share between metadata files. The BitBake +source tree currently comes with one class metadata file called +``base.bbclass``. You can find this file in the ``classes`` directory. +The ``base.bbclass`` class files is special since it is always included +automatically for all recipes and classes. This class contains +definitions for standard basic tasks such as fetching, unpacking, +configuring (empty by default), compiling (runs any Makefile present), +installing (empty by default) and packaging (empty by default). These +tasks are often overridden or extended by other classes added during the +project development process. + +Layers +------ + +Layers allow you to isolate different types of customizations from each +other. While you might find it tempting to keep everything in one layer +when working on a single project, the more modular your metadata, the +easier it is to cope with future changes. + +To illustrate how you can use layers to keep things modular, consider +customizations you might make to support a specific target machine. +These types of customizations typically reside in a special layer, +rather than a general layer, called a Board Support Package (BSP) layer. +Furthermore, the machine customizations should be isolated from recipes +and metadata that support a new GUI environment, for example. This +situation gives you a couple of layers: one for the machine +configurations and one for the GUI environment. It is important to +understand, however, that the BSP layer can still make machine-specific +additions to recipes within the GUI environment layer without polluting +the GUI layer itself with those machine-specific changes. You can +accomplish this through a recipe that is a BitBake append +(``.bbappend``) file. + +.. _append-bbappend-files: + +Append Files +------------ + +Append files, which are files that have the ``.bbappend`` file +extension, extend or override information in an existing recipe file. + +BitBake expects every append file to have a corresponding recipe file. +Furthermore, the append file and corresponding recipe file must use the +same root filename. The filenames can differ only in the file type +suffix used (e.g. ``formfactor_0.0.bb`` and +``formfactor_0.0.bbappend``). + +Information in append files extends or overrides the information in the +underlying, similarly-named recipe files. + +When you name an append file, you can use the "``%``" wildcard character +to allow for matching recipe names. For example, suppose you have an +append file named as follows:: + + busybox_1.21.%.bbappend + +That append file +would match any ``busybox_1.21.``\ x\ ``.bb`` version of the recipe. So, +the append file would match the following recipe names:: + + busybox_1.21.1.bb + busybox_1.21.2.bb + busybox_1.21.3.bb + +.. note:: + + The use of the " % " character is limited in that it only works directly in + front of the .bbappend portion of the append file's name. You cannot use the + wildcard character in any other location of the name. + +If the ``busybox`` recipe was updated to ``busybox_1.3.0.bb``, the +append name would not match. However, if you named the append file +``busybox_1.%.bbappend``, then you would have a match. + +In the most general case, you could name the append file something as +simple as ``busybox_%.bbappend`` to be entirely version independent. + +Obtaining BitBake +================= + +You can obtain BitBake several different ways: + +- **Cloning BitBake:** Using Git to clone the BitBake source code + repository is the recommended method for obtaining BitBake. Cloning + the repository makes it easy to get bug fixes and have access to + stable branches and the master branch. Once you have cloned BitBake, + you should use the latest stable branch for development since the + master branch is for BitBake development and might contain less + stable changes. + + You usually need a version of BitBake that matches the metadata you + are using. The metadata is generally backwards compatible but not + forward compatible. + + Here is an example that clones the BitBake repository:: + + $ git clone git://git.openembedded.org/bitbake + + This command clones the BitBake + Git repository into a directory called ``bitbake``. Alternatively, + you can designate a directory after the ``git clone`` command if you + want to call the new directory something other than ``bitbake``. Here + is an example that names the directory ``bbdev``:: + + $ git clone git://git.openembedded.org/bitbake bbdev + +- **Installation using your Distribution Package Management System:** + This method is not recommended because the BitBake version that is + provided by your distribution, in most cases, is several releases + behind a snapshot of the BitBake repository. + +- **Taking a snapshot of BitBake:** Downloading a snapshot of BitBake + from the source code repository gives you access to a known branch or + release of BitBake. + + .. note:: + + Cloning the Git repository, as described earlier, is the preferred + method for getting BitBake. Cloning the repository makes it easier + to update as patches are added to the stable branches. + + The following example downloads a snapshot of BitBake version 1.17.0:: + + $ wget https://git.openembedded.org/bitbake/snapshot/bitbake-1.17.0.tar.gz + $ tar zxpvf bitbake-1.17.0.tar.gz + + After extraction of the tarball using + the tar utility, you have a directory entitled ``bitbake-1.17.0``. + +- **Using the BitBake that Comes With Your Build Checkout:** A final + possibility for getting a copy of BitBake is that it already comes + with your checkout of a larger BitBake-based build system, such as + Poky. Rather than manually checking out individual layers and gluing + them together yourself, you can check out an entire build system. The + checkout will already include a version of BitBake that has been + thoroughly tested for compatibility with the other components. For + information on how to check out a particular BitBake-based build + system, consult that build system's supporting documentation. + +.. _bitbake-user-manual-command: + +The BitBake Command +=================== + +The ``bitbake`` command is the primary interface to the BitBake tool. +This section presents the BitBake command syntax and provides several +execution examples. + +Usage and syntax +---------------- + +Following is the usage and syntax for BitBake:: + + $ bitbake -h + Usage: bitbake [options] [recipename/target recipe:do_task ...] + + Executes the specified task (default is 'build') for a given set of target recipes (.bb files). + It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which + will provide the layer, BBFILES and other configuration information. + + Options: + --version show program's version number and exit + -h, --help show this help message and exit + -b BUILDFILE, --buildfile=BUILDFILE + Execute tasks from a specific .bb recipe directly. + WARNING: Does not handle any dependencies from other + recipes. + -k, --continue Continue as much as possible after an error. While the + target that failed and anything depending on it cannot + be built, as much as possible will be built before + stopping. + -f, --force Force the specified targets/task to run (invalidating + any existing stamp file). + -c CMD, --cmd=CMD Specify the task to execute. The exact options + available depend on the metadata. Some examples might + be 'compile' or 'populate_sysroot' or 'listtasks' may + give a list of the tasks available. + -C INVALIDATE_STAMP, --clear-stamp=INVALIDATE_STAMP + Invalidate the stamp for the specified task such as + 'compile' and then run the default task for the + specified target(s). + -r PREFILE, --read=PREFILE + Read the specified file before bitbake.conf. + -R POSTFILE, --postread=POSTFILE + Read the specified file after bitbake.conf. + -v, --verbose Enable tracing of shell tasks (with 'set -x'). Also + print bb.note(...) messages to stdout (in addition to + writing them to ${T}/log.do_<task>). + -D, --debug Increase the debug level. You can specify this more + than once. -D sets the debug level to 1, where only + bb.debug(1, ...) messages are printed to stdout; -DD + sets the debug level to 2, where both bb.debug(1, ...) + and bb.debug(2, ...) messages are printed; etc. + Without -D, no debug messages are printed. Note that + -D only affects output to stdout. All debug messages + are written to ${T}/log.do_taskname, regardless of the + debug level. + -q, --quiet Output less log message data to the terminal. You can + specify this more than once. + -n, --dry-run Don't execute, just go through the motions. + -S SIGNATURE_HANDLER, --dump-signatures=SIGNATURE_HANDLER + Dump out the signature construction information, with + no task execution. The SIGNATURE_HANDLER parameter is + passed to the handler. Two common values are none and + printdiff but the handler may define more/less. none + means only dump the signature, printdiff means compare + the dumped signature with the cached one. + -p, --parse-only Quit after parsing the BB recipes. + -s, --show-versions Show current and preferred versions of all recipes. + -e, --environment Show the global or per-recipe environment complete + with information about where variables were + set/changed. + -g, --graphviz Save dependency tree information for the specified + targets in the dot syntax. + -I EXTRA_ASSUME_PROVIDED, --ignore-deps=EXTRA_ASSUME_PROVIDED + Assume these dependencies don't exist and are already + provided (equivalent to ASSUME_PROVIDED). Useful to + make dependency graphs more appealing + -l DEBUG_DOMAINS, --log-domains=DEBUG_DOMAINS + Show debug logging for the specified logging domains + -P, --profile Profile the command and save reports. + -u UI, --ui=UI The user interface to use (knotty, ncurses, taskexp or + teamcity - default knotty). + --token=XMLRPCTOKEN Specify the connection token to be used when + connecting to a remote server. + --revisions-changed Set the exit code depending on whether upstream + floating revisions have changed or not. + --server-only Run bitbake without a UI, only starting a server + (cooker) process. + -B BIND, --bind=BIND The name/address for the bitbake xmlrpc server to bind + to. + -T SERVER_TIMEOUT, --idle-timeout=SERVER_TIMEOUT + Set timeout to unload bitbake server due to + inactivity, set to -1 means no unload, default: + Environment variable BB_SERVER_TIMEOUT. + --no-setscene Do not run any setscene tasks. sstate will be ignored + and everything needed, built. + --skip-setscene Skip setscene tasks if they would be executed. Tasks + previously restored from sstate will be kept, unlike + --no-setscene + --setscene-only Only run setscene tasks, don't run any real tasks. + --remote-server=REMOTE_SERVER + Connect to the specified server. + -m, --kill-server Terminate any running bitbake server. + --observe-only Connect to a server as an observing-only client. + --status-only Check the status of the remote bitbake server. + -w WRITEEVENTLOG, --write-log=WRITEEVENTLOG + Writes the event log of the build to a bitbake event + json file. Use '' (empty string) to assign the name + automatically. + --runall=RUNALL Run the specified task for any recipe in the taskgraph + of the specified target (even if it wouldn't otherwise + have run). + --runonly=RUNONLY Run only the specified task within the taskgraph of + the specified targets (and any task dependencies those + tasks may have). + +.. _bitbake-examples: + +Examples +-------- + +This section presents some examples showing how to use BitBake. + +.. _example-executing-a-task-against-a-single-recipe: + +Executing a Task Against a Single Recipe +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Executing tasks for a single recipe file is relatively simple. You +specify the file in question, and BitBake parses it and executes the +specified task. If you do not specify a task, BitBake executes the +default task, which is "build". BitBake obeys inter-task dependencies +when doing so. + +The following command runs the build task, which is the default task, on +the ``foo_1.0.bb`` recipe file:: + + $ bitbake -b foo_1.0.bb + +The following command runs the clean task on the ``foo.bb`` recipe file:: + + $ bitbake -b foo.bb -c clean + +.. note:: + + The "-b" option explicitly does not handle recipe dependencies. Other + than for debugging purposes, it is instead recommended that you use + the syntax presented in the next section. + +Executing Tasks Against a Set of Recipe Files +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +There are a number of additional complexities introduced when one wants +to manage multiple ``.bb`` files. Clearly there needs to be a way to +tell BitBake what files are available and, of those, which you want to +execute. There also needs to be a way for each recipe to express its +dependencies, both for build-time and runtime. There must be a way for +you to express recipe preferences when multiple recipes provide the same +functionality, or when there are multiple versions of a recipe. + +The ``bitbake`` command, when not using "--buildfile" or "-b" only +accepts a "PROVIDES". You cannot provide anything else. By default, a +recipe file generally "PROVIDES" its "packagename" as shown in the +following example:: + + $ bitbake foo + +This next example "PROVIDES" the +package name and also uses the "-c" option to tell BitBake to just +execute the ``do_clean`` task:: + + $ bitbake -c clean foo + +Executing a List of Task and Recipe Combinations +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The BitBake command line supports specifying different tasks for +individual targets when you specify multiple targets. For example, +suppose you had two targets (or recipes) ``myfirstrecipe`` and +``mysecondrecipe`` and you needed BitBake to run ``taskA`` for the first +recipe and ``taskB`` for the second recipe:: + + $ bitbake myfirstrecipe:do_taskA mysecondrecipe:do_taskB + +Generating Dependency Graphs +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +BitBake is able to generate dependency graphs using the ``dot`` syntax. +You can convert these graphs into images using the ``dot`` tool from +`Graphviz `__. + +When you generate a dependency graph, BitBake writes two files to the +current working directory: + +- ``task-depends.dot``: Shows dependencies between tasks. These + dependencies match BitBake's internal task execution list. + +- ``pn-buildlist``: Shows a simple list of targets that are to be + built. + +To stop depending on common depends, use the ``-I`` depend option and +BitBake omits them from the graph. Leaving this information out can +produce more readable graphs. This way, you can remove from the graph +:term:`DEPENDS` from inherited classes such as ``base.bbclass``. + +Here are two examples that create dependency graphs. The second example +omits depends common in OpenEmbedded from the graph:: + + $ bitbake -g foo + + $ bitbake -g -I virtual/kernel -I eglibc foo + +Executing a Multiple Configuration Build +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +BitBake is able to build multiple images or packages using a single +command where the different targets require different configurations +(multiple configuration builds). Each target, in this scenario, is +referred to as a "multiconfig". + +To accomplish a multiple configuration build, you must define each +target's configuration separately using a parallel configuration file in +the build directory. The location for these multiconfig configuration +files is specific. They must reside in the current build directory in a +sub-directory of ``conf`` named ``multiconfig``. Following is an example +for two separate targets: + +.. image:: figures/bb_multiconfig_files.png + :align: center + +The reason for this required file hierarchy is because the :term:`BBPATH` +variable is not constructed until the layers are parsed. Consequently, +using the configuration file as a pre-configuration file is not possible +unless it is located in the current working directory. + +Minimally, each configuration file must define the machine and the +temporary directory BitBake uses for the build. Suggested practice +dictates that you do not overlap the temporary directories used during +the builds. + +Aside from separate configuration files for each target, you must also +enable BitBake to perform multiple configuration builds. Enabling is +accomplished by setting the +:term:`BBMULTICONFIG` variable in the +``local.conf`` configuration file. As an example, suppose you had +configuration files for ``target1`` and ``target2`` defined in the build +directory. The following statement in the ``local.conf`` file both +enables BitBake to perform multiple configuration builds and specifies +the two extra multiconfigs:: + + BBMULTICONFIG = "target1 target2" + +Once the target configuration files are in place and BitBake has been +enabled to perform multiple configuration builds, use the following +command form to start the builds:: + + $ bitbake [mc:multiconfigname:]target [[[mc:multiconfigname:]target] ... ] + +Here is an example for two extra multiconfigs: ``target1`` and ``target2``:: + + $ bitbake mc::target mc:target1:target mc:target2:target + +.. _bb-enabling-multiple-configuration-build-dependencies: + +Enabling Multiple Configuration Build Dependencies +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Sometimes dependencies can exist between targets (multiconfigs) in a +multiple configuration build. For example, suppose that in order to +build an image for a particular architecture, the root filesystem of +another build for a different architecture needs to exist. In other +words, the image for the first multiconfig depends on the root +filesystem of the second multiconfig. This dependency is essentially +that the task in the recipe that builds one multiconfig is dependent on +the completion of the task in the recipe that builds another +multiconfig. + +To enable dependencies in a multiple configuration build, you must +declare the dependencies in the recipe using the following statement +form:: + + task_or_package[mcdepends] = "mc:from_multiconfig:to_multiconfig:recipe_name:task_on_which_to_depend" + +To better show how to use this statement, consider an example with two +multiconfigs: ``target1`` and ``target2``:: + + image_task[mcdepends] = "mc:target1:target2:image2:rootfs_task" + +In this example, the +``from_multiconfig`` is "target1" and the ``to_multiconfig`` is "target2". The +task on which the image whose recipe contains image_task depends on the +completion of the rootfs_task used to build out image2, which is +associated with the "target2" multiconfig. + +Once you set up this dependency, you can build the "target1" multiconfig +using a BitBake command as follows:: + + $ bitbake mc:target1:image1 + +This command executes all the tasks needed to create ``image1`` for the "target1" +multiconfig. Because of the dependency, BitBake also executes through +the ``rootfs_task`` for the "target2" multiconfig build. + +Having a recipe depend on the root filesystem of another build might not +seem that useful. Consider this change to the statement in the image1 +recipe:: + + image_task[mcdepends] = "mc:target1:target2:image2:image_task" + +In this case, BitBake must create ``image2`` for the "target2" build since +the "target1" build depends on it. + +Because "target1" and "target2" are enabled for multiple configuration +builds and have separate configuration files, BitBake places the +artifacts for each build in the respective temporary build directories. diff --git a/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst new file mode 100644 index 0000000..3378216 --- /dev/null +++ b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst @@ -0,0 +1,1981 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +==================== +Syntax and Operators +==================== + +| + +BitBake files have their own syntax. The syntax has similarities to +several other languages but also has some unique features. This section +describes the available syntax and operators as well as provides +examples. + +Basic Syntax +============ + +This section provides some basic syntax examples. + +Basic Variable Setting +---------------------- + +The following example sets ``VARIABLE`` to "value". This assignment +occurs immediately as the statement is parsed. It is a "hard" +assignment. :: + + VARIABLE = "value" + +As expected, if you include leading or +trailing spaces as part of an assignment, the spaces are retained:: + + VARIABLE = " value" + VARIABLE = "value " + +Setting ``VARIABLE`` to "" sets +it to an empty string, while setting the variable to " " sets it to a +blank space (i.e. these are not the same values). :: + + VARIABLE = "" + VARIABLE = " " + +You can use single quotes instead of double quotes when setting a +variable's value. Doing so allows you to use values that contain the +double quote character:: + + VARIABLE = 'I have a " in my value' + +.. note:: + + Unlike in Bourne shells, single quotes work identically to double + quotes in all other ways. They do not suppress variable expansions. + +Modifying Existing Variables +---------------------------- + +Sometimes you need to modify existing variables. Following are some +cases where you might find you want to modify an existing variable: + +- Customize a recipe that uses the variable. + +- Change a variable's default value used in a ``*.bbclass`` file. + +- Change the variable in a ``*.bbappend`` file to override the variable + in the original recipe. + +- Change the variable in a configuration file so that the value + overrides an existing configuration. + +Changing a variable value can sometimes depend on how the value was +originally assigned and also on the desired intent of the change. In +particular, when you append a value to a variable that has a default +value, the resulting value might not be what you expect. In this case, +the value you provide might replace the value rather than append to the +default value. + +If after you have changed a variable's value and something unexplained +occurs, you can use BitBake to check the actual value of the suspect +variable. You can make these checks for both configuration and recipe +level changes: + +- For configuration changes, use the following:: + + $ bitbake -e + + This + command displays variable values after the configuration files (i.e. + ``local.conf``, ``bblayers.conf``, ``bitbake.conf`` and so forth) + have been parsed. + + .. note:: + + Variables that are exported to the environment are preceded by the + string "export" in the command's output. + +- To find changes to a given variable in a specific recipe, use the + following:: + + $ bitbake recipename -e | grep VARIABLENAME=\" + + This command checks to see if the variable actually makes + it into a specific recipe. + +Line Joining +------------ + +Outside of :ref:`functions `, +BitBake joins any line ending in +a backslash character ("\\") with the following line before parsing +statements. The most common use for the "\\" character is to split +variable assignments over multiple lines, as in the following example:: + + FOO = "bar \ + baz \ + qaz" + +Both the "\\" character and the newline +character that follow it are removed when joining lines. Thus, no +newline characters end up in the value of ``FOO``. + +Consider this additional example where the two assignments both assign +"barbaz" to ``FOO``:: + + FOO = "barbaz" + FOO = "bar\ + baz" + +.. note:: + + BitBake does not interpret escape sequences like "\\n" in variable + values. For these to have an effect, the value must be passed to some + utility that interprets escape sequences, such as + ``printf`` or ``echo -n``. + +Variable Expansion +------------------ + +Variables can reference the contents of other variables using a syntax +that is similar to variable expansion in Bourne shells. The following +assignments result in A containing "aval" and B evaluating to +"preavalpost". :: + + A = "aval" + B = "pre${A}post" + +.. note:: + + Unlike in Bourne shells, the curly braces are mandatory: Only ``${FOO}`` and not + ``$FOO`` is recognized as an expansion of ``FOO``. + +The "=" operator does not immediately expand variable references in the +right-hand side. Instead, expansion is deferred until the variable +assigned to is actually used. The result depends on the current values +of the referenced variables. The following example should clarify this +behavior:: + + A = "${B} baz" + B = "${C} bar" + C = "foo" + *At this point, ${A} equals "foo bar baz"* + C = "qux" + *At this point, ${A} equals "qux bar baz"* + B = "norf" + *At this point, ${A} equals "norf baz"* + +Contrast this behavior with the +:ref:`bitbake-user-manual/bitbake-user-manual-metadata:immediate variable +expansion (:=)` operator. + +If the variable expansion syntax is used on a variable that does not +exist, the string is kept as is. For example, given the following +assignment, ``BAR`` expands to the literal string "${FOO}" as long as +``FOO`` does not exist. :: + + BAR = "${FOO}" + +Setting a default value (?=) +---------------------------- + +You can use the "?=" operator to achieve a "softer" assignment for a +variable. This type of assignment allows you to define a variable if it +is undefined when the statement is parsed, but to leave the value alone +if the variable has a value. Here is an example:: + + A ?= "aval" + +If ``A`` is +set at the time this statement is parsed, the variable retains its +value. However, if ``A`` is not set, the variable is set to "aval". + +.. note:: + + This assignment is immediate. Consequently, if multiple "?=" + assignments to a single variable exist, the first of those ends up + getting used. + +Setting a weak default value (??=) +---------------------------------- + +The weak default value of a variable is the value which that variable +will expand to if no value has been assigned to it via any of the other +assignment operators. The "??=" operator takes effect immediately, replacing +any previously defined weak default value. Here is an example:: + + W ??= "x" + A := "${W}" # Immediate variable expansion + W ??= "y" + B := "${W}" # Immediate variable expansion + W ??= "z" + C = "${W}" + W ?= "i" + +After parsing we will have:: + + A = "x" + B = "y" + C = "i" + W = "i" + +Appending and prepending non-override style will not substitute the weak +default value, which means that after parsing:: + + W ??= "x" + W += "y" + +we will have:: + + W = " y" + +On the other hand, override-style appends/prepends/removes are applied after +any active weak default value has been substituted:: + + W ??= "x" + W:append = "y" + +After parsing we will have:: + + W = "xy" + +Immediate variable expansion (:=) +--------------------------------- + +The ":=" operator results in a variable's contents being expanded +immediately, rather than when the variable is actually used:: + + T = "123" + A := "test ${T}" + T = "456" + B := "${T} ${C}" + C = "cval" + C := "${C}append" + +In this example, ``A`` contains "test 123", even though the final value +of :term:`T` is "456". The variable :term:`B` will end up containing "456 +cvalappend". This is because references to undefined variables are +preserved as is during (immediate)expansion. This is in contrast to GNU +Make, where undefined variables expand to nothing. The variable ``C`` +contains "cvalappend" since ``${C}`` immediately expands to "cval". + +.. _appending-and-prepending: + +Appending (+=) and prepending (=+) With Spaces +---------------------------------------------- + +Appending and prepending values is common and can be accomplished using +the "+=" and "=+" operators. These operators insert a space between the +current value and prepended or appended value. + +These operators take immediate effect during parsing. Here are some +examples:: + + B = "bval" + B += "additionaldata" + C = "cval" + C =+ "test" + +The variable :term:`B` contains "bval additionaldata" and ``C`` contains "test +cval". + +.. _appending-and-prepending-without-spaces: + +Appending (.=) and Prepending (=.) Without Spaces +------------------------------------------------- + +If you want to append or prepend values without an inserted space, use +the ".=" and "=." operators. + +These operators take immediate effect during parsing. Here are some +examples:: + + B = "bval" + B .= "additionaldata" + C = "cval" + C =. "test" + +The variable :term:`B` contains "bvaladditionaldata" and ``C`` contains +"testcval". + +Appending and Prepending (Override Style Syntax) +------------------------------------------------ + +You can also append and prepend a variable's value using an override +style syntax. When you use this syntax, no spaces are inserted. + +These operators differ from the ":=", ".=", "=.", "+=", and "=+" +operators in that their effects are applied at variable expansion time +rather than being immediately applied. Here are some examples:: + + B = "bval" + B:append = " additional data" + C = "cval" + C:prepend = "additional data " + D = "dval" + D:append = "additional data" + +The variable :term:`B` +becomes "bval additional data" and ``C`` becomes "additional data cval". +The variable ``D`` becomes "dvaladditional data". + +.. note:: + + You must control all spacing when you use the override syntax. + +It is also possible to append and prepend to shell functions and +BitBake-style Python functions. See the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:shell functions`" and ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:bitbake-style python functions`" +sections for examples. + +.. _removing-override-style-syntax: + +Removal (Override Style Syntax) +------------------------------- + +You can remove values from lists using the removal override style +syntax. Specifying a value for removal causes all occurrences of that +value to be removed from the variable. + +When you use this syntax, BitBake expects one or more strings. +Surrounding spaces and spacing are preserved. Here is an example:: + + FOO = "123 456 789 123456 123 456 123 456" + FOO:remove = "123" + FOO:remove = "456" + FOO2 = " abc def ghi abcdef abc def abc def def" + FOO2:remove = "\ + def \ + abc \ + ghi \ + " + +The variable ``FOO`` becomes +" 789 123456 " and ``FOO2`` becomes " abcdef ". + +Like ":append" and ":prepend", ":remove" is applied at variable +expansion time. + +Override Style Operation Advantages +----------------------------------- + +An advantage of the override style operations ":append", ":prepend", and +":remove" as compared to the "+=" and "=+" operators is that the +override style operators provide guaranteed operations. For example, +consider a class ``foo.bbclass`` that needs to add the value "val" to +the variable ``FOO``, and a recipe that uses ``foo.bbclass`` as follows:: + + inherit foo + FOO = "initial" + +If ``foo.bbclass`` uses the "+=" operator, +as follows, then the final value of ``FOO`` will be "initial", which is +not what is desired:: + + FOO += "val" + +If, on the other hand, ``foo.bbclass`` +uses the ":append" operator, then the final value of ``FOO`` will be +"initial val", as intended:: + + FOO:append = " val" + +.. note:: + + It is never necessary to use "+=" together with ":append". The following + sequence of assignments appends "barbaz" to FOO:: + + FOO:append = "bar" + FOO:append = "baz" + + + The only effect of changing the second assignment in the previous + example to use "+=" would be to add a space before "baz" in the + appended value (due to how the "+=" operator works). + +Another advantage of the override style operations is that you can +combine them with other overrides as described in the +":ref:`bitbake-user-manual/bitbake-user-manual-metadata:conditional syntax (overrides)`" section. + +Variable Flag Syntax +-------------------- + +Variable flags are BitBake's implementation of variable properties or +attributes. It is a way of tagging extra information onto a variable. +You can find more out about variable flags in general in the +":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" section. + +You can define, append, and prepend values to variable flags. All the +standard syntax operations previously mentioned work for variable flags +except for override style syntax (i.e. ":prepend", ":append", and +":remove"). + +Here are some examples showing how to set variable flags:: + + FOO[a] = "abc" + FOO[b] = "123" + FOO[a] += "456" + +The variable ``FOO`` has two flags: +``[a]`` and ``[b]``. The flags are immediately set to "abc" and "123", +respectively. The ``[a]`` flag becomes "abc 456". + +No need exists to pre-define variable flags. You can simply start using +them. One extremely common application is to attach some brief +documentation to a BitBake variable as follows:: + + CACHE[doc] = "The directory holding the cache of the metadata." + +Inline Python Variable Expansion +-------------------------------- + +You can use inline Python variable expansion to set variables. Here is +an example:: + + DATE = "${@time.strftime('%Y%m%d',time.gmtime())}" + +This example results in the ``DATE`` variable being set to the current date. + +Probably the most common use of this feature is to extract the value of +variables from BitBake's internal data dictionary, ``d``. The following +lines select the values of a package name and its version number, +respectively:: + + PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0] or 'defaultpkgname'}" + PV = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or '1.0'}" + +.. note:: + + Inline Python expressions work just like variable expansions insofar as the + "=" and ":=" operators are concerned. Given the following assignment, foo() + is called each time FOO is expanded:: + + FOO = "${@foo()}" + + Contrast this with the following immediate assignment, where foo() is only + called once, while the assignment is parsed:: + + FOO := "${@foo()}" + +For a different way to set variables with Python code during parsing, +see the +":ref:`bitbake-user-manual/bitbake-user-manual-metadata:anonymous python functions`" section. + +Unsetting variables +------------------- + +It is possible to completely remove a variable or a variable flag from +BitBake's internal data dictionary by using the "unset" keyword. Here is +an example:: + + unset DATE + unset do_fetch[noexec] + +These two statements remove the ``DATE`` and the ``do_fetch[noexec]`` flag. + +Providing Pathnames +------------------- + +When specifying pathnames for use with BitBake, do not use the tilde +("~") character as a shortcut for your home directory. Doing so might +cause BitBake to not recognize the path since BitBake does not expand +this character in the same way a shell would. + +Instead, provide a fuller path as the following example illustrates:: + + BBLAYERS ?= " \ + /home/scott-lenovo/LayerA \ + " + +Exporting Variables to the Environment +====================================== + +You can export variables to the environment of running tasks by using +the ``export`` keyword. For example, in the following example, the +``do_foo`` task prints "value from the environment" when run:: + + export ENV_VARIABLE + ENV_VARIABLE = "value from the environment" + + do_foo() { + bbplain "$ENV_VARIABLE" + } + +.. note:: + + BitBake does not expand ``$ENV_VARIABLE`` in this case because it lacks the + obligatory ``{}`` . Rather, ``$ENV_VARIABLE`` is expanded by the shell. + +It does not matter whether ``export ENV_VARIABLE`` appears before or +after assignments to ``ENV_VARIABLE``. + +It is also possible to combine ``export`` with setting a value for the +variable. Here is an example:: + + export ENV_VARIABLE = "variable-value" + +In the output of ``bitbake -e``, variables that are exported to the +environment are preceded by "export". + +Among the variables commonly exported to the environment are ``CC`` and +``CFLAGS``, which are picked up by many build systems. + +Conditional Syntax (Overrides) +============================== + +BitBake uses :term:`OVERRIDES` to control what +variables are overridden after BitBake parses recipes and configuration +files. This section describes how you can use :term:`OVERRIDES` as +conditional metadata, talks about key expansion in relationship to +:term:`OVERRIDES`, and provides some examples to help with understanding. + +Conditional Metadata +-------------------- + +You can use :term:`OVERRIDES` to conditionally select a specific version of +a variable and to conditionally append or prepend the value of a +variable. + +.. note:: + + Overrides can only use lower-case characters, digits and dashes. + In particular, colons are not permitted in override names as they are used to + separate overrides from each other and from the variable name. + +- *Selecting a Variable:* The :term:`OVERRIDES` variable is a + colon-character-separated list that contains items for which you want + to satisfy conditions. Thus, if you have a variable that is + conditional on "arm", and "arm" is in :term:`OVERRIDES`, then the + "arm"-specific version of the variable is used rather than the + non-conditional version. Here is an example:: + + OVERRIDES = "architecture:os:machine" + TEST = "default" + TEST:os = "osspecific" + TEST:nooverride = "othercondvalue" + + In this example, the :term:`OVERRIDES` + variable lists three overrides: "architecture", "os", and "machine". + The variable ``TEST`` by itself has a default value of "default". You + select the os-specific version of the ``TEST`` variable by appending + the "os" override to the variable (i.e. ``TEST:os``). + + To better understand this, consider a practical example that assumes + an OpenEmbedded metadata-based Linux kernel recipe file. The + following lines from the recipe file first set the kernel branch + variable ``KBRANCH`` to a default value, then conditionally override + that value based on the architecture of the build:: + + KBRANCH = "standard/base" + KBRANCH:qemuarm = "standard/arm-versatile-926ejs" + KBRANCH:qemumips = "standard/mti-malta32" + KBRANCH:qemuppc = "standard/qemuppc" + KBRANCH:qemux86 = "standard/common-pc/base" + KBRANCH:qemux86-64 = "standard/common-pc-64/base" + KBRANCH:qemumips64 = "standard/mti-malta64" + +- *Appending and Prepending:* BitBake also supports append and prepend + operations to variable values based on whether a specific item is + listed in :term:`OVERRIDES`. Here is an example:: + + DEPENDS = "glibc ncurses" + OVERRIDES = "machine:local" + DEPENDS:append:machine = "libmad" + + In this example, :term:`DEPENDS` becomes "glibc ncurses libmad". + + Again, using an OpenEmbedded metadata-based kernel recipe file as an + example, the following lines will conditionally append to the + ``KERNEL_FEATURES`` variable based on the architecture:: + + KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" + KERNEL_FEATURES:append:qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" + KERNEL_FEATURES:append:qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" + +- *Setting a Variable for a Single Task:* BitBake supports setting a + variable just for the duration of a single task. Here is an example:: + + FOO:task-configure = "val 1" + FOO:task-compile = "val 2" + + In the + previous example, ``FOO`` has the value "val 1" while the + ``do_configure`` task is executed, and the value "val 2" while the + ``do_compile`` task is executed. + + Internally, this is implemented by prepending the task (e.g. + "task-compile:") to the value of + :term:`OVERRIDES` for the local datastore of the + ``do_compile`` task. + + You can also use this syntax with other combinations (e.g. + "``:prepend``") as shown in the following example:: + + EXTRA_OEMAKE:prepend:task-compile = "${PARALLEL_MAKE} " + +.. note:: + + Before BitBake 1.52 (Honister 3.4), the syntax for :term:`OVERRIDES` + used ``_`` instead of ``:``, so you will still find a lot of documentation + using ``_append``, ``_prepend``, and ``_remove``, for example. + + For details, see the + :yocto_docs:`Overrides Syntax Changes ` + section in the Yocto Project manual migration notes. + +Key Expansion +------------- + +Key expansion happens when the BitBake datastore is finalized. To better +understand this, consider the following example:: + + A${B} = "X" + B = "2" + A2 = "Y" + +In this case, after all the parsing is complete, BitBake expands +``${B}`` into "2". This expansion causes ``A2``, which was set to "Y" +before the expansion, to become "X". + +.. _variable-interaction-worked-examples: + +Examples +-------- + +Despite the previous explanations that show the different forms of +variable definitions, it can be hard to work out exactly what happens +when variable operators, conditional overrides, and unconditional +overrides are combined. This section presents some common scenarios +along with explanations for variable interactions that typically confuse +users. + +There is often confusion concerning the order in which overrides and +various "append" operators take effect. Recall that an append or prepend +operation using ":append" and ":prepend" does not result in an immediate +assignment as would "+=", ".=", "=+", or "=.". Consider the following +example:: + + OVERRIDES = "foo" + A = "Z" + A:foo:append = "X" + +For this case, +``A`` is unconditionally set to "Z" and "X" is unconditionally and +immediately appended to the variable ``A:foo``. Because overrides have +not been applied yet, ``A:foo`` is set to "X" due to the append and +``A`` simply equals "Z". + +Applying overrides, however, changes things. Since "foo" is listed in +:term:`OVERRIDES`, the conditional variable ``A`` is replaced with the "foo" +version, which is equal to "X". So effectively, ``A:foo`` replaces +``A``. + +This next example changes the order of the override and the append:: + + OVERRIDES = "foo" + A = "Z" + A:append:foo = "X" + +For this case, before +overrides are handled, ``A`` is set to "Z" and ``A:append:foo`` is set +to "X". Once the override for "foo" is applied, however, ``A`` gets +appended with "X". Consequently, ``A`` becomes "ZX". Notice that spaces +are not appended. + +This next example has the order of the appends and overrides reversed +back as in the first example:: + + OVERRIDES = "foo" + A = "Y" + A:foo:append = "Z" + A:foo:append = "X" + +For this case, before any overrides are resolved, +``A`` is set to "Y" using an immediate assignment. After this immediate +assignment, ``A:foo`` is set to "Z", and then further appended with "X" +leaving the variable set to "ZX". Finally, applying the override for +"foo" results in the conditional variable ``A`` becoming "ZX" (i.e. +``A`` is replaced with ``A:foo``). + +This final example mixes in some varying operators:: + + A = "1" + A:append = "2" + A:append = "3" + A += "4" + A .= "5" + +For this case, the type of append +operators are affecting the order of assignments as BitBake passes +through the code multiple times. Initially, ``A`` is set to "1 45" +because of the three statements that use immediate operators. After +these assignments are made, BitBake applies the ":append" operations. +Those operations result in ``A`` becoming "1 4523". + +Sharing Functionality +===================== + +BitBake allows for metadata sharing through include files (``.inc``) and +class files (``.bbclass``). For example, suppose you have a piece of +common functionality such as a task definition that you want to share +between more than one recipe. In this case, creating a ``.bbclass`` file +that contains the common functionality and then using the ``inherit`` +directive in your recipes to inherit the class would be a common way to +share the task. + +This section presents the mechanisms BitBake provides to allow you to +share functionality between recipes. Specifically, the mechanisms +include ``include``, ``inherit``, :term:`INHERIT`, and ``require`` +directives. + +Locating Include and Class Files +-------------------------------- + +BitBake uses the :term:`BBPATH` variable to locate +needed include and class files. Additionally, BitBake searches the +current directory for ``include`` and ``require`` directives. + +.. note:: + + The BBPATH variable is analogous to the environment variable PATH . + +In order for include and class files to be found by BitBake, they need +to be located in a "classes" subdirectory that can be found in +:term:`BBPATH`. + +``inherit`` Directive +--------------------- + +When writing a recipe or class file, you can use the ``inherit`` +directive to inherit the functionality of a class (``.bbclass``). +BitBake only supports this directive when used within recipe and class +files (i.e. ``.bb`` and ``.bbclass``). + +The ``inherit`` directive is a rudimentary means of specifying +functionality contained in class files that your recipes require. For +example, you can easily abstract out the tasks involved in building a +package that uses Autoconf and Automake and put those tasks into a class +file and then have your recipe inherit that class file. + +As an example, your recipes could use the following directive to inherit +an ``autotools.bbclass`` file. The class file would contain common +functionality for using Autotools that could be shared across recipes:: + + inherit autotools + +In this case, BitBake would search for the directory +``classes/autotools.bbclass`` in :term:`BBPATH`. + +.. note:: + + You can override any values and functions of the inherited class + within your recipe by doing so after the "inherit" statement. + +If you want to use the directive to inherit multiple classes, separate +them with spaces. The following example shows how to inherit both the +``buildhistory`` and ``rm_work`` classes:: + + inherit buildhistory rm_work + +An advantage with the inherit directive as compared to both the +:ref:`include ` and :ref:`require ` +directives is that you can inherit class files conditionally. You can +accomplish this by using a variable expression after the ``inherit`` +statement. Here is an example:: + + inherit ${VARNAME} + +If ``VARNAME`` is +going to be set, it needs to be set before the ``inherit`` statement is +parsed. One way to achieve a conditional inherit in this case is to use +overrides:: + + VARIABLE = "" + VARIABLE:someoverride = "myclass" + +Another method is by using anonymous Python. Here is an example:: + + python () { + if condition == value: + d.setVar('VARIABLE', 'myclass') + else: + d.setVar('VARIABLE', '') + } + +Alternatively, you could use an in-line Python expression in the +following form:: + + inherit ${@'classname' if condition else ''} + inherit ${@functionname(params)} + +In all cases, if the expression evaluates to an +empty string, the statement does not trigger a syntax error because it +becomes a no-op. + +``include`` Directive +--------------------- + +BitBake understands the ``include`` directive. This directive causes +BitBake to parse whatever file you specify, and to insert that file at +that location. The directive is much like its equivalent in Make except +that if the path specified on the include line is a relative path, +BitBake locates the first file it can find within :term:`BBPATH`. + +The include directive is a more generic method of including +functionality as compared to the :ref:`inherit ` +directive, which is restricted to class (i.e. ``.bbclass``) files. The +include directive is applicable for any other kind of shared or +encapsulated functionality or configuration that does not suit a +``.bbclass`` file. + +As an example, suppose you needed a recipe to include some self-test +definitions:: + + include test_defs.inc + +.. note:: + + The include directive does not produce an error when the file cannot be + found. Consequently, it is recommended that if the file you are including is + expected to exist, you should use :ref:`require ` instead + of include . Doing so makes sure that an error is produced if the file cannot + be found. + +.. _require-inclusion: + +``require`` Directive +--------------------- + +BitBake understands the ``require`` directive. This directive behaves +just like the ``include`` directive with the exception that BitBake +raises a parsing error if the file to be included cannot be found. Thus, +any file you require is inserted into the file that is being parsed at +the location of the directive. + +The require directive, like the include directive previously described, +is a more generic method of including functionality as compared to the +:ref:`inherit ` directive, which is restricted to class +(i.e. ``.bbclass``) files. The require directive is applicable for any +other kind of shared or encapsulated functionality or configuration that +does not suit a ``.bbclass`` file. + +Similar to how BitBake handles :ref:`include `, if +the path specified on the require line is a relative path, BitBake +locates the first file it can find within :term:`BBPATH`. + +As an example, suppose you have two versions of a recipe (e.g. +``foo_1.2.2.bb`` and ``foo_2.0.0.bb``) where each version contains some +identical functionality that could be shared. You could create an +include file named ``foo.inc`` that contains the common definitions +needed to build "foo". You need to be sure ``foo.inc`` is located in the +same directory as your two recipe files as well. Once these conditions +are set up, you can share the functionality using a ``require`` +directive from within each recipe:: + + require foo.inc + +``INHERIT`` Configuration Directive +----------------------------------- + +When creating a configuration file (``.conf``), you can use the +:term:`INHERIT` configuration directive to inherit a +class. BitBake only supports this directive when used within a +configuration file. + +As an example, suppose you needed to inherit a class file called +``abc.bbclass`` from a configuration file as follows:: + + INHERIT += "abc" + +This configuration directive causes the named class to be inherited at +the point of the directive during parsing. As with the ``inherit`` +directive, the ``.bbclass`` file must be located in a "classes" +subdirectory in one of the directories specified in :term:`BBPATH`. + +.. note:: + + Because .conf files are parsed first during BitBake's execution, using + INHERIT to inherit a class effectively inherits the class globally (i.e. for + all recipes). + +If you want to use the directive to inherit multiple classes, you can +provide them on the same line in the ``local.conf`` file. Use spaces to +separate the classes. The following example shows how to inherit both +the ``autotools`` and ``pkgconfig`` classes:: + + INHERIT += "autotools pkgconfig" + +Functions +========= + +As with most languages, functions are the building blocks that are used +to build up operations into tasks. BitBake supports these types of +functions: + +- *Shell Functions:* Functions written in shell script and executed + either directly as functions, tasks, or both. They can also be called + by other shell functions. + +- *BitBake-Style Python Functions:* Functions written in Python and + executed by BitBake or other Python functions using + ``bb.build.exec_func()``. + +- *Python Functions:* Functions written in Python and executed by + Python. + +- *Anonymous Python Functions:* Python functions executed automatically + during parsing. + +Regardless of the type of function, you can only define them in class +(``.bbclass``) and recipe (``.bb`` or ``.inc``) files. + +Shell Functions +--------------- + +Functions written in shell script are executed either directly as +functions, tasks, or both. They can also be called by other shell +functions. Here is an example shell function definition:: + + some_function () { + echo "Hello World" + } + +When you create these types of functions in +your recipe or class files, you need to follow the shell programming +rules. The scripts are executed by ``/bin/sh``, which may not be a bash +shell but might be something such as ``dash``. You should not use +Bash-specific script (bashisms). + +Overrides and override-style operators like ``:append`` and ``:prepend`` +can also be applied to shell functions. Most commonly, this application +would be used in a ``.bbappend`` file to modify functions in the main +recipe. It can also be used to modify functions inherited from classes. + +As an example, consider the following:: + + do_foo() { + bbplain first + fn + } + + fn:prepend() { + bbplain second + } + + fn() { + bbplain third + } + + do_foo:append() { + bbplain fourth + } + +Running ``do_foo`` prints the following:: + + recipename do_foo: first + recipename do_foo: second + recipename do_foo: third + recipename do_foo: fourth + +.. note:: + + Overrides and override-style operators can be applied to any shell + function, not just :ref:`tasks `. + +You can use the ``bitbake -e recipename`` command to view the final +assembled function after all overrides have been applied. + +BitBake-Style Python Functions +------------------------------ + +These functions are written in Python and executed by BitBake or other +Python functions using ``bb.build.exec_func()``. + +An example BitBake function is:: + + python some_python_function () { + d.setVar("TEXT", "Hello World") + print d.getVar("TEXT") + } + +Because the +Python "bb" and "os" modules are already imported, you do not need to +import these modules. Also in these types of functions, the datastore +("d") is a global variable and is always automatically available. + +.. note:: + + Variable expressions (e.g. ``${X}`` ) are no longer expanded within Python + functions. This behavior is intentional in order to allow you to freely set + variable values to expandable expressions without having them expanded + prematurely. If you do wish to expand a variable within a Python function, + use ``d.getVar("X")`` . Or, for more complicated expressions, use ``d.expand()``. + +Similar to shell functions, you can also apply overrides and +override-style operators to BitBake-style Python functions. + +As an example, consider the following:: + + python do_foo:prepend() { + bb.plain("first") + } + + python do_foo() { + bb.plain("second") + } + + python do_foo:append() { + bb.plain("third") + } + +Running ``do_foo`` prints the following:: + + recipename do_foo: first + recipename do_foo: second + recipename do_foo: third + +You can use the ``bitbake -e recipename`` command to view +the final assembled function after all overrides have been applied. + +Python Functions +---------------- + +These functions are written in Python and are executed by other Python +code. Examples of Python functions are utility functions that you intend +to call from in-line Python or from within other Python functions. Here +is an example:: + + def get_depends(d): + if d.getVar('SOMECONDITION'): + return "dependencywithcond" + else: + return "dependency" + + SOMECONDITION = "1" + DEPENDS = "${@get_depends(d)}" + +This would result in :term:`DEPENDS` containing ``dependencywithcond``. + +Here are some things to know about Python functions: + +- Python functions can take parameters. + +- The BitBake datastore is not automatically available. Consequently, + you must pass it in as a parameter to the function. + +- The "bb" and "os" Python modules are automatically available. You do + not need to import them. + +BitBake-Style Python Functions Versus Python Functions +------------------------------------------------------ + +Following are some important differences between BitBake-style Python +functions and regular Python functions defined with "def": + +- Only BitBake-style Python functions can be :ref:`tasks `. + +- Overrides and override-style operators can only be applied to + BitBake-style Python functions. + +- Only regular Python functions can take arguments and return values. + +- :ref:`Variable flags ` such as + ``[dirs]``, ``[cleandirs]``, and ``[lockfiles]`` can be used on BitBake-style + Python functions, but not on regular Python functions. + +- BitBake-style Python functions generate a separate + ``${``\ :term:`T`\ ``}/run.``\ function-name\ ``.``\ pid + script that is executed to run the function, and also generate a log + file in ``${T}/log.``\ function-name\ ``.``\ pid if they are executed + as tasks. + + Regular Python functions execute "inline" and do not generate any + files in ``${T}``. + +- Regular Python functions are called with the usual Python syntax. + BitBake-style Python functions are usually tasks and are called + directly by BitBake, but can also be called manually from Python code + by using the ``bb.build.exec_func()`` function. Here is an example:: + + bb.build.exec_func("my_bitbake_style_function", d) + + .. note:: + + ``bb.build.exec_func()`` can also be used to run shell functions from Python + code. If you want to run a shell function before a Python function within + the same task, then you can use a parent helper Python function that + starts by running the shell function with ``bb.build.exec_func()`` and then + runs the Python code. + + To detect errors from functions executed with + ``bb.build.exec_func()``, you can catch the ``bb.build.FuncFailed`` + exception. + + .. note:: + + Functions in metadata (recipes and classes) should not themselves raise + ``bb.build.FuncFailed``. Rather, ``bb.build.FuncFailed`` should be viewed as a + general indicator that the called function failed by raising an + exception. For example, an exception raised by ``bb.fatal()`` will be caught + inside ``bb.build.exec_func()``, and a ``bb.build.FuncFailed`` will be raised in + response. + +Due to their simplicity, you should prefer regular Python functions over +BitBake-style Python functions unless you need a feature specific to +BitBake-style Python functions. Regular Python functions in metadata are +a more recent invention than BitBake-style Python functions, and older +code tends to use ``bb.build.exec_func()`` more often. + +Anonymous Python Functions +-------------------------- + +Sometimes it is useful to set variables or perform other operations +programmatically during parsing. To do this, you can define special +Python functions, called anonymous Python functions, that run at the end +of parsing. For example, the following conditionally sets a variable +based on the value of another variable:: + + python () { + if d.getVar('SOMEVAR') == 'value': + d.setVar('ANOTHERVAR', 'value2') + } + +An equivalent way to mark a function as an anonymous function is to give it +the name "__anonymous", rather than no name. + +Anonymous Python functions always run at the end of parsing, regardless +of where they are defined. If a recipe contains many anonymous +functions, they run in the same order as they are defined within the +recipe. As an example, consider the following snippet:: + + python () { + d.setVar('FOO', 'foo 2') + } + + FOO = "foo 1" + + python () { + d.appendVar('BAR',' bar 2') + } + + BAR = "bar 1" + +The previous example is conceptually +equivalent to the following snippet:: + + FOO = "foo 1" + BAR = "bar 1" + FOO = "foo 2" + BAR += "bar 2" + +``FOO`` ends up with the value "foo 2", and +``BAR`` with the value "bar 1 bar 2". Just as in the second snippet, the +values set for the variables within the anonymous functions become +available to tasks, which always run after parsing. + +Overrides and override-style operators such as "``:append``" are applied +before anonymous functions run. In the following example, ``FOO`` ends +up with the value "foo from anonymous":: + + FOO = "foo" + FOO:append = " from outside" + + python () { + d.setVar("FOO", "foo from anonymous") + } + +For methods +you can use with anonymous Python functions, see the +":ref:`bitbake-user-manual/bitbake-user-manual-metadata:functions you can call from within python`" +section. For a different method to run Python code during parsing, see +the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:inline python variable expansion`" section. + +Flexible Inheritance for Class Functions +---------------------------------------- + +Through coding techniques and the use of ``EXPORT_FUNCTIONS``, BitBake +supports exporting a function from a class such that the class function +appears as the default implementation of the function, but can still be +called if a recipe inheriting the class needs to define its own version +of the function. + +To understand the benefits of this feature, consider the basic scenario +where a class defines a task function and your recipe inherits the +class. In this basic scenario, your recipe inherits the task function as +defined in the class. If desired, your recipe can add to the start and +end of the function by using the ":prepend" or ":append" operations +respectively, or it can redefine the function completely. However, if it +redefines the function, there is no means for it to call the class +version of the function. ``EXPORT_FUNCTIONS`` provides a mechanism that +enables the recipe's version of the function to call the original +version of the function. + +To make use of this technique, you need the following things in place: + +- The class needs to define the function as follows:: + + classname_functionname + + For example, if you have a class file + ``bar.bbclass`` and a function named ``do_foo``, the class must + define the function as follows:: + + bar_do_foo + +- The class needs to contain the ``EXPORT_FUNCTIONS`` statement as + follows:: + + EXPORT_FUNCTIONS functionname + + For example, continuing with + the same example, the statement in the ``bar.bbclass`` would be as + follows:: + + EXPORT_FUNCTIONS do_foo + +- You need to call the function appropriately from within your recipe. + Continuing with the same example, if your recipe needs to call the + class version of the function, it should call ``bar_do_foo``. + Assuming ``do_foo`` was a shell function and ``EXPORT_FUNCTIONS`` was + used as above, the recipe's function could conditionally call the + class version of the function as follows:: + + do_foo() { + if [ somecondition ] ; then + bar_do_foo + else + # Do something else + fi + } + + To call your modified version of the function as defined in your recipe, + call it as ``do_foo``. + +With these conditions met, your single recipe can freely choose between +the original function as defined in the class file and the modified +function in your recipe. If you do not set up these conditions, you are +limited to using one function or the other. + +Tasks +===== + +Tasks are BitBake execution units that make up the steps that BitBake +can run for a given recipe. Tasks are only supported in recipes and +classes (i.e. in ``.bb`` files and files included or inherited from +``.bb`` files). By convention, tasks have names that start with "do\_". + +Promoting a Function to a Task +------------------------------ + +Tasks are either :ref:`shell functions ` or +:ref:`BitBake-style Python functions ` +that have been promoted to tasks by using the ``addtask`` command. The +``addtask`` command can also optionally describe dependencies between +the task and other tasks. Here is an example that shows how to define a +task and declare some dependencies:: + + python do_printdate () { + import time + print time.strftime('%Y%m%d', time.gmtime()) + } + addtask printdate after do_fetch before do_build + +The first argument to ``addtask`` is the name +of the function to promote to a task. If the name does not start with +"do\_", "do\_" is implicitly added, which enforces the convention that all +task names start with "do\_". + +In the previous example, the ``do_printdate`` task becomes a dependency +of the ``do_build`` task, which is the default task (i.e. the task run +by the ``bitbake`` command unless another task is specified explicitly). +Additionally, the ``do_printdate`` task becomes dependent upon the +``do_fetch`` task. Running the ``do_build`` task results in the +``do_printdate`` task running first. + +.. note:: + + If you try out the previous example, you might see that the + ``do_printdate`` + task is only run the first time you build the recipe with the + ``bitbake`` + command. This is because BitBake considers the task "up-to-date" + after that initial run. If you want to force the task to always be + rerun for experimentation purposes, you can make BitBake always + consider the task "out-of-date" by using the + :ref:`[nostamp] ` + variable flag, as follows:: + + do_printdate[nostamp] = "1" + + You can also explicitly run the task and provide the + -f option as follows:: + + $ bitbake recipe -c printdate -f + + When manually selecting a task to run with the bitbake ``recipe + -c task`` command, you can omit the "do\_" prefix as part of the task + name. + +You might wonder about the practical effects of using ``addtask`` +without specifying any dependencies as is done in the following example:: + + addtask printdate + +In this example, assuming dependencies have not been +added through some other means, the only way to run the task is by +explicitly selecting it with ``bitbake`` recipe ``-c printdate``. You +can use the ``do_listtasks`` task to list all tasks defined in a recipe +as shown in the following example:: + + $ bitbake recipe -c listtasks + +For more information on task dependencies, see the +":ref:`bitbake-user-manual/bitbake-user-manual-execution:dependencies`" section. + +See the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" section for information +on variable flags you can use with tasks. + +.. note:: + + While it's infrequent, it's possible to define multiple tasks as + dependencies when calling ``addtask``. For example, here's a snippet + from the OpenEmbedded class file ``package_tar.bbclass``:: + + addtask package_write_tar before do_build after do_packagedata do_package + + Note how the ``package_write_tar`` task has to wait until both of + ``do_packagedata`` and ``do_package`` complete. + +Deleting a Task +--------------- + +As well as being able to add tasks, you can delete them. Simply use the +``deltask`` command to delete a task. For example, to delete the example +task used in the previous sections, you would use:: + + deltask printdate + +If you delete a task using the ``deltask`` command and the task has +dependencies, the dependencies are not reconnected. For example, suppose +you have three tasks named ``do_a``, ``do_b``, and ``do_c``. +Furthermore, ``do_c`` is dependent on ``do_b``, which in turn is +dependent on ``do_a``. Given this scenario, if you use ``deltask`` to +delete ``do_b``, the implicit dependency relationship between ``do_c`` +and ``do_a`` through ``do_b`` no longer exists, and ``do_c`` +dependencies are not updated to include ``do_a``. Thus, ``do_c`` is free +to run before ``do_a``. + +If you want dependencies such as these to remain intact, use the +``[noexec]`` varflag to disable the task instead of using the +``deltask`` command to delete it:: + + do_b[noexec] = "1" + +Passing Information Into the Build Task Environment +--------------------------------------------------- + +When running a task, BitBake tightly controls the shell execution +environment of the build tasks to make sure unwanted contamination from +the build machine cannot influence the build. + +.. note:: + + By default, BitBake cleans the environment to include only those + things exported or listed in its passthrough list to ensure that the + build environment is reproducible and consistent. You can prevent this + "cleaning" by setting the :term:`BB_PRESERVE_ENV` variable. + +Consequently, if you do want something to get passed into the build task +environment, you must take these two steps: + +#. Tell BitBake to load what you want from the environment into the + datastore. You can do so through the + :term:`BB_ENV_PASSTHROUGH` and + :term:`BB_ENV_PASSTHROUGH_ADDITIONS` variables. For + example, assume you want to prevent the build system from accessing + your ``$HOME/.ccache`` directory. The following command adds the + the environment variable ``CCACHE_DIR`` to BitBake's passthrough + list to allow that variable into the datastore:: + + export BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS CCACHE_DIR" + +#. Tell BitBake to export what you have loaded into the datastore to the + task environment of every running task. Loading something from the + environment into the datastore (previous step) only makes it + available in the datastore. To export it to the task environment of + every running task, use a command similar to the following in your + local configuration file ``local.conf`` or your distribution + configuration file:: + + export CCACHE_DIR + + .. note:: + + A side effect of the previous steps is that BitBake records the + variable as a dependency of the build process in things like the + setscene checksums. If doing so results in unnecessary rebuilds of + tasks, you can also flag the variable so that the setscene code + ignores the dependency when it creates checksums. + +Sometimes, it is useful to be able to obtain information from the +original execution environment. BitBake saves a copy of the original +environment into a special variable named :term:`BB_ORIGENV`. + +The :term:`BB_ORIGENV` variable returns a datastore object that can be +queried using the standard datastore operators such as +``getVar(, False)``. The datastore object is useful, for example, to +find the original ``DISPLAY`` variable. Here is an example:: + + origenv = d.getVar("BB_ORIGENV", False) + bar = origenv.getVar("BAR", False) + +The previous example returns ``BAR`` from the original execution +environment. + +Variable Flags +============== + +Variable flags (varflags) help control a task's functionality and +dependencies. BitBake reads and writes varflags to the datastore using +the following command forms:: + + variable = d.getVarFlags("variable") + self.d.setVarFlags("FOO", {"func": True}) + +When working with varflags, the same syntax, with the exception of +overrides, applies. In other words, you can set, append, and prepend +varflags just like variables. See the +":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flag syntax`" section for details. + +BitBake has a defined set of varflags available for recipes and classes. +Tasks support a number of these flags which control various +functionality of the task: + +- ``[cleandirs]``: Empty directories that should be created before + the task runs. Directories that already exist are removed and + recreated to empty them. + +- ``[depends]``: Controls inter-task dependencies. See the + :term:`DEPENDS` variable and the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:inter-task + dependencies`" section for more information. + +- ``[deptask]``: Controls task build-time dependencies. See the + :term:`DEPENDS` variable and the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:build dependencies`" section for more information. + +- ``[dirs]``: Directories that should be created before the task + runs. Directories that already exist are left as is. The last + directory listed is used as the current working directory for the + task. + +- ``[lockfiles]``: Specifies one or more lockfiles to lock while the + task executes. Only one task may hold a lockfile, and any task that + attempts to lock an already locked file will block until the lock is + released. You can use this variable flag to accomplish mutual + exclusion. + +- ``[noexec]``: When set to "1", marks the task as being empty, with + no execution required. You can use the ``[noexec]`` flag to set up + tasks as dependency placeholders, or to disable tasks defined + elsewhere that are not needed in a particular recipe. + +- ``[nostamp]``: When set to "1", tells BitBake to not generate a + stamp file for a task, which implies the task should always be + executed. + + .. caution:: + + Any task that depends (possibly indirectly) on a ``[nostamp]`` task will + always be executed as well. This can cause unnecessary rebuilding if you + are not careful. + +- ``[number_threads]``: Limits tasks to a specific number of + simultaneous threads during execution. This varflag is useful when + your build host has a large number of cores but certain tasks need to + be rate-limited due to various kinds of resource constraints (e.g. to + avoid network throttling). ``number_threads`` works similarly to the + :term:`BB_NUMBER_THREADS` variable but is task-specific. + + Set the value globally. For example, the following makes sure the + ``do_fetch`` task uses no more than two simultaneous execution + threads: do_fetch[number_threads] = "2" + + .. warning:: + + - Setting the varflag in individual recipes rather than globally + can result in unpredictable behavior. + + - Setting the varflag to a value greater than the value used in + the :term:`BB_NUMBER_THREADS` variable causes ``number_threads`` to + have no effect. + +- ``[postfuncs]``: List of functions to call after the completion of + the task. + +- ``[prefuncs]``: List of functions to call before the task executes. + +- ``[rdepends]``: Controls inter-task runtime dependencies. See the + :term:`RDEPENDS` variable, the + :term:`RRECOMMENDS` variable, and the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:inter-task dependencies`" section for + more information. + +- ``[rdeptask]``: Controls task runtime dependencies. See the + :term:`RDEPENDS` variable, the + :term:`RRECOMMENDS` variable, and the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:runtime dependencies`" section for more + information. + +- ``[recideptask]``: When set in conjunction with ``recrdeptask``, + specifies a task that should be inspected for additional + dependencies. + +- ``[recrdeptask]``: Controls task recursive runtime dependencies. + See the :term:`RDEPENDS` variable, the + :term:`RRECOMMENDS` variable, and the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:recursive dependencies`" section for + more information. + +- ``[stamp-extra-info]``: Extra stamp information to append to the + task's stamp. As an example, OpenEmbedded uses this flag to allow + machine-specific tasks. + +- ``[umask]``: The umask to run the task under. + +Several varflags are useful for controlling how signatures are +calculated for variables. For more information on this process, see the +":ref:`bitbake-user-manual/bitbake-user-manual-execution:checksums (signatures)`" section. + +- ``[vardeps]``: Specifies a space-separated list of additional + variables to add to a variable's dependencies for the purposes of + calculating its signature. Adding variables to this list is useful, + for example, when a function refers to a variable in a manner that + does not allow BitBake to automatically determine that the variable + is referred to. + +- ``[vardepsexclude]``: Specifies a space-separated list of variables + that should be excluded from a variable's dependencies for the + purposes of calculating its signature. + +- ``[vardepvalue]``: If set, instructs BitBake to ignore the actual + value of the variable and instead use the specified value when + calculating the variable's signature. + +- ``[vardepvalueexclude]``: Specifies a pipe-separated list of + strings to exclude from the variable's value when calculating the + variable's signature. + +Events +====== + +BitBake allows installation of event handlers within recipe and class +files. Events are triggered at certain points during operation, such as +the beginning of operation against a given recipe (i.e. ``*.bb``), the +start of a given task, a task failure, a task success, and so forth. The +intent is to make it easy to do things like email notification on build +failures. + +Following is an example event handler that prints the name of the event +and the content of the :term:`FILE` variable:: + + addhandler myclass_eventhandler + python myclass_eventhandler() { + from bb.event import getName + print("The name of the Event is %s" % getName(e)) + print("The file we run for is %s" % d.getVar('FILE')) + } + myclass_eventhandler[eventmask] = "bb.event.BuildStarted + bb.event.BuildCompleted" + +In the previous example, an eventmask has been +set so that the handler only sees the "BuildStarted" and +"BuildCompleted" events. This event handler gets called every time an +event matching the eventmask is triggered. A global variable "e" is +defined, which represents the current event. With the ``getName(e)`` +method, you can get the name of the triggered event. The global +datastore is available as "d". In legacy code, you might see "e.data" +used to get the datastore. However, realize that "e.data" is deprecated +and you should use "d" going forward. + +The context of the datastore is appropriate to the event in question. +For example, "BuildStarted" and "BuildCompleted" events run before any +tasks are executed so would be in the global configuration datastore +namespace. No recipe-specific metadata exists in that namespace. The +"BuildStarted" and "BuildCompleted" events also run in the main +cooker/server process rather than any worker context. Thus, any changes +made to the datastore would be seen by other cooker/server events within +the current build but not seen outside of that build or in any worker +context. Task events run in the actual tasks in question consequently +have recipe-specific and task-specific contents. These events run in the +worker context and are discarded at the end of task execution. + +During a standard build, the following common events might occur. The +following events are the most common kinds of events that most metadata +might have an interest in viewing: + +- ``bb.event.ConfigParsed()``: Fired when the base configuration; which + consists of ``bitbake.conf``, ``base.bbclass`` and any global + :term:`INHERIT` statements; has been parsed. You can see multiple such + events when each of the workers parse the base configuration or if + the server changes configuration and reparses. Any given datastore + only has one such event executed against it, however. If + :term:`BB_INVALIDCONF` is set in the datastore by the event + handler, the configuration is reparsed and a new event triggered, + allowing the metadata to update configuration. + +- ``bb.event.HeartbeatEvent()``: Fires at regular time intervals of one + second. You can configure the interval time using the + ``BB_HEARTBEAT_EVENT`` variable. The event's "time" attribute is the + ``time.time()`` value when the event is triggered. This event is + useful for activities such as system state monitoring. + +- ``bb.event.ParseStarted()``: Fired when BitBake is about to start + parsing recipes. This event's "total" attribute represents the number + of recipes BitBake plans to parse. + +- ``bb.event.ParseProgress()``: Fired as parsing progresses. This + event's "current" attribute is the number of recipes parsed as well + as the "total" attribute. + +- ``bb.event.ParseCompleted()``: Fired when parsing is complete. This + event's "cached", "parsed", "skipped", "virtuals", "masked", and + "errors" attributes provide statistics for the parsing results. + +- ``bb.event.BuildStarted()``: Fired when a new build starts. BitBake + fires multiple "BuildStarted" events (one per configuration) when + multiple configuration (multiconfig) is enabled. + +- ``bb.build.TaskStarted()``: Fired when a task starts. This event's + "taskfile" attribute points to the recipe from which the task + originates. The "taskname" attribute, which is the task's name, + includes the ``do_`` prefix, and the "logfile" attribute point to + where the task's output is stored. Finally, the "time" attribute is + the task's execution start time. + +- ``bb.build.TaskInvalid()``: Fired if BitBake tries to execute a task + that does not exist. + +- ``bb.build.TaskFailedSilent()``: Fired for setscene tasks that fail + and should not be presented to the user verbosely. + +- ``bb.build.TaskFailed()``: Fired for normal tasks that fail. + +- ``bb.build.TaskSucceeded()``: Fired when a task successfully + completes. + +- ``bb.event.BuildCompleted()``: Fired when a build finishes. + +- ``bb.cooker.CookerExit()``: Fired when the BitBake server/cooker + shuts down. This event is usually only seen by the UIs as a sign they + should also shutdown. + +This next list of example events occur based on specific requests to the +server. These events are often used to communicate larger pieces of +information from the BitBake server to other parts of BitBake such as +user interfaces: + +- ``bb.event.TreeDataPreparationStarted()`` +- ``bb.event.TreeDataPreparationProgress()`` +- ``bb.event.TreeDataPreparationCompleted()`` +- ``bb.event.DepTreeGenerated()`` +- ``bb.event.CoreBaseFilesFound()`` +- ``bb.event.ConfigFilePathFound()`` +- ``bb.event.FilesMatchingFound()`` +- ``bb.event.ConfigFilesFound()`` +- ``bb.event.TargetsTreeGenerated()`` + +.. _variants-class-extension-mechanism: + +Variants --- Class Extension Mechanism +====================================== + +BitBake supports multiple incarnations of a recipe file via the +:term:`BBCLASSEXTEND` variable. + +The :term:`BBCLASSEXTEND` variable is a space separated list of classes used +to "extend" the recipe for each variant. Here is an example that results in a +second incarnation of the current recipe being available. This second +incarnation will have the "native" class inherited. :: + + BBCLASSEXTEND = "native" + +.. note:: + + The mechanism for this class extension is extremely specific to the + implementation. Usually, the recipe's :term:`PROVIDES` , :term:`PN` , and + :term:`DEPENDS` variables would need to be modified by the extension + class. For specific examples, see the OE-Core native , nativesdk , and + multilib classes. + +Dependencies +============ + +To allow for efficient parallel processing, BitBake handles dependencies +at the task level. Dependencies can exist both between tasks within a +single recipe and between tasks in different recipes. Following are +examples of each: + +- For tasks within a single recipe, a recipe's ``do_configure`` task + might need to complete before its ``do_compile`` task can run. + +- For tasks in different recipes, one recipe's ``do_configure`` task + might require another recipe's ``do_populate_sysroot`` task to finish + first such that the libraries and headers provided by the other + recipe are available. + +This section describes several ways to declare dependencies. Remember, +even though dependencies are declared in different ways, they are all +simply dependencies between tasks. + +.. _dependencies-internal-to-the-bb-file: + +Dependencies Internal to the ``.bb`` File +----------------------------------------- + +BitBake uses the ``addtask`` directive to manage dependencies that are +internal to a given recipe file. You can use the ``addtask`` directive +to indicate when a task is dependent on other tasks or when other tasks +depend on that recipe. Here is an example:: + + addtask printdate after do_fetch before do_build + +In this example, the ``do_printdate`` task +depends on the completion of the ``do_fetch`` task, and the ``do_build`` +task depends on the completion of the ``do_printdate`` task. + +.. note:: + + For a task to run, it must be a direct or indirect dependency of some + other task that is scheduled to run. + + For illustration, here are some examples: + + - The directive ``addtask mytask before do_configure`` causes + ``do_mytask`` to run before ``do_configure`` runs. Be aware that + ``do_mytask`` still only runs if its :ref:`input + checksum ` has changed since the last time it was + run. Changes to the input checksum of ``do_mytask`` also + indirectly cause ``do_configure`` to run. + + - The directive ``addtask mytask after do_configure`` by itself + never causes ``do_mytask`` to run. ``do_mytask`` can still be run + manually as follows:: + + $ bitbake recipe -c mytask + + Declaring ``do_mytask`` as a dependency of some other task that is + scheduled to run also causes it to run. Regardless, the task runs after + ``do_configure``. + +Build Dependencies +------------------ + +BitBake uses the :term:`DEPENDS` variable to manage +build time dependencies. The ``[deptask]`` varflag for tasks signifies +the task of each item listed in :term:`DEPENDS` that must complete before +that task can be executed. Here is an example:: + + do_configure[deptask] = "do_populate_sysroot" + +In this example, the ``do_populate_sysroot`` task +of each item in :term:`DEPENDS` must complete before ``do_configure`` can +execute. + +Runtime Dependencies +-------------------- + +BitBake uses the :term:`PACKAGES`, :term:`RDEPENDS`, and :term:`RRECOMMENDS` +variables to manage runtime dependencies. + +The :term:`PACKAGES` variable lists runtime packages. Each of those packages +can have :term:`RDEPENDS` and :term:`RRECOMMENDS` runtime dependencies. The +``[rdeptask]`` flag for tasks is used to signify the task of each item +runtime dependency which must have completed before that task can be +executed. :: + + do_package_qa[rdeptask] = "do_packagedata" + +In the previous +example, the ``do_packagedata`` task of each item in :term:`RDEPENDS` must +have completed before ``do_package_qa`` can execute. +Although :term:`RDEPENDS` contains entries from the +runtime dependency namespace, BitBake knows how to map them back +to the build-time dependency namespace, in which the tasks are defined. + +Recursive Dependencies +---------------------- + +BitBake uses the ``[recrdeptask]`` flag to manage recursive task +dependencies. BitBake looks through the build-time and runtime +dependencies of the current recipe, looks through the task's inter-task +dependencies, and then adds dependencies for the listed task. Once +BitBake has accomplished this, it recursively works through the +dependencies of those tasks. Iterative passes continue until all +dependencies are discovered and added. + +The ``[recrdeptask]`` flag is most commonly used in high-level recipes +that need to wait for some task to finish "globally". For example, +``image.bbclass`` has the following:: + + do_rootfs[recrdeptask] += "do_packagedata" + +This statement says that the ``do_packagedata`` task of +the current recipe and all recipes reachable (by way of dependencies) +from the image recipe must run before the ``do_rootfs`` task can run. + +BitBake allows a task to recursively depend on itself by +referencing itself in the task list:: + + do_a[recrdeptask] = "do_a do_b" + +In the same way as before, this means that the ``do_a`` +and ``do_b`` tasks of the current recipe and all +recipes reachable (by way of dependencies) from the recipe +must run before the ``do_a`` task can run. In this +case BitBake will ignore the current recipe's ``do_a`` +task circular dependency on itself. + +Inter-Task Dependencies +----------------------- + +BitBake uses the ``[depends]`` flag in a more generic form to manage +inter-task dependencies. This more generic form allows for +inter-dependency checks for specific tasks rather than checks for the +data in :term:`DEPENDS`. Here is an example:: + + do_patch[depends] = "quilt-native:do_populate_sysroot" + +In this example, the ``do_populate_sysroot`` task of the target ``quilt-native`` +must have completed before the ``do_patch`` task can execute. + +The ``[rdepends]`` flag works in a similar way but takes targets in the +runtime namespace instead of the build-time dependency namespace. + +Functions You Can Call From Within Python +========================================= + +BitBake provides many functions you can call from within Python +functions. This section lists the most commonly used functions, and +mentions where to find others. + +Functions for Accessing Datastore Variables +------------------------------------------- + +It is often necessary to access variables in the BitBake datastore using +Python functions. The BitBake datastore has an API that allows you this +access. Here is a list of available operations: + +.. list-table:: + :widths: auto + :header-rows: 1 + + * - *Operation* + - *Description* + * - ``d.getVar("X", expand)`` + - Returns the value of variable "X". Using "expand=True" expands the + value. Returns "None" if the variable "X" does not exist. + * - ``d.setVar("X", "value")`` + - Sets the variable "X" to "value" + * - ``d.appendVar("X", "value")`` + - Adds "value" to the end of the variable "X". Acts like ``d.setVar("X", + "value")`` if the variable "X" does not exist. + * - ``d.prependVar("X", "value")`` + - Adds "value" to the start of the variable "X". Acts like + ``d.setVar("X","value")`` if the variable "X" does not exist. + * - ``d.delVar("X")`` + - Deletes the variable "X" from the datastore. Does nothing if the variable + "X" does not exist. + * - ``d.renameVar("X", "Y")`` + - Renames the variable "X" to "Y". Does nothing if the variable "X" does + not exist. + * - ``d.getVarFlag("X", flag, expand)`` + - Returns the value of variable "X". Using "expand=True" expands the + value. Returns "None" if either the variable "X" or the named flag does + not exist. + * - ``d.setVarFlag("X", flag, "value")`` + - Sets the named flag for variable "X" to "value". + * - ``d.appendVarFlag("X", flag, "value")`` + - Appends "value" to the named flag on the variable "X". Acts like + ``d.setVarFlag("X", flag, "value")`` if the named flag does not exist. + * - ``d.prependVarFlag("X", flag, "value")`` + - Prepends "value" to the named flag on the variable "X". Acts like + ``d.setVarFlag("X", flag, "value")`` if the named flag does not exist. + * - ``d.delVarFlag("X", flag)`` + - Deletes the named flag on the variable "X" from the datastore. + * - ``d.setVarFlags("X", flagsdict)`` + - Sets the flags specified in the ``flagsdict()`` + parameter. ``setVarFlags`` does not clear previous flags. Think of this + operation as ``addVarFlags``. + * - ``d.getVarFlags("X")`` + - Returns a ``flagsdict`` of the flags for the variable "X". Returns "None" + if the variable "X" does not exist. + * - ``d.delVarFlags("X")`` + - Deletes all the flags for the variable "X". Does nothing if the variable + "X" does not exist. + * - ``d.expand(expression)`` + - Expands variable references in the specified string + expression. References to variables that do not exist are left as is. For + example, ``d.expand("foo ${X}")`` expands to the literal string "foo + ${X}" if the variable "X" does not exist. + +Other Functions +--------------- + +You can find many other functions that can be called from Python by +looking at the source code of the ``bb`` module, which is in +``bitbake/lib/bb``. For example, ``bitbake/lib/bb/utils.py`` includes +the commonly used functions ``bb.utils.contains()`` and +``bb.utils.mkdirhier()``, which come with docstrings. + +Task Checksums and Setscene +=========================== + +BitBake uses checksums (or signatures) along with the setscene to +determine if a task needs to be run. This section describes the process. +To help understand how BitBake does this, the section assumes an +OpenEmbedded metadata-based example. + +These checksums are stored in :term:`STAMP`. You can +examine the checksums using the following BitBake command:: + + $ bitbake-dumpsigs + +This command returns the signature data in a readable +format that allows you to examine the inputs used when the OpenEmbedded +build system generates signatures. For example, using +``bitbake-dumpsigs`` allows you to examine the ``do_compile`` task's +"sigdata" for a C application (e.g. ``bash``). Running the command also +reveals that the "CC" variable is part of the inputs that are hashed. +Any changes to this variable would invalidate the stamp and cause the +``do_compile`` task to run. + +The following list describes related variables: + +- :term:`BB_HASHCHECK_FUNCTION`: + Specifies the name of the function to call during the "setscene" part + of the task's execution in order to validate the list of task hashes. + +- :term:`BB_SETSCENE_DEPVALID`: + Specifies a function BitBake calls that determines whether BitBake + requires a setscene dependency to be met. + +- :term:`BB_TASKHASH`: Within an executing task, + this variable holds the hash of the task as returned by the currently + enabled signature generator. + +- :term:`STAMP`: The base path to create stamp files. + +- :term:`STAMPCLEAN`: Again, the base path to + create stamp files but can use wildcards for matching a range of + files for clean operations. + +Wildcard Support in Variables +============================= + +Support for wildcard use in variables varies depending on the context in +which it is used. For example, some variables and filenames allow +limited use of wildcards through the "``%``" and "``*``" characters. +Other variables or names support Python's +`glob `_ syntax, +`fnmatch `_ +syntax, or +`Regular Expression (re) `_ +syntax. + +For variables that have wildcard suport, the documentation describes +which form of wildcard, its use, and its limitations. diff --git a/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst new file mode 100644 index 0000000..12aef3c --- /dev/null +++ b/poky/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst @@ -0,0 +1,1488 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +================== +Variables Glossary +================== + +| + +This chapter lists common variables used by BitBake and gives an +overview of their function and contents. + +.. note:: + + Following are some points regarding the variables listed in this + glossary: + + - The variables listed in this glossary are specific to BitBake. + Consequently, the descriptions are limited to that context. + + - Also, variables exist in other systems that use BitBake (e.g. The + Yocto Project and OpenEmbedded) that have names identical to those + found in this glossary. For such cases, the variables in those + systems extend the functionality of the variable as it is + described here in this glossary. + +.. glossary:: + :sorted: + + :term:`ASSUME_PROVIDED` + Lists recipe names (:term:`PN` values) BitBake does not + attempt to build. Instead, BitBake assumes these recipes have already + been built. + + In OpenEmbedded-Core, :term:`ASSUME_PROVIDED` mostly specifies native + tools that should not be built. An example is ``git-native``, which + when specified allows for the Git binary from the host to be used + rather than building ``git-native``. + + :term:`AZ_SAS` + Azure Storage Shared Access Signature, when using the + :ref:`Azure Storage fetcher ` + This variable can be defined to be used by the fetcher to authenticate + and gain access to non-public artifacts. + :: + + AZ_SAS = ""se=2021-01-01&sp=r&sv=2018-11-09&sr=c&skoid=&sig="" + + For more information see Microsoft's Azure Storage documentation at + https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview + + + :term:`B` + The directory in which BitBake executes functions during a recipe's + build process. + + :term:`BB_ALLOWED_NETWORKS` + Specifies a space-delimited list of hosts that the fetcher is allowed + to use to obtain the required source code. Following are + considerations surrounding this variable: + + - This host list is only used if + :term:`BB_NO_NETWORK` is either not set or + set to "0". + + - Limited support for the "``*``" wildcard character for matching + against the beginning of host names exists. For example, the + following setting matches ``git.gnu.org``, ``ftp.gnu.org``, and + ``foo.git.gnu.org``. :: + + BB_ALLOWED_NETWORKS = "\*.gnu.org" + + .. important:: + + The use of the "``*``" character only works at the beginning of + a host name and it must be isolated from the remainder of the + host name. You cannot use the wildcard character in any other + location of the name or combined with the front part of the + name. + + For example, ``*.foo.bar`` is supported, while ``*aa.foo.bar`` + is not. + + - Mirrors not in the host list are skipped and logged in debug. + + - Attempts to access networks not in the host list cause a failure. + + Using :term:`BB_ALLOWED_NETWORKS` in conjunction with + :term:`PREMIRRORS` is very useful. Adding the + host you want to use to :term:`PREMIRRORS` results in the source code + being fetched from an allowed location and avoids raising an error + when a host that is not allowed is in a + :term:`SRC_URI` statement. This is because the + fetcher does not attempt to use the host listed in :term:`SRC_URI` after + a successful fetch from the :term:`PREMIRRORS` occurs. + + :term:`BB_BASEHASH_IGNORE_VARS` + Lists variables that are excluded from checksum and dependency data. + Variables that are excluded can therefore change without affecting + the checksum mechanism. A common example would be the variable for + the path of the build. BitBake's output should not (and usually does + not) depend on the directory in which it was built. + + :term:`BB_CHECK_SSL_CERTS` + Specifies if SSL certificates should be checked when fetching. The default + value is ``1`` and certificates are not checked if the value is set to ``0``. + + :term:`BB_CONSOLELOG` + Specifies the path to a log file into which BitBake's user interface + writes output during the build. + + :term:`BB_CURRENTTASK` + Contains the name of the currently running task. The name does not + include the ``do_`` prefix. + + :term:`BB_DANGLINGAPPENDS_WARNONLY` + Defines how BitBake handles situations where an append file + (``.bbappend``) has no corresponding recipe file (``.bb``). This + condition often occurs when layers get out of sync (e.g. ``oe-core`` + bumps a recipe version and the old recipe no longer exists and the + other layer has not been updated to the new version of the recipe + yet). + + The default fatal behavior is safest because it is the sane reaction + given something is out of sync. It is important to realize when your + changes are no longer being applied. + + :term:`BB_DEFAULT_TASK` + The default task to use when none is specified (e.g. with the ``-c`` + command line option). The task name specified should not include the + ``do_`` prefix. + + :term:`BB_DEFAULT_UMASK` + The default umask to apply to tasks if specified and no task specific + umask flag is set. + + :term:`BB_DISKMON_DIRS` + Monitors disk space and available inodes during the build and allows + you to control the build based on these parameters. + + Disk space monitoring is disabled by default. When setting this + variable, use the following form:: + + BB_DISKMON_DIRS = ",, [...]" + + where: + + is: + HALT: Immediately halt the build when + a threshold is broken. + STOPTASKS: Stop the build after the currently + executing tasks have finished when + a threshold is broken. + WARN: Issue a warning but continue the + build when a threshold is broken. + Subsequent warnings are issued as + defined by the + BB_DISKMON_WARNINTERVAL variable, + which must be defined. + + is: + Any directory you choose. You can specify one or + more directories to monitor by separating the + groupings with a space. If two directories are + on the same device, only the first directory + is monitored. + + is: + Either the minimum available disk space, + the minimum number of free inodes, or + both. You must specify at least one. To + omit one or the other, simply omit the value. + Specify the threshold using G, M, K for Gbytes, + Mbytes, and Kbytes, respectively. If you do + not specify G, M, or K, Kbytes is assumed by + default. Do not use GB, MB, or KB. + + Here are some examples:: + + BB_DISKMON_DIRS = "HALT,${TMPDIR},1G,100K WARN,${SSTATE_DIR},1G,100K" + BB_DISKMON_DIRS = "STOPTASKS,${TMPDIR},1G" + BB_DISKMON_DIRS = "HALT,${TMPDIR},,100K" + + The first example works only if you also set the + :term:`BB_DISKMON_WARNINTERVAL` + variable. This example causes the build system to immediately halt + when either the disk space in ``${TMPDIR}`` drops below 1 Gbyte or + the available free inodes drops below 100 Kbytes. Because two + directories are provided with the variable, the build system also + issues a warning when the disk space in the ``${SSTATE_DIR}`` + directory drops below 1 Gbyte or the number of free inodes drops + below 100 Kbytes. Subsequent warnings are issued during intervals as + defined by the :term:`BB_DISKMON_WARNINTERVAL` variable. + + The second example stops the build after all currently executing + tasks complete when the minimum disk space in the ``${TMPDIR}`` + directory drops below 1 Gbyte. No disk monitoring occurs for the free + inodes in this case. + + The final example immediately halts the build when the number of + free inodes in the ``${TMPDIR}`` directory drops below 100 Kbytes. No + disk space monitoring for the directory itself occurs in this case. + + :term:`BB_DISKMON_WARNINTERVAL` + Defines the disk space and free inode warning intervals. + + If you are going to use the :term:`BB_DISKMON_WARNINTERVAL` variable, you + must also use the :term:`BB_DISKMON_DIRS` + variable and define its action as "WARN". During the build, + subsequent warnings are issued each time disk space or number of free + inodes further reduces by the respective interval. + + If you do not provide a :term:`BB_DISKMON_WARNINTERVAL` variable and you + do use :term:`BB_DISKMON_DIRS` with the "WARN" action, the disk + monitoring interval defaults to the following: + BB_DISKMON_WARNINTERVAL = "50M,5K" + + When specifying the variable in your configuration file, use the + following form:: + + BB_DISKMON_WARNINTERVAL = "," + + where: + + is: + An interval of memory expressed in either + G, M, or K for Gbytes, Mbytes, or Kbytes, + respectively. You cannot use GB, MB, or KB. + + is: + An interval of free inodes expressed in either + G, M, or K for Gbytes, Mbytes, or Kbytes, + respectively. You cannot use GB, MB, or KB. + + Here is an example:: + + BB_DISKMON_DIRS = "WARN,${SSTATE_DIR},1G,100K" + BB_DISKMON_WARNINTERVAL = "50M,5K" + + These variables cause BitBake to + issue subsequent warnings each time the available disk space further + reduces by 50 Mbytes or the number of free inodes further reduces by + 5 Kbytes in the ``${SSTATE_DIR}`` directory. Subsequent warnings + based on the interval occur each time a respective interval is + reached beyond the initial warning (i.e. 1 Gbytes and 100 Kbytes). + + :term:`BB_ENV_PASSTHROUGH` + Specifies the internal list of variables to allow through from + the external environment into BitBake's datastore. If the value of + this variable is not specified (which is the default), the following + list is used: :term:`BBPATH`, :term:`BB_PRESERVE_ENV`, + :term:`BB_ENV_PASSTHROUGH`, and :term:`BB_ENV_PASSTHROUGH_ADDITIONS`. + + .. note:: + + You must set this variable in the external environment in order + for it to work. + + :term:`BB_ENV_PASSTHROUGH_ADDITIONS` + Specifies an additional set of variables to allow through from the + external environment into BitBake's datastore. This list of variables + are on top of the internal list set in + :term:`BB_ENV_PASSTHROUGH`. + + .. note:: + + You must set this variable in the external environment in order + for it to work. + + :term:`BB_FETCH_PREMIRRORONLY` + When set to "1", causes BitBake's fetcher module to only search + :term:`PREMIRRORS` for files. BitBake will not + search the main :term:`SRC_URI` or + :term:`MIRRORS`. + + :term:`BB_FILENAME` + Contains the filename of the recipe that owns the currently running + task. For example, if the ``do_fetch`` task that resides in the + ``my-recipe.bb`` is executing, the :term:`BB_FILENAME` variable contains + "/foo/path/my-recipe.bb". + + :term:`BB_GENERATE_MIRROR_TARBALLS` + Causes tarballs of the Git repositories, including the Git metadata, + to be placed in the :term:`DL_DIR` directory. Anyone + wishing to create a source mirror would want to enable this variable. + + For performance reasons, creating and placing tarballs of the Git + repositories is not the default action by BitBake. :: + + BB_GENERATE_MIRROR_TARBALLS = "1" + + :term:`BB_GENERATE_SHALLOW_TARBALLS` + Setting this variable to "1" when :term:`BB_GIT_SHALLOW` is also set to + "1" causes bitbake to generate shallow mirror tarballs when fetching git + repositories. The number of commits included in the shallow mirror + tarballs is controlled by :term:`BB_GIT_SHALLOW_DEPTH`. + + If both :term:`BB_GIT_SHALLOW` and :term:`BB_GENERATE_MIRROR_TARBALLS` are + enabled, bitbake will generate shallow mirror tarballs by default for git + repositories. This separate variable exists so that shallow tarball + generation can be enabled without needing to also enable normal mirror + generation if it is not desired. + + For example usage, see :term:`BB_GIT_SHALLOW`. + + :term:`BB_GIT_SHALLOW` + Setting this variable to "1" enables the support for fetching, using and + generating mirror tarballs of `shallow git repositories `_. + The external `git-make-shallow `_ + script is used for shallow mirror tarball creation. + + 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 + try to fetch the full mirror tarball and use that. + + When a mirror tarball is not available, a full git clone will be performed + regardless of whether this variable is set or not. Support for shallow + clones is not currently implemented as git does not directly support + shallow cloning a particular git commit hash (it only supports cloning + from a tag or branch reference). + + See also :term:`BB_GIT_SHALLOW_DEPTH` and + :term:`BB_GENERATE_SHALLOW_TARBALLS`. + + Example usage:: + + BB_GIT_SHALLOW ?= "1" + + # Keep only the top commit + BB_GIT_SHALLOW_DEPTH ?= "1" + + # This defaults to enabled if both BB_GIT_SHALLOW and + # BB_GENERATE_MIRROR_TARBALLS are enabled + BB_GENERATE_SHALLOW_TARBALLS ?= "1" + + :term:`BB_GIT_SHALLOW_DEPTH` + When used with :term:`BB_GENERATE_SHALLOW_TARBALLS`, this variable sets + the number of commits to include in generated shallow mirror tarballs. + With a depth of 1, only the commit referenced in :term:`SRCREV` is + included in the shallow mirror tarball. Increasing the depth includes + additional parent commits, working back through the commit history. + + If this variable is unset, bitbake will default to a depth of 1 when + generating shallow mirror tarballs. + + For example usage, see :term:`BB_GIT_SHALLOW`. + + :term:`BB_HASHCHECK_FUNCTION` + Specifies the name of the function to call during the "setscene" part + of the task's execution in order to validate the list of task hashes. + The function returns the list of setscene tasks that should be + executed. + + At this point in the execution of the code, the objective is to + quickly verify if a given setscene function is likely to work or not. + It's easier to check the list of setscene functions in one pass than + to call many individual tasks. The returned list need not be + completely accurate. A given setscene task can still later fail. + However, the more accurate the data returned, the more efficient the + build will be. + + :term:`BB_HASHCONFIG_IGNORE_VARS` + Lists variables that are excluded from base configuration checksum, + which is used to determine if the cache can be reused. + + One of the ways BitBake determines whether to re-parse the main + metadata is through checksums of the variables in the datastore of + the base configuration data. There are variables that you typically + want to exclude when checking whether or not to re-parse and thus + rebuild the cache. As an example, you would usually exclude ``TIME`` + and ``DATE`` because these variables are always changing. If you did + not exclude them, BitBake would never reuse the cache. + + :term:`BB_HASHSERVE` + Specifies the Hash Equivalence server to use. + + If set to ``auto``, BitBake automatically starts its own server + over a UNIX domain socket. An option is to connect this server + to an upstream one, by setting :term:`BB_HASHSERVE_UPSTREAM`. + + If set to ``unix://path``, BitBake will connect to an existing + hash server available over a UNIX domain socket. + + If set to ``host:port``, BitBake will connect to a remote server on the + specified host. This allows multiple clients to share the same + hash equivalence data. + + The remote server can be started manually through + the ``bin/bitbake-hashserv`` script provided by BitBake, + which supports UNIX domain sockets too. This script also allows + to start the server in read-only mode, to avoid accepting + equivalences that correspond to Share State caches that are + only available on specific clients. + + :term:`BB_HASHSERVE_UPSTREAM` + Specifies an upstream Hash Equivalence server. + + This optional setting is only useful when a local Hash Equivalence + server is started (setting :term:`BB_HASHSERVE` to ``auto``), + and you wish the local server to query an upstream server for + Hash Equivalence data. + + Example usage:: + + BB_HASHSERVE_UPSTREAM = "hashserv.yocto.io:8687" + + :term:`BB_INVALIDCONF` + Used in combination with the ``ConfigParsed`` event to trigger + re-parsing the base metadata (i.e. all the recipes). The + ``ConfigParsed`` event can set the variable to trigger the re-parse. + You must be careful to avoid recursive loops with this functionality. + + :term:`BB_LOGCONFIG` + Specifies the name of a config file that contains the user logging + configuration. See + :ref:`bitbake-user-manual/bitbake-user-manual-execution:logging` + for additional information + + :term:`BB_LOGFMT` + Specifies the name of the log files saved into + ``${``\ :term:`T`\ ``}``. By default, the :term:`BB_LOGFMT` + variable is undefined and the log filenames get created using the + following form:: + + log.{task}.{pid} + + If you want to force log files to take a specific name, you can set this + variable in a configuration file. + + :term:`BB_MULTI_PROVIDER_ALLOWED` + Allows you to suppress BitBake warnings caused when building two + separate recipes that provide the same output. + + BitBake normally issues a warning when building two different recipes + where each provides the same output. This scenario is usually + something the user does not want. However, cases do exist where it + makes sense, particularly in the ``virtual/*`` namespace. You can use + this variable to suppress BitBake's warnings. + + To use the variable, list provider names (e.g. recipe names, + ``virtual/kernel``, and so forth). + + :term:`BB_NICE_LEVEL` + Allows BitBake to run at a specific priority (i.e. nice level). + System permissions usually mean that BitBake can reduce its priority + but not raise it again. See :term:`BB_TASK_NICE_LEVEL` for + additional information. + + :term:`BB_NO_NETWORK` + Disables network access in the BitBake fetcher modules. With this + access disabled, any command that attempts to access the network + becomes an error. + + Disabling network access is useful for testing source mirrors, + running builds when not connected to the Internet, and when operating + in certain kinds of firewall environments. + + :term:`BB_NUMBER_PARSE_THREADS` + Sets the number of threads BitBake uses when parsing. By default, the + number of threads is equal to the number of cores on the system. + + :term:`BB_NUMBER_THREADS` + The maximum number of tasks BitBake should run in parallel at any one + time. If your host development system supports multiple cores, a good + rule of thumb is to set this variable to twice the number of cores. + + :term:`BB_ORIGENV` + Contains a copy of the original external environment in which BitBake + was run. The copy is taken before any variable values configured to + pass through from the external environment are filtered into BitBake's + datastore. + + .. note:: + + The contents of this variable is a datastore object that can be + queried using the normal datastore operations. + + :term:`BB_PRESERVE_ENV` + Disables environment filtering and instead allows all variables through + from the external environment into BitBake's datastore. + + .. note:: + + You must set this variable in the external environment in order + for it to work. + + :term:`BB_RUNFMT` + Specifies the name of the executable script files (i.e. run files) + saved into ``${``\ :term:`T`\ ``}``. By default, the + :term:`BB_RUNFMT` variable is undefined and the run filenames get + created using the following form:: + + run.{task}.{pid} + + If you want to force run files to take a specific name, you can set this + variable in a configuration file. + + :term:`BB_RUNTASK` + Contains the name of the currently executing task. The value includes + the "do\_" prefix. For example, if the currently executing task is + ``do_config``, the value is "do_config". + + :term:`BB_SCHEDULER` + Selects the name of the scheduler to use for the scheduling of + BitBake tasks. Three options exist: + + - *basic* --- the basic framework from which everything derives. Using + this option causes tasks to be ordered numerically as they are + parsed. + + - *speed* --- executes tasks first that have more tasks depending on + them. The "speed" option is the default. + + - *completion* --- causes the scheduler to try to complete a given + recipe once its build has started. + + :term:`BB_SCHEDULERS` + Defines custom schedulers to import. Custom schedulers need to be + derived from the ``RunQueueScheduler`` class. + + For information how to select a scheduler, see the + :term:`BB_SCHEDULER` variable. + + :term:`BB_SETSCENE_DEPVALID` + Specifies a function BitBake calls that determines whether BitBake + requires a setscene dependency to be met. + + When running a setscene task, BitBake needs to know which + dependencies of that setscene task also need to be run. Whether + dependencies also need to be run is highly dependent on the metadata. + The function specified by this variable returns a "True" or "False" + depending on whether the dependency needs to be met. + + :term:`BB_SIGNATURE_EXCLUDE_FLAGS` + Lists variable flags (varflags) that can be safely excluded from + checksum and dependency data for keys in the datastore. When + generating checksum or dependency data for keys in the datastore, the + flags set against that key are normally included in the checksum. + + For more information on varflags, see the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" + section. + + :term:`BB_SIGNATURE_HANDLER` + Defines the name of the signature handler BitBake uses. The signature + handler defines the way stamp files are created and handled, if and + how the signature is incorporated into the stamps, and how the + signature itself is generated. + + A new signature handler can be added by injecting a class derived + from the ``SignatureGenerator`` class into the global namespace. + + :term:`BB_SRCREV_POLICY` + Defines the behavior of the fetcher when it interacts with source + control systems and dynamic source revisions. The + :term:`BB_SRCREV_POLICY` variable is useful when working without a + network. + + The variable can be set using one of two policies: + + - *cache* --- retains the value the system obtained previously rather + than querying the source control system each time. + + - *clear* --- queries the source controls system every time. With this + policy, there is no cache. The "clear" policy is the default. + + :term:`BB_STRICT_CHECKSUM` + Sets a more strict checksum mechanism for non-local URLs. Setting + this variable to a value causes BitBake to report an error if it + encounters a non-local URL that does not have at least one checksum + specified. + + :term:`BB_TASK_IONICE_LEVEL` + Allows adjustment of a task's Input/Output priority. During + Autobuilder testing, random failures can occur for tasks due to I/O + starvation. These failures occur during various QEMU runtime + timeouts. You can use the :term:`BB_TASK_IONICE_LEVEL` variable to adjust + the I/O priority of these tasks. + + .. note:: + + This variable works similarly to the :term:`BB_TASK_NICE_LEVEL` + variable except with a task's I/O priorities. + + Set the variable as follows:: + + BB_TASK_IONICE_LEVEL = "class.prio" + + For *class*, the default value is "2", which is a best effort. You can use + "1" for realtime and "3" for idle. If you want to use realtime, you + must have superuser privileges. + + For *prio*, you can use any value from "0", which is the highest + priority, to "7", which is the lowest. The default value is "4". You + do not need any special privileges to use this range of priority + values. + + .. note:: + + In order for your I/O priority settings to take effect, you need the + Completely Fair Queuing (CFQ) Scheduler selected for the backing block + device. To select the scheduler, use the following command form where + device is the device (e.g. sda, sdb, and so forth):: + + $ sudo sh -c "echo cfq > /sys/block/device/queu/scheduler" + + :term:`BB_TASK_NICE_LEVEL` + Allows specific tasks to change their priority (i.e. nice level). + + You can use this variable in combination with task overrides to raise + or lower priorities of specific tasks. For example, on the `Yocto + Project `__ autobuilder, QEMU emulation + in images is given a higher priority as compared to build tasks to + ensure that images do not suffer timeouts on loaded systems. + + :term:`BB_TASKHASH` + Within an executing task, this variable holds the hash of the task as + returned by the currently enabled signature generator. + + :term:`BB_VERBOSE_LOGS` + Controls how verbose BitBake is during builds. If set, shell scripts + echo commands and shell script output appears on standard out + (stdout). + + :term:`BB_WORKERCONTEXT` + Specifies if the current context is executing a task. BitBake sets + this variable to "1" when a task is being executed. The value is not + set when the task is in server context during parsing or event + handling. + + :term:`BBCLASSEXTEND` + Allows you to extend a recipe so that it builds variants of the + software. Some examples of these variants for recipes from the + OpenEmbedded-Core metadata are "natives" such as ``quilt-native``, + which is a copy of Quilt built to run on the build system; "crosses" + such as ``gcc-cross``, which is a compiler built to run on the build + machine but produces binaries that run on the target ``MACHINE``; + "nativesdk", which targets the SDK machine instead of ``MACHINE``; + and "mulitlibs" in the form "``multilib:``\ multilib_name". + + To build a different variant of the recipe with a minimal amount of + code, it usually is as simple as adding the variable to your recipe. + Here are two examples. The "native" variants are from the + OpenEmbedded-Core metadata:: + + BBCLASSEXTEND =+ "native nativesdk" + BBCLASSEXTEND =+ "multilib:multilib_name" + + .. note:: + + Internally, the :term:`BBCLASSEXTEND` mechanism generates recipe + variants by rewriting variable values and applying overrides such + as ``_class-native``. For example, to generate a native version of + a recipe, a :term:`DEPENDS` on "foo" is + rewritten to a :term:`DEPENDS` on "foo-native". + + Even when using :term:`BBCLASSEXTEND`, the recipe is only parsed once. + Parsing once adds some limitations. For example, it is not + possible to include a different file depending on the variant, + since ``include`` statements are processed when the recipe is + parsed. + + :term:`BBDEBUG` + Sets the BitBake debug output level to a specific value as + incremented by the ``-D`` command line option. + + .. note:: + + You must set this variable in the external environment in order + for it to work. + + :term:`BBFILE_COLLECTIONS` + Lists the names of configured layers. These names are used to find + the other ``BBFILE_*`` variables. Typically, each layer appends its + name to this variable in its ``conf/layer.conf`` file. + + :term:`BBFILE_PATTERN` + Variable that expands to match files from + :term:`BBFILES` in a particular layer. This + variable is used in the ``conf/layer.conf`` file and must be suffixed + with the name of the specific layer (e.g. + ``BBFILE_PATTERN_emenlow``). + + :term:`BBFILE_PRIORITY` + Assigns the priority for recipe files in each layer. + + This variable is useful in situations where the same recipe appears + in more than one layer. Setting this variable allows you to + prioritize a layer against other layers that contain the same recipe + --- effectively letting you control the precedence for the multiple + layers. The precedence established through this variable stands + regardless of a recipe's version (:term:`PV` variable). + For example, a layer that has a recipe with a higher :term:`PV` value but + for which the :term:`BBFILE_PRIORITY` is set to have a lower precedence + still has a lower precedence. + + A larger value for the :term:`BBFILE_PRIORITY` variable results in a + higher precedence. For example, the value 6 has a higher precedence + than the value 5. If not specified, the :term:`BBFILE_PRIORITY` variable + is set based on layer dependencies (see the :term:`LAYERDEPENDS` variable + for more information. The default priority, if unspecified for a + layer with no dependencies, is the lowest defined priority + 1 (or 1 + if no priorities are defined). + + .. tip:: + + You can use the command bitbake-layers show-layers to list all + configured layers along with their priorities. + + :term:`BBFILES` + A space-separated list of recipe files BitBake uses to build + software. + + When specifying recipe files, you can pattern match using Python's + `glob `_ syntax. + For details on the syntax, see the documentation by following the + previous link. + + :term:`BBFILES_DYNAMIC` + Activates content depending on presence of identified layers. You + identify the layers by the collections that the layers define. + + Use the :term:`BBFILES_DYNAMIC` variable to avoid ``.bbappend`` files whose + corresponding ``.bb`` file is in a layer that attempts to modify other + layers through ``.bbappend`` but does not want to introduce a hard + dependency on those other layers. + + Additionally you can prefix the rule with "!" to add ``.bbappend`` and + ``.bb`` files in case a layer is not present. Use this avoid hard + dependency on those other layers. + + Use the following form for :term:`BBFILES_DYNAMIC`:: + + collection_name:filename_pattern + + The following example identifies two collection names and two filename + patterns:: + + BBFILES_DYNAMIC += "\ + clang-layer:${LAYERDIR}/bbappends/meta-clang/*/*/*.bbappend \ + core:${LAYERDIR}/bbappends/openembedded-core/meta/*/*/*.bbappend \ + " + + When the collection name is prefixed with "!" it will add the file pattern in case + the layer is absent:: + + BBFILES_DYNAMIC += "\ + !clang-layer:${LAYERDIR}/backfill/meta-clang/*/*/*.bb \ + " + + This next example shows an error message that occurs because invalid + entries are found, which cause parsing to fail:: + + ERROR: BBFILES_DYNAMIC entries must be of the form {!}:, not: + /work/my-layer/bbappends/meta-security-isafw/*/*/*.bbappend + /work/my-layer/bbappends/openembedded-core/meta/*/*/*.bbappend + + :term:`BBINCLUDED` + Contains a space-separated list of all of all files that BitBake's + parser included during parsing of the current file. + + :term:`BBINCLUDELOGS` + If set to a value, enables printing the task log when reporting a + failed task. + + :term:`BBINCLUDELOGS_LINES` + If :term:`BBINCLUDELOGS` is set, specifies + the maximum number of lines from the task log file to print when + reporting a failed task. If you do not set :term:`BBINCLUDELOGS_LINES`, + the entire log is printed. + + :term:`BBLAYERS` + Lists the layers to enable during the build. This variable is defined + in the ``bblayers.conf`` configuration file in the build directory. + Here is an example:: + + BBLAYERS = " \ + /home/scottrif/poky/meta \ + /home/scottrif/poky/meta-yocto \ + /home/scottrif/poky/meta-yocto-bsp \ + /home/scottrif/poky/meta-mykernel \ + " + + This example enables four layers, one of which is a custom, user-defined + layer named ``meta-mykernel``. + + :term:`BBLAYERS_FETCH_DIR` + Sets the base location where layers are stored. This setting is used + in conjunction with ``bitbake-layers layerindex-fetch`` and tells + ``bitbake-layers`` where to place the fetched layers. + + :term:`BBMASK` + Prevents BitBake from processing recipes and recipe append files. + + You can use the :term:`BBMASK` variable to "hide" these ``.bb`` and + ``.bbappend`` files. BitBake ignores any recipe or recipe append + files that match any of the expressions. It is as if BitBake does not + see them at all. Consequently, matching files are not parsed or + otherwise used by BitBake. + + The values you provide are passed to Python's regular expression + compiler. Consequently, the syntax follows Python's Regular + Expression (re) syntax. The expressions are compared against the full + paths to the files. For complete syntax information, see Python's + documentation at http://docs.python.org/3/library/re.html. + + The following example uses a complete regular expression to tell + BitBake to ignore all recipe and recipe append files in the + ``meta-ti/recipes-misc/`` directory:: + + BBMASK = "meta-ti/recipes-misc/" + + If you want to mask out multiple directories or recipes, you can + specify multiple regular expression fragments. This next example + masks out multiple directories and individual recipes:: + + BBMASK += "/meta-ti/recipes-misc/ meta-ti/recipes-ti/packagegroup/" + BBMASK += "/meta-oe/recipes-support/" + BBMASK += "/meta-foo/.*/openldap" + BBMASK += "opencv.*\.bbappend" + BBMASK += "lzma" + + .. note:: + + When specifying a directory name, use the trailing slash character + to ensure you match just that directory name. + + :term:`BBMULTICONFIG` + Enables BitBake to perform multiple configuration builds and lists + each separate configuration (multiconfig). You can use this variable + to cause BitBake to build multiple targets where each target has a + separate configuration. Define :term:`BBMULTICONFIG` in your + ``conf/local.conf`` configuration file. + + As an example, the following line specifies three multiconfigs, each + having a separate configuration file:: + + BBMULTIFONFIG = "configA configB configC" + + Each configuration file you use must reside in the + build directory within a directory named ``conf/multiconfig`` (e.g. + build_directory\ ``/conf/multiconfig/configA.conf``). + + For information on how to use :term:`BBMULTICONFIG` in an environment + that supports building targets with multiple configurations, see the + ":ref:`bitbake-user-manual/bitbake-user-manual-intro:executing a multiple configuration build`" + section. + + :term:`BBPATH` + Used by BitBake to locate class (``.bbclass``) and configuration + (``.conf``) files. This variable is analogous to the ``PATH`` + variable. + + If you run BitBake from a directory outside of the build directory, + you must be sure to set :term:`BBPATH` to point to the build directory. + Set the variable as you would any environment variable and then run + BitBake:: + + $ BBPATH="build_directory" + $ export BBPATH + $ bitbake target + + :term:`BBSERVER` + Points to the server that runs memory-resident BitBake. The variable + is only used when you employ memory-resident BitBake. + + :term:`BBTARGETS` + Allows you to use a configuration file to add to the list of + command-line target recipes you want to build. + + :term:`BITBAKE_UI` + Used to specify the UI module to use when running BitBake. Using this + variable is equivalent to using the ``-u`` command-line option. + + .. note:: + + You must set this variable in the external environment in order + for it to work. + + :term:`BUILDNAME` + A name assigned to the build. The name defaults to a datetime stamp + of when the build was started but can be defined by the metadata. + + :term:`BZRDIR` + The directory in which files checked out of a Bazaar system are + stored. + + :term:`CACHE` + Specifies the directory BitBake uses to store a cache of the metadata + so it does not need to be parsed every time BitBake is started. + + :term:`CVSDIR` + The directory in which files checked out under the CVS system are + stored. + + :term:`DEFAULT_PREFERENCE` + Specifies a weak bias for recipe selection priority. + + The most common usage of this is variable is to set it to "-1" within + a recipe for a development version of a piece of software. Using the + variable in this way causes the stable version of the recipe to build + by default in the absence of :term:`PREFERRED_VERSION` being used to + build the development version. + + .. note:: + + The bias provided by DEFAULT_PREFERENCE is weak and is overridden by + :term:`BBFILE_PRIORITY` if that variable is different between two + layers that contain different versions of the same recipe. + + :term:`DEPENDS` + Lists a recipe's build-time dependencies (i.e. other recipe files). + + Consider this simple example for two recipes named "a" and "b" that + produce similarly named packages. In this example, the :term:`DEPENDS` + statement appears in the "a" recipe:: + + DEPENDS = "b" + + Here, the dependency is such that the ``do_configure`` task for recipe "a" + depends on the ``do_populate_sysroot`` task of recipe "b". This means + anything that recipe "b" puts into sysroot is available when recipe "a" is + configuring itself. + + For information on runtime dependencies, see the :term:`RDEPENDS` + variable. + + :term:`DESCRIPTION` + A long description for the recipe. + + :term:`DL_DIR` + The central download directory used by the build process to store + downloads. By default, :term:`DL_DIR` gets files suitable for mirroring for + everything except Git repositories. If you want tarballs of Git + repositories, use the :term:`BB_GENERATE_MIRROR_TARBALLS` variable. + + :term:`EXCLUDE_FROM_WORLD` + Directs BitBake to exclude a recipe from world builds (i.e. + ``bitbake world``). During world builds, BitBake locates, parses and + builds all recipes found in every layer exposed in the + ``bblayers.conf`` configuration file. + + To exclude a recipe from a world build using this variable, set the + variable to "1" in the recipe. + + .. note:: + + Recipes added to :term:`EXCLUDE_FROM_WORLD` may still be built during a world + build in order to satisfy dependencies of other recipes. Adding a + recipe to :term:`EXCLUDE_FROM_WORLD` only ensures that the recipe is not + explicitly added to the list of build targets in a world build. + + :term:`FAKEROOT` + Contains the command to use when running a shell script in a fakeroot + environment. The :term:`FAKEROOT` variable is obsolete and has been + replaced by the other ``FAKEROOT*`` variables. See these entries in + the glossary for more information. + + :term:`FAKEROOTBASEENV` + Lists environment variables to set when executing the command defined + by :term:`FAKEROOTCMD` that starts the + bitbake-worker process in the fakeroot environment. + + :term:`FAKEROOTCMD` + Contains the command that starts the bitbake-worker process in the + fakeroot environment. + + :term:`FAKEROOTDIRS` + Lists directories to create before running a task in the fakeroot + environment. + + :term:`FAKEROOTENV` + Lists environment variables to set when running a task in the + fakeroot environment. For additional information on environment + variables and the fakeroot environment, see the + :term:`FAKEROOTBASEENV` variable. + + :term:`FAKEROOTNOENV` + Lists environment variables to set when running a task that is not in + the fakeroot environment. For additional information on environment + variables and the fakeroot environment, see the + :term:`FAKEROOTENV` variable. + + :term:`FETCHCMD` + Defines the command the BitBake fetcher module executes when running + fetch operations. You need to use an override suffix when you use the + variable (e.g. ``FETCHCMD_git`` or ``FETCHCMD_svn``). + + :term:`FILE` + Points at the current file. BitBake sets this variable during the + parsing process to identify the file being parsed. BitBake also sets + this variable when a recipe is being executed to identify the recipe + file. + + :term:`FILESPATH` + Specifies directories BitBake uses when searching for patches and + files. The "local" fetcher module uses these directories when + handling ``file://`` URLs. The variable behaves like a shell ``PATH`` + environment variable. The value is a colon-separated list of + directories that are searched left-to-right in order. + + :term:`GITDIR` + The directory in which a local copy of a Git repository is stored + when it is cloned. + + :term:`HGDIR` + The directory in which files checked out of a Mercurial system are + stored. + + :term:`HOMEPAGE` + Website where more information about the software the recipe is + building can be found. + + :term:`INHERIT` + Causes the named class or classes to be inherited globally. Anonymous + functions in the class or classes are not executed for the base + configuration and in each individual recipe. The OpenEmbedded build + system ignores changes to :term:`INHERIT` in individual recipes. + + For more information on :term:`INHERIT`, see the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:\`\`inherit\`\` configuration directive`" + section. + + :term:`LAYERDEPENDS` + Lists the layers, separated by spaces, upon which this recipe + depends. Optionally, you can specify a specific layer version for a + dependency by adding it to the end of the layer name with a colon, + (e.g. "anotherlayer:3" to be compared against + :term:`LAYERVERSION`\ ``_anotherlayer`` in + this case). BitBake produces an error if any dependency is missing or + the version numbers do not match exactly (if specified). + + You use this variable in the ``conf/layer.conf`` file. You must also + use the specific layer name as a suffix to the variable (e.g. + ``LAYERDEPENDS_mylayer``). + + :term:`LAYERDIR` + When used inside the ``layer.conf`` configuration file, this variable + provides the path of the current layer. This variable is not + available outside of ``layer.conf`` and references are expanded + immediately when parsing of the file completes. + + :term:`LAYERDIR_RE` + When used inside the ``layer.conf`` configuration file, this variable + provides the path of the current layer, escaped for use in a regular + expression (:term:`BBFILE_PATTERN`). This + variable is not available outside of ``layer.conf`` and references + are expanded immediately when parsing of the file completes. + + :term:`LAYERVERSION` + Optionally specifies the version of a layer as a single number. You + can use this variable within + :term:`LAYERDEPENDS` for another layer in + order to depend on a specific version of the layer. + + You use this variable in the ``conf/layer.conf`` file. You must also + use the specific layer name as a suffix to the variable (e.g. + ``LAYERDEPENDS_mylayer``). + + :term:`LICENSE` + The list of source licenses for the recipe. + + :term:`MIRRORS` + Specifies additional paths from which BitBake gets source code. When + the build system searches for source code, it first tries the local + download directory. If that location fails, the build system tries + locations defined by :term:`PREMIRRORS`, the + upstream source, and then locations specified by :term:`MIRRORS` in that + order. + + :term:`OVERRIDES` + BitBake uses :term:`OVERRIDES` to control what variables are overridden + after BitBake parses recipes and configuration files. + + Following is a simple example that uses an overrides list based on + machine architectures: OVERRIDES = "arm:x86:mips:powerpc" You can + find information on how to use :term:`OVERRIDES` in the + ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:conditional syntax + (overrides)`" section. + + :term:`P4DIR` + The directory in which a local copy of a Perforce depot is stored + when it is fetched. + + :term:`PACKAGES` + The list of packages the recipe creates. + + :term:`PACKAGES_DYNAMIC` + A promise that your recipe satisfies runtime dependencies for + optional modules that are found in other recipes. + :term:`PACKAGES_DYNAMIC` does not actually satisfy the dependencies, it + only states that they should be satisfied. For example, if a hard, + runtime dependency (:term:`RDEPENDS`) of another + package is satisfied during the build through the + :term:`PACKAGES_DYNAMIC` variable, but a package with the module name is + never actually produced, then the other package will be broken. + + :term:`PE` + The epoch of the recipe. By default, this variable is unset. The + variable is used to make upgrades possible when the versioning scheme + changes in some backwards incompatible way. + + :term:`PERSISTENT_DIR` + Specifies the directory BitBake uses to store data that should be + preserved between builds. In particular, the data stored is the data + that uses BitBake's persistent data API and the data used by the PR + Server and PR Service. + + :term:`PF` + Specifies the recipe or package name and includes all version and + revision numbers (i.e. ``eglibc-2.13-r20+svnr15508/`` and + ``bash-4.2-r1/``). + + :term:`PN` + The recipe name. + + :term:`PR` + The revision of the recipe. + + :term:`PREFERRED_PROVIDER` + Determines which recipe should be given preference when multiple + recipes provide the same item. You should always suffix the variable + with the name of the provided item, and you should set it to the + :term:`PN` of the recipe to which you want to give + precedence. Some examples:: + + PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" + PREFERRED_PROVIDER_virtual/xserver = "xserver-xf86" + PREFERRED_PROVIDER_virtual/libgl ?= "mesa" + + :term:`PREFERRED_PROVIDERS` + Determines which recipe should be given preference for cases where + multiple recipes provide the same item. Functionally, + :term:`PREFERRED_PROVIDERS` is identical to + :term:`PREFERRED_PROVIDER`. However, the :term:`PREFERRED_PROVIDERS` variable + lets you define preferences for multiple situations using the following + form:: + + PREFERRED_PROVIDERS = "xxx:yyy aaa:bbb ..." + + This form is a convenient replacement for the following:: + + PREFERRED_PROVIDER_xxx = "yyy" + PREFERRED_PROVIDER_aaa = "bbb" + + :term:`PREFERRED_VERSION` + If there are multiple versions of a recipe available, this variable + determines which version should be given preference. You must always + suffix the variable with the :term:`PN` you want to + select, and you should set :term:`PV` accordingly for + precedence. + + The :term:`PREFERRED_VERSION` variable supports limited wildcard use + through the "``%``" character. You can use the character to match any + number of characters, which can be useful when specifying versions + that contain long revision numbers that potentially change. Here are + two examples:: + + PREFERRED_VERSION_python = "2.7.3" + PREFERRED_VERSION_linux-yocto = "4.12%" + + .. important:: + + The use of the " % " character is limited in that it only works at the + end of the string. You cannot use the wildcard character in any other + location of the string. + + If a recipe with the specified version is not available, a warning + message will be shown. See :term:`REQUIRED_VERSION` if you want this + to be an error instead. + + :term:`PREMIRRORS` + Specifies additional paths from which BitBake gets source code. When + the build system searches for source code, it first tries the local + download directory. If that location fails, the build system tries + locations defined by :term:`PREMIRRORS`, the upstream source, and then + locations specified by :term:`MIRRORS` in that order. + + Typically, you would add a specific server for the build system to + attempt before any others by adding something like the following to + your configuration:: + + PREMIRRORS:prepend = "\ + git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ + ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ + http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ + https://.*/.* http://downloads.yoctoproject.org/mirror/sources/" + + These changes cause the build system to intercept Git, FTP, HTTP, and + HTTPS requests and direct them to the ``http://`` sources mirror. You can + use ``file://`` URLs to point to local directories or network shares as + well. + + :term:`PROVIDES` + A list of aliases by which a particular recipe can be known. By + default, a recipe's own :term:`PN` is implicitly already in its + :term:`PROVIDES` list. If a recipe uses :term:`PROVIDES`, the additional + aliases are synonyms for the recipe and can be useful satisfying + dependencies of other recipes during the build as specified by + :term:`DEPENDS`. + + Consider the following example :term:`PROVIDES` statement from a recipe + file ``libav_0.8.11.bb``:: + + PROVIDES += "libpostproc" + + The :term:`PROVIDES` statement results in the "libav" recipe also being known + as "libpostproc". + + In addition to providing recipes under alternate names, the + :term:`PROVIDES` mechanism is also used to implement virtual targets. A + virtual target is a name that corresponds to some particular + functionality (e.g. a Linux kernel). Recipes that provide the + functionality in question list the virtual target in :term:`PROVIDES`. + Recipes that depend on the functionality in question can include the + virtual target in :term:`DEPENDS` to leave the + choice of provider open. + + Conventionally, virtual targets have names on the form + "virtual/function" (e.g. "virtual/kernel"). The slash is simply part + of the name and has no syntactical significance. + + :term:`PRSERV_HOST` + The network based :term:`PR` service host and port. + + Following is an example of how the :term:`PRSERV_HOST` variable is set:: + + PRSERV_HOST = "localhost:0" + + You must set the variable if you want to automatically start a local PR + service. You can set :term:`PRSERV_HOST` to other values to use a remote PR + service. + + :term:`PV` + The version of the recipe. + + :term:`RDEPENDS` + Lists a package's runtime dependencies (i.e. other packages) that + must be installed in order for the built package to run correctly. If + a package in this list cannot be found during the build, you will get + a build error. + + Because the :term:`RDEPENDS` variable applies to packages being built, + you should always use the variable in a form with an attached package + name. For example, suppose you are building a development package + that depends on the ``perl`` package. In this case, you would use the + following :term:`RDEPENDS` statement:: + + RDEPENDS:${PN}-dev += "perl" + + In the example, the development package depends on the ``perl`` package. + Thus, the :term:`RDEPENDS` variable has the ``${PN}-dev`` package name as part + of the variable. + + BitBake supports specifying versioned dependencies. Although the + syntax varies depending on the packaging format, BitBake hides these + differences from you. Here is the general syntax to specify versions + with the :term:`RDEPENDS` variable:: + + RDEPENDS:${PN} = "package (operator version)" + + For ``operator``, you can specify the following:: + + = + < + > + <= + >= + + For example, the following sets up a dependency on version 1.2 or + greater of the package ``foo``:: + + RDEPENDS:${PN} = "foo (>= 1.2)" + + For information on build-time dependencies, see the :term:`DEPENDS` + variable. + + :term:`REPODIR` + The directory in which a local copy of a ``google-repo`` directory is + stored when it is synced. + + :term:`REQUIRED_VERSION` + If there are multiple versions of a recipe available, this variable + determines which version should be given preference. :term:`REQUIRED_VERSION` + works in exactly the same manner as :term:`PREFERRED_VERSION`, except + that if the specified version is not available then an error message + is shown and the build fails immediately. + + If both :term:`REQUIRED_VERSION` and :term:`PREFERRED_VERSION` are set for + the same recipe, the :term:`REQUIRED_VERSION` value applies. + + :term:`RPROVIDES` + A list of package name aliases that a package also provides. These + aliases are useful for satisfying runtime dependencies of other + packages both during the build and on the target (as specified by + :term:`RDEPENDS`). + + As with all package-controlling variables, you must always use the + variable in conjunction with a package name override. Here is an + example:: + + RPROVIDES:${PN} = "widget-abi-2" + + :term:`RRECOMMENDS` + A list of packages that extends the usability of a package being + built. The package being built does not depend on this list of + packages in order to successfully build, but needs them for the + extended usability. To specify runtime dependencies for packages, see + the :term:`RDEPENDS` variable. + + BitBake supports specifying versioned recommends. Although the syntax + varies depending on the packaging format, BitBake hides these + differences from you. Here is the general syntax to specify versions + with the :term:`RRECOMMENDS` variable:: + + RRECOMMENDS:${PN} = "package (operator version)" + + For ``operator``, you can specify the following:: + + = + < + > + <= + >= + + For example, the following sets up a recommend on version + 1.2 or greater of the package ``foo``:: + + RRECOMMENDS:${PN} = "foo (>= 1.2)" + + :term:`SECTION` + The section in which packages should be categorized. + + :term:`SRC_URI` + The list of source files --- local or remote. This variable tells + BitBake which bits to pull for the build and how to pull them. For + example, if the recipe or append file needs to fetch a single tarball + from the Internet, the recipe or append file uses a :term:`SRC_URI` + entry that specifies that tarball. On the other hand, if the recipe or + append file needs to fetch a tarball, apply two patches, and include + a custom file, the recipe or append file needs an :term:`SRC_URI` + variable that specifies all those sources. + + The following list explains the available URI protocols. URI + protocols are highly dependent on particular BitBake Fetcher + submodules. Depending on the fetcher BitBake uses, various URL + parameters are employed. For specifics on the supported Fetchers, see + the :ref:`bitbake-user-manual/bitbake-user-manual-fetching:fetchers` + section. + + - ``az://``: Fetches files from an Azure Storage account using HTTPS. + + - ``bzr://``: Fetches files from a Bazaar revision control + repository. + + - ``ccrc://``: Fetches files from a ClearCase repository. + + - ``cvs://``: Fetches files from a CVS revision control + repository. + + - ``file://``: Fetches files, which are usually files shipped + with the Metadata, from the local machine. + The path is relative to the :term:`FILESPATH` + variable. Thus, the build system searches, in order, from the + following directories, which are assumed to be a subdirectories of + the directory in which the recipe file (``.bb``) or append file + (``.bbappend``) resides: + + - ``${BPN}``: the base recipe name without any special suffix + or version numbers. + + - ``${BP}`` - ``${BPN}-${PV}``: the base recipe name and + version but without any special package name suffix. + + - ``files``: files within a directory, which is named ``files`` + and is also alongside the recipe or append file. + + - ``ftp://``: Fetches files from the Internet using FTP. + + - ``git://``: Fetches files from a Git revision control + repository. + + - ``gitsm://``: Fetches submodules from a Git revision control + repository. + + - ``hg://``: Fetches files from a Mercurial (``hg``) revision + control repository. + + - ``http://``: Fetches files from the Internet using HTTP. + + - ``https://``: Fetches files from the Internet using HTTPS. + + - ``npm://``: Fetches JavaScript modules from a registry. + + - ``osc://``: Fetches files from an OSC (OpenSUSE Build service) + revision control repository. + + - ``p4://``: Fetches files from a Perforce (``p4``) revision + control repository. + + - ``repo://``: Fetches files from a repo (Git) repository. + + - ``ssh://``: Fetches files from a secure shell. + + - ``svn://``: Fetches files from a Subversion (``svn``) revision + control repository. + + Here are some additional options worth mentioning: + + - ``downloadfilename``: Specifies the filename used when storing + the downloaded file. + + - ``name``: Specifies a name to be used for association with + :term:`SRC_URI` checksums or :term:`SRCREV` when you have more than one + file or git repository specified in :term:`SRC_URI`. For example:: + + SRC_URI = "git://example.com/foo.git;branch=main;name=first \ + git://example.com/bar.git;branch=main;name=second \ + http://example.com/file.tar.gz;name=third" + + SRCREV_first = "f1d2d2f924e986ac86fdf7b36c94bcdf32beec15" + SRCREV_second = "e242ed3bffccdf271b7fbaf34ed72d089537b42f" + SRC_URI[third.sha256sum] = "13550350a8681c84c861aac2e5b440161c2b33a3e4f302ac680ca5b686de48de" + + - ``subdir``: Places the file (or extracts its contents) into the + specified subdirectory. This option is useful for unusual tarballs + or other archives that do not have their files already in a + subdirectory within the archive. + + - ``subpath``: Limits the checkout to a specific subpath of the + tree when using the Git fetcher is used. + + - ``unpack``: Controls whether or not to unpack the file if it is + an archive. The default action is to unpack the file. + + :term:`SRCDATE` + The date of the source code used to build the package. This variable + applies only if the source was fetched from a Source Code Manager + (SCM). + + :term:`SRCREV` + The revision of the source code used to build the package. This + variable applies only when using Subversion, Git, Mercurial and + Bazaar. If you want to build a fixed revision and you want to avoid + performing a query on the remote repository every time BitBake parses + your recipe, you should specify a :term:`SRCREV` that is a full revision + identifier and not just a tag. + + :term:`SRCREV_FORMAT` + Helps construct valid :term:`SRCREV` values when + multiple source controlled URLs are used in + :term:`SRC_URI`. + + The system needs help constructing these values under these + circumstances. Each component in the :term:`SRC_URI` is assigned a name + and these are referenced in the :term:`SRCREV_FORMAT` variable. Consider + an example with URLs named "machine" and "meta". In this case, + :term:`SRCREV_FORMAT` could look like "machine_meta" and those names + would have the SCM versions substituted into each position. Only one + ``AUTOINC`` placeholder is added and if needed. And, this placeholder + is placed at the start of the returned string. + + :term:`STAMP` + Specifies the base path used to create recipe stamp files. The path + to an actual stamp file is constructed by evaluating this string and + then appending additional information. + + :term:`STAMPCLEAN` + Specifies the base path used to create recipe stamp files. Unlike the + :term:`STAMP` variable, :term:`STAMPCLEAN` can contain + wildcards to match the range of files a clean operation should + remove. BitBake uses a clean operation to remove any other stamps it + should be removing when creating a new stamp. + + :term:`SUMMARY` + A short summary for the recipe, which is 72 characters or less. + + :term:`SVNDIR` + The directory in which files checked out of a Subversion system are + stored. + + :term:`T` + Points to a directory were BitBake places temporary files, which + consist mostly of task logs and scripts, when building a particular + recipe. + + :term:`TOPDIR` + Points to the build directory. BitBake automatically sets this + variable. diff --git a/poky/bitbake/doc/bitbake-user-manual/figures/bb_multiconfig_files.png b/poky/bitbake/doc/bitbake-user-manual/figures/bb_multiconfig_files.png new file mode 100644 index 0000000000000000000000000000000000000000..041f06403b4cfc7cf7939ce44849d022d7b1337e GIT binary patch literal 19991 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 H{!jh|Ff{m- literal 0 HcmV?d00001 diff --git a/poky/bitbake/doc/bitbake-user-manual/figures/bitbake-title.png b/poky/bitbake/doc/bitbake-user-manual/figures/bitbake-title.png new file mode 100644 index 0000000000000000000000000000000000000000..cb290154da9ce02af38238a6c865515b8c41a118 GIT binary patch literal 5086 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 Fe*l}Pa$^7h literal 0 HcmV?d00001 diff --git a/poky/bitbake/doc/bitbake.1 b/poky/bitbake/doc/bitbake.1 new file mode 100644 index 0000000..7fc1652 --- /dev/null +++ b/poky/bitbake/doc/bitbake.1 @@ -0,0 +1,142 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH BITBAKE 1 "November 19, 2006" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +BitBake \- simple tool for the execution of tasks +.SH SYNOPSIS +.B bitbake +.RI [ options ] " packagenames" +.br +.SH DESCRIPTION +This manual page documents briefly the +.B bitbake +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBbitbake\fP is a program that executes the specified task (default is 'build') +for a given set of BitBake files. +.br +It expects that BBFILES is defined, which is a space separated list of files to +be executed. BBFILES does support wildcards. +.br +Default BBFILES are the .bb files in the current directory. +.SH OPTIONS +This program follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-\-version +Show version of program. +.TP +.B \-bBUILDFILE, \-\-buildfile=BUILDFILE +execute the task against this .bb file, rather than a package from BBFILES. +.TP +.B \-k, \-\-continue +continue as much as possible after an error. While the target that failed, and +those that depend on it, cannot be remade, the other dependencies of these +targets can be processed all the same. +.TP +.B \-a, \-\-tryaltconfigs +continue with builds by trying to use alternative providers where possible. +.TP +.B \-f, \-\-force +force run of specified cmd, regardless of stamp status +.TP +.B \-i, \-\-interactive +drop into the interactive mode also called the BitBake shell. +.TP +.B \-cCMD, \-\-cmd=CMD +Specify task to execute. Note that this only executes the specified task for +the providee and the packages it depends on, i.e. 'compile' does not implicitly +call stage for the dependencies (IOW: use only if you know what you are doing). +Depending on the base.bbclass a listtasks task is defined and will show +available tasks. +.TP +.B \-rFILE, \-\-read=FILE +read the specified file before bitbake.conf +.TP +.B \-v, \-\-verbose +output more chit-chat to the terminal +.TP +.B \-D, \-\-debug +Increase the debug level. You can specify this more than once. +.TP +.B \-n, \-\-dry-run +don't execute, just go through the motions +.TP +.B \-p, \-\-parse-only +quit after parsing the BB files (developers only) +.TP +.B \-s, \-\-show-versions +show current and preferred versions of all packages +.TP +.B \-e, \-\-environment +show the global or per-recipe environment (this is what used to be bbread) +.TP +.B \-g, \-\-graphviz +emit the dependency trees of the specified packages in the dot syntax +.TP +.B \-IIGNORED\_DOT\_DEPS, \-\-ignore-deps=IGNORED_DOT_DEPS +Stop processing at the given list of dependencies when generating dependency +graphs. This can help to make the graph more appealing +.TP +.B \-lDEBUG_DOMAINS, \-\-log-domains=DEBUG_DOMAINS +Show debug logging for the specified logging domains +.TP +.B \-P, \-\-profile +profile the command and print a report +.TP +.B \-uUI, \-\-ui=UI +User interface to use. Currently, knotty, taskexp or ncurses can be specified as UI. +.TP +.B \-tSERVERTYPE, \-\-servertype=SERVERTYPE +Choose which server to use, none, process or xmlrpc. +.TP +.B \-\-revisions-changed +Set the exit code depending on whether upstream floating revisions have changed or not. +.TP +.B \-\-server-only +Run bitbake without UI, the frontend can connect with bitbake server itself. +.TP +.B \-BBIND, \-\-bind=BIND +The name/address for the bitbake server to bind to. +.TP +.B \-\-no\-setscene +Do not run any setscene tasks, forces builds. + +.SH ENVIRONMENT VARIABLES +bitbake uses the following environment variables to control its +operation: +.TP +.B BITBAKE_UI +The bitbake user interface; overridden by the \fB-u\fP commandline option. + +.SH AUTHORS +BitBake was written by +Phil Blundell, +Holger Freyther, +Chris Larson, +Mickey Lauer, +Richard Purdie, +Holger Schurig +.PP +This manual page was written by Marcin Juszkiewicz +for the Debian project (but may be used by others). diff --git a/poky/bitbake/doc/conf.py b/poky/bitbake/doc/conf.py new file mode 100644 index 0000000..fc2ee08 --- /dev/null +++ b/poky/bitbake/doc/conf.py @@ -0,0 +1,101 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +# import os +# import sys +# sys.path.insert(0, os.path.abspath('.')) + +import sys +import datetime + +current_version = "dev" + +# String used in sidebar +version = 'Version: ' + current_version +if current_version == 'dev': + version = 'Version: Current Development' +# Version seen in documentation_options.js and hence in js switchers code +release = current_version + +# -- Project information ----------------------------------------------------- + +project = 'Bitbake' +copyright = '2004-%s, Richard Purdie, Chris Larson, and Phil Blundell' \ + % datetime.datetime.now().year +author = 'Richard Purdie, Chris Larson, and Phil Blundell' + +# external links and substitutions +extlinks = { + 'yocto_docs': ('https://docs.yoctoproject.org%s', None), + 'oe_lists': ('https://lists.openembedded.org%s', None), +} + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx.ext.autosectionlabel', + 'sphinx.ext.extlinks', +] +autosectionlabel_prefix_document = True + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +# master document name. The default changed from contents to index. so better +# set it ourselves. +master_doc = 'index' + +# create substitution for project configuration variables +rst_prolog = """ +.. |project_name| replace:: %s +.. |copyright| replace:: %s +.. |author| replace:: %s +""" % (project, copyright, author) + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +try: + import sphinx_rtd_theme + html_theme = 'sphinx_rtd_theme' +except ImportError: + sys.stderr.write("The Sphinx sphinx_rtd_theme HTML theme was not found.\ + \nPlease make sure to install the sphinx_rtd_theme python package.\n") + sys.exit(1) + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['sphinx-static'] + +# Add customm CSS and JS files +html_css_files = ['theme_overrides.css'] +html_js_files = ['switchers.js'] + +# Hide 'Created using Sphinx' text +html_show_sphinx = False + +# Add 'Last updated' on each page +html_last_updated_fmt = '%b %d, %Y' + +# Remove the trailing 'dot' in section numbers +html_secnumber_suffix = " " diff --git a/poky/bitbake/doc/genindex.rst b/poky/bitbake/doc/genindex.rst new file mode 100644 index 0000000..a4af06f --- /dev/null +++ b/poky/bitbake/doc/genindex.rst @@ -0,0 +1,3 @@ +===== +Index +===== diff --git a/poky/bitbake/doc/index.rst b/poky/bitbake/doc/index.rst new file mode 100644 index 0000000..3ff8b15 --- /dev/null +++ b/poky/bitbake/doc/index.rst @@ -0,0 +1,38 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +=================== +BitBake User Manual +=================== + +| + +.. toctree:: + :caption: Table of Contents + :numbered: + + bitbake-user-manual/bitbake-user-manual-intro + bitbake-user-manual/bitbake-user-manual-execution + bitbake-user-manual/bitbake-user-manual-metadata + bitbake-user-manual/bitbake-user-manual-fetching + bitbake-user-manual/bitbake-user-manual-ref-variables + bitbake-user-manual/bitbake-user-manual-hello + +.. toctree:: + :maxdepth: 1 + :hidden: + + genindex + releases + +---- + +.. include:: + +| BitBake Community +| Copyright |copy| |copyright| +| + +This work is licensed under the Creative Commons Attribution License. To view a +copy of this license, visit http://creativecommons.org/licenses/by/2.5/ or send +a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, +California 94041, USA. diff --git a/poky/bitbake/doc/releases.rst b/poky/bitbake/doc/releases.rst new file mode 100644 index 0000000..6635032 --- /dev/null +++ b/poky/bitbake/doc/releases.rst @@ -0,0 +1,172 @@ +.. SPDX-License-Identifier: CC-BY-2.5 + +=========================== + Supported Release Manuals +=========================== + +****************************** +Release Series 3.4 (honister) +****************************** + +- :yocto_docs:`3.4 BitBake User Manual ` +- :yocto_docs:`3.4.1 BitBake User Manual ` +- :yocto_docs:`3.4.2 BitBake User Manual ` + +****************************** +Release Series 3.3 (hardknott) +****************************** + +- :yocto_docs:`3.3 BitBake User Manual ` +- :yocto_docs:`3.3.1 BitBake User Manual ` +- :yocto_docs:`3.3.2 BitBake User Manual ` +- :yocto_docs:`3.3.3 BitBake User Manual ` +- :yocto_docs:`3.3.4 BitBake User Manual ` +- :yocto_docs:`3.3.5 BitBake User Manual ` + +**************************** +Release Series 3.1 (dunfell) +**************************** + +- :yocto_docs:`3.1 BitBake User Manual ` +- :yocto_docs:`3.1.1 BitBake User Manual ` +- :yocto_docs:`3.1.2 BitBake User Manual ` +- :yocto_docs:`3.1.3 BitBake User Manual ` +- :yocto_docs:`3.1.4 BitBake User Manual ` +- :yocto_docs:`3.1.5 BitBake User Manual ` +- :yocto_docs:`3.1.6 BitBake User Manual ` +- :yocto_docs:`3.1.7 BitBake User Manual ` +- :yocto_docs:`3.1.8 BitBake User Manual ` +- :yocto_docs:`3.1.9 BitBake User Manual ` +- :yocto_docs:`3.1.10 BitBake User Manual ` +- :yocto_docs:`3.1.11 BitBake User Manual ` +- :yocto_docs:`3.1.12 BitBake User Manual ` +- :yocto_docs:`3.1.13 BitBake User Manual ` +- :yocto_docs:`3.1.14 BitBake User Manual ` + +========================== + Outdated Release Manuals +========================== + +******************************* +Release Series 3.2 (gatesgarth) +******************************* + +- :yocto_docs:`3.2 BitBake User Manual ` +- :yocto_docs:`3.2.1 BitBake User Manual ` +- :yocto_docs:`3.2.2 BitBake User Manual ` +- :yocto_docs:`3.2.3 BitBake User Manual ` +- :yocto_docs:`3.2.4 BitBake User Manual ` + +************************* +Release Series 3.0 (zeus) +************************* + +- :yocto_docs:`3.0 BitBake User Manual ` +- :yocto_docs:`3.0.1 BitBake User Manual ` +- :yocto_docs:`3.0.2 BitBake User Manual ` +- :yocto_docs:`3.0.3 BitBake User Manual ` +- :yocto_docs:`3.0.4 BitBake User Manual ` + +**************************** +Release Series 2.7 (warrior) +**************************** + +- :yocto_docs:`2.7 BitBake User Manual ` +- :yocto_docs:`2.7.1 BitBake User Manual ` +- :yocto_docs:`2.7.2 BitBake User Manual ` +- :yocto_docs:`2.7.3 BitBake User Manual ` +- :yocto_docs:`2.7.4 BitBake User Manual ` + +************************* +Release Series 2.6 (thud) +************************* + +- :yocto_docs:`2.6 BitBake User Manual ` +- :yocto_docs:`2.6.1 BitBake User Manual ` +- :yocto_docs:`2.6.2 BitBake User Manual ` +- :yocto_docs:`2.6.3 BitBake User Manual ` +- :yocto_docs:`2.6.4 BitBake User Manual ` + +************************* +Release Series 2.5 (sumo) +************************* + +- :yocto_docs:`2.5 Documentation ` +- :yocto_docs:`2.5.1 Documentation ` +- :yocto_docs:`2.5.2 Documentation ` +- :yocto_docs:`2.5.3 Documentation ` + +************************** +Release Series 2.4 (rocko) +************************** + +- :yocto_docs:`2.4 BitBake User Manual ` +- :yocto_docs:`2.4.1 BitBake User Manual ` +- :yocto_docs:`2.4.2 BitBake User Manual ` +- :yocto_docs:`2.4.3 BitBake User Manual ` +- :yocto_docs:`2.4.4 BitBake User Manual ` + +************************* +Release Series 2.3 (pyro) +************************* + +- :yocto_docs:`2.3 BitBake User Manual ` +- :yocto_docs:`2.3.1 BitBake User Manual ` +- :yocto_docs:`2.3.2 BitBake User Manual ` +- :yocto_docs:`2.3.3 BitBake User Manual ` +- :yocto_docs:`2.3.4 BitBake User Manual ` + +************************** +Release Series 2.2 (morty) +************************** + +- :yocto_docs:`2.2 BitBake User Manual ` +- :yocto_docs:`2.2.1 BitBake User Manual ` +- :yocto_docs:`2.2.2 BitBake User Manual ` +- :yocto_docs:`2.2.3 BitBake User Manual ` + +**************************** +Release Series 2.1 (krogoth) +**************************** + +- :yocto_docs:`2.1 BitBake User Manual ` +- :yocto_docs:`2.1.1 BitBake User Manual ` +- :yocto_docs:`2.1.2 BitBake User Manual ` +- :yocto_docs:`2.1.3 BitBake User Manual ` + +*************************** +Release Series 2.0 (jethro) +*************************** + +- :yocto_docs:`1.9 BitBake User Manual ` +- :yocto_docs:`2.0 BitBake User Manual ` +- :yocto_docs:`2.0.1 BitBake User Manual ` +- :yocto_docs:`2.0.2 BitBake User Manual ` +- :yocto_docs:`2.0.3 BitBake User Manual ` + +************************* +Release Series 1.8 (fido) +************************* + +- :yocto_docs:`1.8 BitBake User Manual ` +- :yocto_docs:`1.8.1 BitBake User Manual ` +- :yocto_docs:`1.8.2 BitBake User Manual ` + +************************** +Release Series 1.7 (dizzy) +************************** + +- :yocto_docs:`1.7 BitBake User Manual ` +- :yocto_docs:`1.7.1 BitBake User Manual ` +- :yocto_docs:`1.7.2 BitBake User Manual ` +- :yocto_docs:`1.7.3 BitBake User Manual ` + +************************** +Release Series 1.6 (daisy) +************************** + +- :yocto_docs:`1.6 BitBake User Manual ` +- :yocto_docs:`1.6.1 BitBake User Manual ` +- :yocto_docs:`1.6.2 BitBake User Manual ` +- :yocto_docs:`1.6.3 BitBake User Manual ` + diff --git a/poky/bitbake/doc/sphinx-static/switchers.js b/poky/bitbake/doc/sphinx-static/switchers.js new file mode 100644 index 0000000..32113cf --- /dev/null +++ b/poky/bitbake/doc/sphinx-static/switchers.js @@ -0,0 +1,233 @@ +(function() { + 'use strict'; + + var all_versions = { + 'dev': 'dev (3.2)', + '3.1.2': '3.1.2', + '3.0.3': '3.0.3', + '2.7.4': '2.7.4', + }; + + var all_doctypes = { + 'single': 'Individual Webpages', + 'mega': "All-in-one 'Mega' Manual", + }; + + // Simple version comparision + // Return 1 if a > b + // Return -1 if a < b + // Return 0 if a == b + function ver_compare(a, b) { + if (a == "dev") { + return 1; + } + + if (a === b) { + return 0; + } + + var a_components = a.split("."); + var b_components = b.split("."); + + var len = Math.min(a_components.length, b_components.length); + + // loop while the components are equal + for (var i = 0; i < len; i++) { + // A bigger than B + if (parseInt(a_components[i]) > parseInt(b_components[i])) { + return 1; + } + + // B bigger than A + if (parseInt(a_components[i]) < parseInt(b_components[i])) { + return -1; + } + } + + // If one's a prefix of the other, the longer one is greater. + if (a_components.length > b_components.length) { + return 1; + } + + if (a_components.length < b_components.length) { + return -1; + } + + // Otherwise they are the same. + return 0; + } + + function build_version_select(current_series, current_version) { + var buf = [''); + return buf.join(''); + } + + function build_doctype_select(current_doctype) { + var buf = [''); + return buf.join(''); + } + + function navigate_to_first_existing(urls) { + // Navigate to the first existing URL in urls. + var url = urls.shift(); + + // Web browsers won't redirect file:// urls to file urls using ajax but + // its useful for local testing + if (url.startsWith("file://")) { + window.location.href = url; + return; + } + + if (urls.length == 0) { + window.location.href = url; + return; + } + $.ajax({ + url: url, + success: function() { + window.location.href = url; + }, + error: function() { + navigate_to_first_existing(urls); + } + }); + } + + function get_docroot_url() { + var url = window.location.href; + var root = DOCUMENTATION_OPTIONS.URL_ROOT; + + var urlarray = url.split('/'); + // Trim off anything after '/' + urlarray.pop(); + var depth = (root.match(/\.\.\//g) || []).length; + for (var i = 0; i < depth; i++) { + urlarray.pop(); + } + + return urlarray.join('/') + '/'; + } + + function on_version_switch() { + var selected_version = $(this).children('option:selected').attr('value'); + var url = window.location.href; + var current_version = DOCUMENTATION_OPTIONS.VERSION; + var docroot = get_docroot_url() + + var new_versionpath = selected_version + '/'; + if (selected_version == "dev") + new_versionpath = ''; + + // dev versions have no version prefix + if (current_version == "dev") { + var new_url = docroot + new_versionpath + url.replace(docroot, ""); + var fallback_url = docroot + new_versionpath; + } else { + var new_url = url.replace('/' + current_version + '/', '/' + new_versionpath); + var fallback_url = new_url.replace(url.replace(docroot, ""), ""); + } + + console.log(get_docroot_url()) + console.log(url + " to url " + new_url); + console.log(url + " to fallback " + fallback_url); + + if (new_url != url) { + navigate_to_first_existing([ + new_url, + fallback_url, + 'https://www.yoctoproject.org/docs/', + ]); + } + } + + function on_doctype_switch() { + var selected_doctype = $(this).children('option:selected').attr('value'); + var url = window.location.href; + if (selected_doctype == 'mega') { + var docroot = get_docroot_url() + var current_version = DOCUMENTATION_OPTIONS.VERSION; + // Assume manuals before 3.2 are using old docbook mega-manual + if (ver_compare(current_version, "3.2") < 0) { + var new_url = docroot + "mega-manual/mega-manual.html"; + } else { + var new_url = docroot + "singleindex.html"; + } + } else { + var new_url = url.replace("singleindex.html", "index.html") + } + + if (new_url != url) { + navigate_to_first_existing([ + new_url, + 'https://www.yoctoproject.org/docs/', + ]); + } + } + + // Returns the current doctype based upon the url + function doctype_segment_from_url(url) { + if (url.includes("singleindex") || url.includes("mega-manual")) + return "mega"; + return "single"; + } + + $(document).ready(function() { + var release = DOCUMENTATION_OPTIONS.VERSION; + var current_doctype = doctype_segment_from_url(window.location.href); + var current_series = release.substr(0, 3); + var version_select = build_version_select(current_series, release); + + $('.version_switcher_placeholder').html(version_select); + $('.version_switcher_placeholder select').bind('change', on_version_switch); + + var doctype_select = build_doctype_select(current_doctype); + + $('.doctype_switcher_placeholder').html(doctype_select); + $('.doctype_switcher_placeholder select').bind('change', on_doctype_switch); + + if (ver_compare(release, "3.1") < 0) { + $('#outdated-warning').html('Version ' + release + ' of the project is now considered obsolete, please select and use a more recent version'); + $('#outdated-warning').css('padding', '.5em'); + } else if (release != "dev") { + $.each(all_versions, function(version, title) { + var series = version.substr(0, 3); + if (series == current_series && version != release) { + $('#outdated-warning').html('This document is for outdated version ' + release + ', you should select the latest release version in this series, ' + version + '.'); + $('#outdated-warning').css('padding', '.5em'); + } + }); + } + }); +})(); diff --git a/poky/bitbake/doc/sphinx-static/theme_overrides.css b/poky/bitbake/doc/sphinx-static/theme_overrides.css new file mode 100644 index 0000000..e362677 --- /dev/null +++ b/poky/bitbake/doc/sphinx-static/theme_overrides.css @@ -0,0 +1,162 @@ +/* + SPDX-License-Identifier: CC-BY-2.0-UK +*/ + +body { + font-family: Verdana, Sans, sans-serif; + margin: 0em auto; + color: #333; +} + +h1,h2,h3,h4,h5,h6,h7 { + font-family: Arial, Sans; + color: #00557D; + clear: both; +} + +h1 { + font-size: 2em; + text-align: left; + padding: 0em 0em 0em 0em; + margin: 2em 0em 0em 0em; +} + +h2.subtitle { + margin: 0.10em 0em 3.0em 0em; + padding: 0em 0em 0em 0em; + font-size: 1.8em; + padding-left: 20%; + font-weight: normal; + font-style: italic; +} + +h2 { + margin: 2em 0em 0.66em 0em; + padding: 0.5em 0em 0em 0em; + font-size: 1.5em; + font-weight: bold; +} + +h3.subtitle { + margin: 0em 0em 1em 0em; + padding: 0em 0em 0em 0em; + font-size: 142.14%; + text-align: right; +} + +h3 { + margin: 1em 0em 0.5em 0em; + padding: 1em 0em 0em 0em; + font-size: 140%; + font-weight: bold; +} + +h4 { + margin: 1em 0em 0.5em 0em; + padding: 1em 0em 0em 0em; + font-size: 120%; + font-weight: bold; +} + +h5 { + margin: 1em 0em 0.5em 0em; + padding: 1em 0em 0em 0em; + font-size: 110%; + font-weight: bold; +} + +h6 { + margin: 1em 0em 0em 0em; + padding: 1em 0em 0em 0em; + font-size: 110%; + font-weight: bold; +} + +em { + font-weight: bold; +} + +.pre { + font-size: medium; + font-family: Courier, monospace; +} + +.wy-nav-content a { + text-decoration: underline; + color: #444; + background: transparent; +} + +.wy-nav-content a:hover { + text-decoration: underline; + background-color: #dedede; +} + +.wy-nav-content a:visited { + color: #444; +} + +[alt='Permalink'] { color: #eee; } +[alt='Permalink']:hover { color: black; } + +@media screen { + /* content column + * + * RTD theme's default is 800px as max width for the content, but we have + * tables with tons of columns, which need the full width of the view-port. + */ + + .wy-nav-content{max-width: none; } + + /* inline literal: drop the borderbox, padding and red color */ + code, .rst-content tt, .rst-content code { + color: inherit; + border: none; + padding: unset; + background: inherit; + font-size: 85%; + } + + .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal { + color: inherit; + } + + /* Admonition should be gray, not blue or green */ + .rst-content .note .admonition-title, + .rst-content .tip .admonition-title, + .rst-content .warning .admonition-title, + .rst-content .caution .admonition-title, + .rst-content .important .admonition-title { + background: #f0f0f2; + color: #00557D; + + } + + .rst-content .note, + .rst-content .tip, + .rst-content .important, + .rst-content .warning, + .rst-content .caution { + background: #f0f0f2; + } + + /* Remove the icon in front of note/tip element, and before the logo */ + .icon-home:before, .rst-content .admonition-title:before { + display: none + } + + /* a custom informalexample container is used in some doc */ + .informalexample { + border: 1px solid; + border-color: #aaa; + margin: 1em 0em; + padding: 1em; + page-break-inside: avoid; + } + + /* Remove the blue background in the top left corner, around the logo */ + .wy-side-nav-search { + background: inherit; + } + +} diff --git a/poky/bitbake/doc/template/Vera.ttf b/poky/bitbake/doc/template/Vera.ttf new file mode 100644 index 0000000000000000000000000000000000000000..58cd6b5e61eff273e920942e28041f8ddcf1e1b5 GIT binary patch literal 65932 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

    B-* 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 literal 0 HcmV?d00001 diff --git a/poky/bitbake/doc/template/draft.png b/poky/bitbake/doc/template/draft.png new file mode 100644 index 0000000000000000000000000000000000000000..53051a9dddd3a89b086af6aed145106f3f1f3a6c GIT binary patch literal 24847 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 E4@T" % (cls.__count__, len(cls.__dict__) - 3) + + __repr__ = __str__ + + def cow(cls): + class C(cls): + __count__ = cls.__count__ + 1 + + return C + + copy = cow + __call__ = cow + + def __setitem__(cls, key, value): + if value is not None and not isinstance(value, ImmutableTypes): + if not isinstance(value, COWMeta): + cls.__hasmutable__ = True + key += MUTABLE + setattr(cls, key, value) + + def __getmutable__(cls, key, readonly=False): + nkey = key + MUTABLE + try: + return cls.__dict__[nkey] + except KeyError: + pass + + value = getattr(cls, nkey) + if readonly: + return value + + if not cls.__warn__ is False and not isinstance(value, COWMeta): + print("Warning: Doing a copy because %s is a mutable type." % key, file=cls.__warn__) + try: + value = value.copy() + except AttributeError as e: + value = copy.copy(value) + setattr(cls, nkey, value) + return value + + __getmarker__ = [] + + def __getreadonly__(cls, key, default=__getmarker__): + """ + Get a value (even if mutable) which you promise not to change. + """ + return cls.__getitem__(key, default, True) + + def __getitem__(cls, key, default=__getmarker__, readonly=False): + try: + try: + value = getattr(cls, key) + except AttributeError: + value = cls.__getmutable__(key, readonly) + + # This is for values which have been deleted + if value is cls.__marker__: + raise AttributeError("key %s does not exist." % key) + + return value + except AttributeError as e: + if not default is cls.__getmarker__: + return default + + raise KeyError(str(e)) + + def __delitem__(cls, key): + cls.__setitem__(key, cls.__marker__) + + def __revertitem__(cls, key): + if key not in cls.__dict__: + key += MUTABLE + delattr(cls, key) + + def __contains__(cls, key): + return cls.has_key(key) + + def has_key(cls, key): + value = cls.__getreadonly__(key, cls.__marker__) + if value is cls.__marker__: + return False + return True + + def iter(cls, type, readonly=False): + for key in dir(cls): + if key.startswith("__"): + continue + + if key.endswith(MUTABLE): + key = key[:-len(MUTABLE)] + + if type == "keys": + yield key + + try: + if readonly: + value = cls.__getreadonly__(key) + else: + value = cls[key] + except KeyError: + continue + + if type == "values": + yield value + if type == "items": + yield (key, value) + return + + def iterkeys(cls): + return cls.iter("keys") + + def itervalues(cls, readonly=False): + if not cls.__warn__ is False and cls.__hasmutable__ and readonly is False: + print("Warning: If you aren't going to change any of the values call with True.", file=cls.__warn__) + return cls.iter("values", readonly) + + def iteritems(cls, readonly=False): + if not cls.__warn__ is False and cls.__hasmutable__ and readonly is False: + print("Warning: If you aren't going to change any of the values call with True.", file=cls.__warn__) + return cls.iter("items", readonly) + + +class COWSetMeta(COWDictMeta): + def __str__(cls): + # FIXME: I have magic numbers! + return "" % (cls.__count__, len(cls.__dict__) - 3) + + __repr__ = __str__ + + def cow(cls): + class C(cls): + __count__ = cls.__count__ + 1 + + return C + + def add(cls, value): + COWDictMeta.__setitem__(cls, repr(hash(value)), value) + + def remove(cls, value): + COWDictMeta.__delitem__(cls, repr(hash(value))) + + def __in__(cls, value): + return repr(hash(value)) in COWDictMeta + + def iterkeys(cls): + raise TypeError("sets don't have keys") + + def iteritems(cls): + raise TypeError("sets don't have 'items'") + + +# These are the actual classes you use! +class COWDictBase(metaclass=COWDictMeta): + __count__ = 0 + + +class COWSetBase(metaclass=COWSetMeta): + __count__ = 0 diff --git a/poky/bitbake/lib/bb/__init__.py b/poky/bitbake/lib/bb/__init__.py new file mode 100644 index 0000000..b8333bd --- /dev/null +++ b/poky/bitbake/lib/bb/__init__.py @@ -0,0 +1,218 @@ +# +# BitBake Build System Python Library +# +# Copyright (C) 2003 Holger Schurig +# Copyright (C) 2003, 2004 Chris Larson +# +# Based on Gentoo's portage.py. +# +# SPDX-License-Identifier: GPL-2.0-only +# + +__version__ = "2.0.0" + +import sys +if sys.version_info < (3, 6, 0): + raise RuntimeError("Sorry, python 3.6.0 or later is required for this version of bitbake") + + +class BBHandledException(Exception): + """ + The big dilemma for generic bitbake code is what information to give the user + when an exception occurs. Any exception inheriting this base exception class + has already provided information to the user via some 'fired' message type such as + an explicitly fired event using bb.fire, or a bb.error message. If bitbake + encounters an exception derived from this class, no backtrace or other information + will be given to the user, its assumed the earlier event provided the relevant information. + """ + pass + +import os +import logging + + +class NullHandler(logging.Handler): + def emit(self, record): + pass + +class BBLoggerMixin(object): + def __init__(self, *args, **kwargs): + # Does nothing to allow calling super() from derived classes + pass + + def setup_bblogger(self, name): + if name.split(".")[0] == "BitBake": + self.debug = self._debug_helper + + def _debug_helper(self, *args, **kwargs): + return self.bbdebug(1, *args, **kwargs) + + def debug2(self, *args, **kwargs): + return self.bbdebug(2, *args, **kwargs) + + def debug3(self, *args, **kwargs): + return self.bbdebug(3, *args, **kwargs) + + def bbdebug(self, level, msg, *args, **kwargs): + loglevel = logging.DEBUG - level + 1 + if not bb.event.worker_pid: + if self.name in bb.msg.loggerDefaultDomains and loglevel > (bb.msg.loggerDefaultDomains[self.name]): + return + if loglevel < bb.msg.loggerDefaultLogLevel: + return + return self.log(loglevel, msg, *args, **kwargs) + + def plain(self, msg, *args, **kwargs): + return self.log(logging.INFO + 1, msg, *args, **kwargs) + + def verbose(self, msg, *args, **kwargs): + return self.log(logging.INFO - 1, msg, *args, **kwargs) + + def verbnote(self, msg, *args, **kwargs): + return self.log(logging.INFO + 2, msg, *args, **kwargs) + + def warnonce(self, msg, *args, **kwargs): + return self.log(logging.WARNING - 1, msg, *args, **kwargs) + + def erroronce(self, msg, *args, **kwargs): + return self.log(logging.ERROR - 1, msg, *args, **kwargs) + + +Logger = logging.getLoggerClass() +class BBLogger(Logger, BBLoggerMixin): + def __init__(self, name, *args, **kwargs): + self.setup_bblogger(name) + super().__init__(name, *args, **kwargs) + +logging.raiseExceptions = False +logging.setLoggerClass(BBLogger) + +class BBLoggerAdapter(logging.LoggerAdapter, BBLoggerMixin): + def __init__(self, logger, *args, **kwargs): + self.setup_bblogger(logger.name) + super().__init__(logger, *args, **kwargs) + + if sys.version_info < (3, 6): + # These properties were added in Python 3.6. Add them in older versions + # for compatibility + @property + def manager(self): + return self.logger.manager + + @manager.setter + def manager(self, value): + self.logger.manager = value + + @property + def name(self): + return self.logger.name + + def __repr__(self): + logger = self.logger + level = logger.getLevelName(logger.getEffectiveLevel()) + return '<%s %s (%s)>' % (self.__class__.__name__, logger.name, level) + +logging.LoggerAdapter = BBLoggerAdapter + +logger = logging.getLogger("BitBake") +logger.addHandler(NullHandler()) +logger.setLevel(logging.DEBUG - 2) + +mainlogger = logging.getLogger("BitBake.Main") + +class PrefixLoggerAdapter(logging.LoggerAdapter): + def __init__(self, prefix, logger): + super().__init__(logger, {}) + self.__msg_prefix = prefix + + def process(self, msg, kwargs): + return "%s%s" %(self.__msg_prefix, msg), kwargs + +# This has to be imported after the setLoggerClass, as the import of bb.msg +# can result in construction of the various loggers. +import bb.msg + +from bb import fetch2 as fetch +sys.modules['bb.fetch'] = sys.modules['bb.fetch2'] + +# Messaging convenience functions +def plain(*args): + mainlogger.plain(''.join(args)) + +def debug(lvl, *args): + if isinstance(lvl, str): + mainlogger.warning("Passed invalid debug level '%s' to bb.debug", lvl) + args = (lvl,) + args + lvl = 1 + mainlogger.bbdebug(lvl, ''.join(args)) + +def note(*args): + mainlogger.info(''.join(args)) + +# +# A higher prioity note which will show on the console but isn't a warning +# +# Something is happening the user should be aware of but they probably did +# something to make it happen +# +def verbnote(*args): + mainlogger.verbnote(''.join(args)) + +# +# Warnings - things the user likely needs to pay attention to and fix +# +def warn(*args): + mainlogger.warning(''.join(args)) + +def warnonce(*args): + mainlogger.warnonce(''.join(args)) + +def error(*args, **kwargs): + mainlogger.error(''.join(args), extra=kwargs) + +def erroronce(*args): + mainlogger.erroronce(''.join(args)) + +def fatal(*args, **kwargs): + mainlogger.critical(''.join(args), extra=kwargs) + raise BBHandledException() + +def deprecated(func, name=None, advice=""): + """This is a decorator which can be used to mark functions + as deprecated. It will result in a warning being emitted + when the function is used.""" + import warnings + + if advice: + advice = ": %s" % advice + if name is None: + name = func.__name__ + + def newFunc(*args, **kwargs): + warnings.warn("Call to deprecated function %s%s." % (name, + advice), + category=DeprecationWarning, + stacklevel=2) + return func(*args, **kwargs) + newFunc.__name__ = func.__name__ + newFunc.__doc__ = func.__doc__ + newFunc.__dict__.update(func.__dict__) + return newFunc + +# For compatibility +def deprecate_import(current, modulename, fromlist, renames = None): + """Import objects from one module into another, wrapping them with a DeprecationWarning""" + import sys + + module = __import__(modulename, fromlist = fromlist) + for position, objname in enumerate(fromlist): + obj = getattr(module, objname) + newobj = deprecated(obj, "{0}.{1}".format(current, objname), + "Please use {0}.{1} instead".format(modulename, objname)) + if renames: + newname = renames[position] + else: + newname = objname + + setattr(sys.modules[current], newname, newobj) + diff --git a/poky/bitbake/lib/bb/asyncrpc/__init__.py b/poky/bitbake/lib/bb/asyncrpc/__init__.py new file mode 100644 index 0000000..9a85e99 --- /dev/null +++ b/poky/bitbake/lib/bb/asyncrpc/__init__.py @@ -0,0 +1,33 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import itertools +import json + +# The Python async server defaults to a 64K receive buffer, so we hardcode our +# maximum chunk size. It would be better if the client and server reported to +# each other what the maximum chunk sizes were, but that will slow down the +# connection setup with a round trip delay so I'd rather not do that unless it +# is necessary +DEFAULT_MAX_CHUNK = 32 * 1024 + + +def chunkify(msg, max_chunk): + if len(msg) < max_chunk - 1: + yield ''.join((msg, "\n")) + else: + yield ''.join((json.dumps({ + 'chunk-stream': None + }), "\n")) + + args = [iter(msg)] * (max_chunk - 1) + for m in map(''.join, itertools.zip_longest(*args, fillvalue='')): + yield ''.join(itertools.chain(m, "\n")) + yield "\n" + + +from .client import AsyncClient, Client +from .serv import AsyncServer, AsyncServerConnection, ClientError, ServerError diff --git a/poky/bitbake/lib/bb/asyncrpc/client.py b/poky/bitbake/lib/bb/asyncrpc/client.py new file mode 100644 index 0000000..fa042bb --- /dev/null +++ b/poky/bitbake/lib/bb/asyncrpc/client.py @@ -0,0 +1,178 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import abc +import asyncio +import json +import os +import socket +import sys +from . import chunkify, DEFAULT_MAX_CHUNK + + +class AsyncClient(object): + def __init__(self, proto_name, proto_version, logger, timeout=30): + self.reader = None + self.writer = None + self.max_chunk = DEFAULT_MAX_CHUNK + self.proto_name = proto_name + self.proto_version = proto_version + self.logger = logger + self.timeout = timeout + + async def connect_tcp(self, address, port): + async def connect_sock(): + return await asyncio.open_connection(address, port) + + self._connect_sock = connect_sock + + async def connect_unix(self, path): + async def connect_sock(): + # AF_UNIX has path length issues so chdir here to workaround + cwd = os.getcwd() + try: + os.chdir(os.path.dirname(path)) + # The socket must be opened synchronously so that CWD doesn't get + # changed out from underneath us so we pass as a sock into asyncio + sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM, 0) + sock.connect(os.path.basename(path)) + finally: + os.chdir(cwd) + return await asyncio.open_unix_connection(sock=sock) + + self._connect_sock = connect_sock + + async def setup_connection(self): + s = '%s %s\n\n' % (self.proto_name, self.proto_version) + self.writer.write(s.encode("utf-8")) + await self.writer.drain() + + async def connect(self): + if self.reader is None or self.writer is None: + (self.reader, self.writer) = await self._connect_sock() + await self.setup_connection() + + async def close(self): + self.reader = None + + if self.writer is not None: + self.writer.close() + self.writer = None + + async def _send_wrapper(self, proc): + count = 0 + while True: + try: + await self.connect() + return await proc() + except ( + OSError, + ConnectionError, + json.JSONDecodeError, + UnicodeDecodeError, + ) as e: + self.logger.warning("Error talking to server: %s" % e) + if count >= 3: + if not isinstance(e, ConnectionError): + raise ConnectionError(str(e)) + raise e + await self.close() + count += 1 + + async def send_message(self, msg): + async def get_line(): + try: + line = await asyncio.wait_for(self.reader.readline(), self.timeout) + except asyncio.TimeoutError: + raise ConnectionError("Timed out waiting for server") + + if not line: + raise ConnectionError("Connection closed") + + line = line.decode("utf-8") + + if not line.endswith("\n"): + raise ConnectionError("Bad message %r" % (line)) + + return line + + async def proc(): + for c in chunkify(json.dumps(msg), self.max_chunk): + self.writer.write(c.encode("utf-8")) + await self.writer.drain() + + l = await get_line() + + m = json.loads(l) + if m and "chunk-stream" in m: + lines = [] + while True: + l = (await get_line()).rstrip("\n") + if not l: + break + lines.append(l) + + m = json.loads("".join(lines)) + + return m + + return await self._send_wrapper(proc) + + async def ping(self): + return await self.send_message( + {'ping': {}} + ) + + +class Client(object): + def __init__(self): + self.client = self._get_async_client() + self.loop = asyncio.new_event_loop() + + # Override any pre-existing loop. + # Without this, the PR server export selftest triggers a hang + # when running with Python 3.7. The drawback is that there is + # potential for issues if the PR and hash equiv (or some new) + # clients need to both be instantiated in the same process. + # This should be revisited if/when Python 3.9 becomes the + # minimum required version for BitBake, as it seems not + # required (but harmless) with it. + asyncio.set_event_loop(self.loop) + + self._add_methods('connect_tcp', 'ping') + + @abc.abstractmethod + def _get_async_client(self): + pass + + def _get_downcall_wrapper(self, downcall): + def wrapper(*args, **kwargs): + return self.loop.run_until_complete(downcall(*args, **kwargs)) + + return wrapper + + def _add_methods(self, *methods): + for m in methods: + downcall = getattr(self.client, m) + setattr(self, m, self._get_downcall_wrapper(downcall)) + + def connect_unix(self, path): + self.loop.run_until_complete(self.client.connect_unix(path)) + self.loop.run_until_complete(self.client.connect()) + + @property + def max_chunk(self): + return self.client.max_chunk + + @max_chunk.setter + def max_chunk(self, value): + self.client.max_chunk = value + + def close(self): + self.loop.run_until_complete(self.client.close()) + if sys.version_info >= (3, 6): + self.loop.run_until_complete(self.loop.shutdown_asyncgens()) + self.loop.close() diff --git a/poky/bitbake/lib/bb/asyncrpc/serv.py b/poky/bitbake/lib/bb/asyncrpc/serv.py new file mode 100644 index 0000000..e14df18 --- /dev/null +++ b/poky/bitbake/lib/bb/asyncrpc/serv.py @@ -0,0 +1,288 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import abc +import asyncio +import json +import os +import signal +import socket +import sys +import multiprocessing +from . import chunkify, DEFAULT_MAX_CHUNK + + +class ClientError(Exception): + pass + + +class ServerError(Exception): + pass + + +class AsyncServerConnection(object): + def __init__(self, reader, writer, proto_name, logger): + self.reader = reader + self.writer = writer + self.proto_name = proto_name + self.max_chunk = DEFAULT_MAX_CHUNK + self.handlers = { + 'chunk-stream': self.handle_chunk, + 'ping': self.handle_ping, + } + self.logger = logger + + async def process_requests(self): + try: + self.addr = self.writer.get_extra_info('peername') + self.logger.debug('Client %r connected' % (self.addr,)) + + # Read protocol and version + client_protocol = await self.reader.readline() + if client_protocol is None: + return + + (client_proto_name, client_proto_version) = client_protocol.decode('utf-8').rstrip().split() + if client_proto_name != self.proto_name: + self.logger.debug('Rejecting invalid protocol %s' % (self.proto_name)) + return + + self.proto_version = tuple(int(v) for v in client_proto_version.split('.')) + if not self.validate_proto_version(): + self.logger.debug('Rejecting invalid protocol version %s' % (client_proto_version)) + return + + # Read headers. Currently, no headers are implemented, so look for + # an empty line to signal the end of the headers + while True: + line = await self.reader.readline() + if line is None: + return + + line = line.decode('utf-8').rstrip() + if not line: + break + + # Handle messages + while True: + d = await self.read_message() + if d is None: + break + await self.dispatch_message(d) + await self.writer.drain() + except ClientError as e: + self.logger.error(str(e)) + finally: + self.writer.close() + + async def dispatch_message(self, msg): + for k in self.handlers.keys(): + if k in msg: + self.logger.debug('Handling %s' % k) + await self.handlers[k](msg[k]) + return + + raise ClientError("Unrecognized command %r" % msg) + + def write_message(self, msg): + for c in chunkify(json.dumps(msg), self.max_chunk): + self.writer.write(c.encode('utf-8')) + + async def read_message(self): + l = await self.reader.readline() + if not l: + return None + + try: + message = l.decode('utf-8') + + if not message.endswith('\n'): + return None + + return json.loads(message) + except (json.JSONDecodeError, UnicodeDecodeError) as e: + self.logger.error('Bad message from client: %r' % message) + raise e + + async def handle_chunk(self, request): + lines = [] + try: + while True: + l = await self.reader.readline() + l = l.rstrip(b"\n").decode("utf-8") + if not l: + break + lines.append(l) + + msg = json.loads(''.join(lines)) + except (json.JSONDecodeError, UnicodeDecodeError) as e: + self.logger.error('Bad message from client: %r' % lines) + raise e + + if 'chunk-stream' in msg: + raise ClientError("Nested chunks are not allowed") + + await self.dispatch_message(msg) + + async def handle_ping(self, request): + response = {'alive': True} + self.write_message(response) + + +class AsyncServer(object): + def __init__(self, logger): + self._cleanup_socket = None + self.logger = logger + self.start = None + self.address = None + self.loop = None + + def start_tcp_server(self, host, port): + def start_tcp(): + self.server = self.loop.run_until_complete( + asyncio.start_server(self.handle_client, host, port) + ) + + for s in self.server.sockets: + self.logger.debug('Listening on %r' % (s.getsockname(),)) + # Newer python does this automatically. Do it manually here for + # maximum compatibility + s.setsockopt(socket.SOL_TCP, socket.TCP_NODELAY, 1) + s.setsockopt(socket.SOL_TCP, socket.TCP_QUICKACK, 1) + + name = self.server.sockets[0].getsockname() + if self.server.sockets[0].family == socket.AF_INET6: + self.address = "[%s]:%d" % (name[0], name[1]) + else: + self.address = "%s:%d" % (name[0], name[1]) + + self.start = start_tcp + + def start_unix_server(self, path): + def cleanup(): + os.unlink(path) + + def start_unix(): + cwd = os.getcwd() + try: + # Work around path length limits in AF_UNIX + os.chdir(os.path.dirname(path)) + self.server = self.loop.run_until_complete( + asyncio.start_unix_server(self.handle_client, os.path.basename(path)) + ) + finally: + os.chdir(cwd) + + self.logger.debug('Listening on %r' % path) + + self._cleanup_socket = cleanup + self.address = "unix://%s" % os.path.abspath(path) + + self.start = start_unix + + @abc.abstractmethod + def accept_client(self, reader, writer): + pass + + async def handle_client(self, reader, writer): + # writer.transport.set_write_buffer_limits(0) + try: + client = self.accept_client(reader, writer) + await client.process_requests() + except Exception as e: + import traceback + self.logger.error('Error from client: %s' % str(e), exc_info=True) + traceback.print_exc() + writer.close() + self.logger.debug('Client disconnected') + + def run_loop_forever(self): + try: + self.loop.run_forever() + except KeyboardInterrupt: + pass + + def signal_handler(self): + self.logger.debug("Got exit signal") + self.loop.stop() + + def _serve_forever(self): + try: + self.loop.add_signal_handler(signal.SIGTERM, self.signal_handler) + signal.pthread_sigmask(signal.SIG_UNBLOCK, [signal.SIGTERM]) + + self.run_loop_forever() + self.server.close() + + self.loop.run_until_complete(self.server.wait_closed()) + self.logger.debug('Server shutting down') + finally: + if self._cleanup_socket is not None: + self._cleanup_socket() + + def serve_forever(self): + """ + Serve requests in the current process + """ + # Create loop and override any loop that may have existed in + # a parent process. It is possible that the usecases of + # serve_forever might be constrained enough to allow using + # get_event_loop here, but better safe than sorry for now. + self.loop = asyncio.new_event_loop() + asyncio.set_event_loop(self.loop) + self.start() + self._serve_forever() + + def serve_as_process(self, *, prefunc=None, args=()): + """ + Serve requests in a child process + """ + def run(queue): + # Create loop and override any loop that may have existed + # in a parent process. Without doing this and instead + # using get_event_loop, at the very minimum the hashserv + # unit tests will hang when running the second test. + # This happens since get_event_loop in the spawned server + # process for the second testcase ends up with the loop + # from the hashserv client created in the unit test process + # when running the first testcase. The problem is somewhat + # more general, though, as any potential use of asyncio in + # Cooker could create a loop that needs to replaced in this + # new process. + self.loop = asyncio.new_event_loop() + asyncio.set_event_loop(self.loop) + try: + self.start() + finally: + queue.put(self.address) + queue.close() + + if prefunc is not None: + prefunc(self, *args) + + self._serve_forever() + + if sys.version_info >= (3, 6): + self.loop.run_until_complete(self.loop.shutdown_asyncgens()) + self.loop.close() + + queue = multiprocessing.Queue() + + # Temporarily block SIGTERM. The server process will inherit this + # block which will ensure it doesn't receive the SIGTERM until the + # handler is ready for it + mask = signal.pthread_sigmask(signal.SIG_BLOCK, [signal.SIGTERM]) + try: + self.process = multiprocessing.Process(target=run, args=(queue,)) + self.process.start() + + self.address = queue.get() + queue.close() + queue.join_thread() + + return self.process + finally: + signal.pthread_sigmask(signal.SIG_SETMASK, mask) diff --git a/poky/bitbake/lib/bb/build.py b/poky/bitbake/lib/bb/build.py new file mode 100644 index 0000000..55f68b9 --- /dev/null +++ b/poky/bitbake/lib/bb/build.py @@ -0,0 +1,1064 @@ +# +# BitBake 'Build' implementation +# +# Core code for function execution and task handling in the +# BitBake build tools. +# +# Copyright (C) 2003, 2004 Chris Larson +# +# Based on Gentoo's portage.py. +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import os +import sys +import logging +import glob +import itertools +import time +import re +import stat +import bb +import bb.msg +import bb.process +import bb.progress +from bb import data, event, utils + +bblogger = logging.getLogger('BitBake') +logger = logging.getLogger('BitBake.Build') + +verboseShellLogging = False +verboseStdoutLogging = False + +__mtime_cache = {} + +def cached_mtime_noerror(f): + if f not in __mtime_cache: + try: + __mtime_cache[f] = os.stat(f)[stat.ST_MTIME] + except OSError: + return 0 + return __mtime_cache[f] + +def reset_cache(): + global __mtime_cache + __mtime_cache = {} + +# When we execute a Python function, we'd like certain things +# in all namespaces, hence we add them to __builtins__. +# If we do not do this and use the exec globals, they will +# not be available to subfunctions. +if hasattr(__builtins__, '__setitem__'): + builtins = __builtins__ +else: + builtins = __builtins__.__dict__ + +builtins['bb'] = bb +builtins['os'] = os + +class TaskBase(event.Event): + """Base class for task events""" + + def __init__(self, t, fn, logfile, d): + self._task = t + self._fn = fn + self._package = d.getVar("PF") + self._mc = d.getVar("BB_CURRENT_MC") + self.taskfile = d.getVar("FILE") + self.taskname = self._task + self.logfile = logfile + self.time = time.time() + self.pn = d.getVar("PN") + self.pv = d.getVar("PV") + event.Event.__init__(self) + self._message = "recipe %s: task %s: %s" % (d.getVar("PF"), t, self.getDisplayName()) + + def getTask(self): + return self._task + + def setTask(self, task): + self._task = task + + def getDisplayName(self): + return bb.event.getName(self)[4:] + + task = property(getTask, setTask, None, "task property") + +class TaskStarted(TaskBase): + """Task execution started""" + def __init__(self, t, fn, logfile, taskflags, d): + super(TaskStarted, self).__init__(t, fn, logfile, d) + self.taskflags = taskflags + +class TaskSucceeded(TaskBase): + """Task execution completed""" + +class TaskFailed(TaskBase): + """Task execution failed""" + + def __init__(self, task, fn, logfile, metadata, errprinted = False): + self.errprinted = errprinted + super(TaskFailed, self).__init__(task, fn, logfile, metadata) + +class TaskFailedSilent(TaskBase): + """Task execution failed (silently)""" + def getDisplayName(self): + # Don't need to tell the user it was silent + return "Failed" + +class TaskInvalid(TaskBase): + + def __init__(self, task, fn, metadata): + super(TaskInvalid, self).__init__(task, fn, None, metadata) + self._message = "No such task '%s'" % task + +class TaskProgress(event.Event): + """ + Task made some progress that could be reported to the user, usually in + the form of a progress bar or similar. + NOTE: this class does not inherit from TaskBase since it doesn't need + to - it's fired within the task context itself, so we don't have any of + the context information that you do in the case of the other events. + The event PID can be used to determine which task it came from. + The progress value is normally 0-100, but can also be negative + indicating that progress has been made but we aren't able to determine + how much. + The rate is optional, this is simply an extra string to display to the + user if specified. + """ + def __init__(self, progress, rate=None): + self.progress = progress + self.rate = rate + event.Event.__init__(self) + + +class LogTee(object): + def __init__(self, logger, outfile): + self.outfile = outfile + self.logger = logger + self.name = self.outfile.name + + def write(self, string): + self.logger.plain(string) + self.outfile.write(string) + + def __enter__(self): + self.outfile.__enter__() + return self + + def __exit__(self, *excinfo): + self.outfile.__exit__(*excinfo) + + def __repr__(self): + return ''.format(self.name) + + def flush(self): + self.outfile.flush() + + +class StdoutNoopContextManager: + """ + This class acts like sys.stdout, but adds noop __enter__ and __exit__ methods. + """ + def __enter__(self): + return sys.stdout + + def __exit__(self, *exc_info): + pass + + def write(self, string): + return sys.stdout.write(string) + + def flush(self): + sys.stdout.flush() + + @property + def name(self): + return sys.stdout.name + + +def exec_func(func, d, dirs = None): + """Execute a BB 'function'""" + + try: + oldcwd = os.getcwd() + except: + oldcwd = None + + flags = d.getVarFlags(func) + cleandirs = flags.get('cleandirs') if flags else None + if cleandirs: + for cdir in d.expand(cleandirs).split(): + bb.utils.remove(cdir, True) + bb.utils.mkdirhier(cdir) + + if flags and dirs is None: + dirs = flags.get('dirs') + if dirs: + dirs = d.expand(dirs).split() + + if dirs: + for adir in dirs: + bb.utils.mkdirhier(adir) + adir = dirs[-1] + else: + adir = None + + body = d.getVar(func, False) + if not body: + if body is None: + logger.warning("Function %s doesn't exist", func) + return + + ispython = flags.get('python') + + lockflag = flags.get('lockfiles') + if lockflag: + lockfiles = [f for f in d.expand(lockflag).split()] + else: + lockfiles = None + + tempdir = d.getVar('T') + + # or func allows items to be executed outside of the normal + # task set, such as buildhistory + task = d.getVar('BB_RUNTASK') or func + if task == func: + taskfunc = task + else: + taskfunc = "%s.%s" % (task, func) + + runfmt = d.getVar('BB_RUNFMT') or "run.{func}.{pid}" + runfn = runfmt.format(taskfunc=taskfunc, task=task, func=func, pid=os.getpid()) + runfile = os.path.join(tempdir, runfn) + bb.utils.mkdirhier(os.path.dirname(runfile)) + + # Setup the courtesy link to the runfn, only for tasks + # we create the link 'just' before the run script is created + # if we create it after, and if the run script fails, then the + # link won't be created as an exception would be fired. + if task == func: + runlink = os.path.join(tempdir, 'run.{0}'.format(task)) + if runlink: + bb.utils.remove(runlink) + + try: + os.symlink(runfn, runlink) + except OSError: + pass + + with bb.utils.fileslocked(lockfiles): + if ispython: + exec_func_python(func, d, runfile, cwd=adir) + else: + exec_func_shell(func, d, runfile, cwd=adir) + + try: + curcwd = os.getcwd() + except: + curcwd = None + + if oldcwd and curcwd != oldcwd: + try: + bb.warn("Task %s changed cwd to %s" % (func, curcwd)) + os.chdir(oldcwd) + except: + pass + +_functionfmt = """ +{function}(d) +""" +logformatter = bb.msg.BBLogFormatter("%(levelname)s: %(message)s") +def exec_func_python(func, d, runfile, cwd=None): + """Execute a python BB 'function'""" + + code = _functionfmt.format(function=func) + bb.utils.mkdirhier(os.path.dirname(runfile)) + with open(runfile, 'w') as script: + bb.data.emit_func_python(func, script, d) + + if cwd: + try: + olddir = os.getcwd() + except OSError as e: + bb.warn("%s: Cannot get cwd: %s" % (func, e)) + olddir = None + os.chdir(cwd) + + bb.debug(2, "Executing python function %s" % func) + + try: + text = "def %s(d):\n%s" % (func, d.getVar(func, False)) + fn = d.getVarFlag(func, "filename", False) + lineno = int(d.getVarFlag(func, "lineno", False)) + bb.methodpool.insert_method(func, text, fn, lineno - 1) + + comp = utils.better_compile(code, func, "exec_func_python() autogenerated") + utils.better_exec(comp, {"d": d}, code, "exec_func_python() autogenerated") + finally: + # We want any stdout/stderr to be printed before any other log messages to make debugging + # more accurate. In some cases we seem to lose stdout/stderr entirely in logging tests without this. + sys.stdout.flush() + sys.stderr.flush() + bb.debug(2, "Python function %s finished" % func) + + if cwd and olddir: + try: + os.chdir(olddir) + except OSError as e: + bb.warn("%s: Cannot restore cwd %s: %s" % (func, olddir, e)) + +def shell_trap_code(): + return '''#!/bin/sh\n +__BITBAKE_LAST_LINE=0 + +# Emit a useful diagnostic if something fails: +bb_sh_exit_handler() { + ret=$? + if [ "$ret" != 0 ]; then + echo "WARNING: exit code $ret from a shell command." + fi + exit $ret +} + +bb_bash_exit_handler() { + ret=$? + { set +x; } > /dev/null + trap "" DEBUG + if [ "$ret" != 0 ]; then + echo "WARNING: ${BASH_SOURCE[0]}:${__BITBAKE_LAST_LINE} exit $ret from '$1'" + + echo "WARNING: Backtrace (BB generated script): " + for i in $(seq 1 $((${#FUNCNAME[@]} - 1))); do + if [ "$i" -eq 1 ]; then + echo -e "\t#$((i)): ${FUNCNAME[$i]}, ${BASH_SOURCE[$((i-1))]}, line ${__BITBAKE_LAST_LINE}" + else + echo -e "\t#$((i)): ${FUNCNAME[$i]}, ${BASH_SOURCE[$((i-1))]}, line ${BASH_LINENO[$((i-1))]}" + fi + done + fi + exit $ret +} + +bb_bash_debug_handler() { + local line=${BASH_LINENO[0]} + # For some reason the DEBUG trap trips with lineno=1 when scripts exit; ignore it + if [ "$line" -eq 1 ]; then + return + fi + + # Track the line number of commands as they execute. This is so we can have access to the failing line number + # in the EXIT trap. See http://gnu-bash.2382.n7.nabble.com/trap-echo-quot-trap-exit-on-LINENO-quot-EXIT-gt-wrong-linenumber-td3666.html + if [ "${FUNCNAME[1]}" != "bb_bash_exit_handler" ]; then + __BITBAKE_LAST_LINE=$line + fi +} + +case $BASH_VERSION in +"") trap 'bb_sh_exit_handler' 0 + set -e + ;; +*) trap 'bb_bash_exit_handler "$BASH_COMMAND"' 0 + trap '{ bb_bash_debug_handler; } 2>/dev/null' DEBUG + set -e + shopt -s extdebug + ;; +esac +''' + +def create_progress_handler(func, progress, logfile, d): + if progress == 'percent': + # Use default regex + return bb.progress.BasicProgressHandler(d, outfile=logfile) + elif progress.startswith('percent:'): + # Use specified regex + return bb.progress.BasicProgressHandler(d, regex=progress.split(':', 1)[1], outfile=logfile) + elif progress.startswith('outof:'): + # Use specified regex + return bb.progress.OutOfProgressHandler(d, regex=progress.split(':', 1)[1], outfile=logfile) + elif progress.startswith("custom:"): + # Use a custom progress handler that was injected via OE_EXTRA_IMPORTS or __builtins__ + import functools + from types import ModuleType + + parts = progress.split(":", 2) + _, cls, otherargs = parts[0], parts[1], (parts[2] or None) if parts[2:] else None + if cls: + def resolve(x, y): + if not x: + return None + if isinstance(x, ModuleType): + return getattr(x, y, None) + return x.get(y) + cls_obj = functools.reduce(resolve, cls.split("."), bb.utils._context) + if not cls_obj: + # Fall-back on __builtins__ + cls_obj = functools.reduce(resolve, cls.split("."), __builtins__) + if cls_obj: + return cls_obj(d, outfile=logfile, otherargs=otherargs) + bb.warn('%s: unknown custom progress handler in task progress varflag value "%s", ignoring' % (func, cls)) + else: + bb.warn('%s: invalid task progress varflag value "%s", ignoring' % (func, progress)) + + return logfile + +def exec_func_shell(func, d, runfile, cwd=None): + """Execute a shell function from the metadata + + Note on directory behavior. The 'dirs' varflag should contain a list + of the directories you need created prior to execution. The last + item in the list is where we will chdir/cd to. + """ + + # Don't let the emitted shell script override PWD + d.delVarFlag('PWD', 'export') + + with open(runfile, 'w') as script: + script.write(shell_trap_code()) + + bb.data.emit_func(func, script, d) + + if verboseShellLogging or bb.utils.to_boolean(d.getVar("BB_VERBOSE_LOGS", False)): + script.write("set -x\n") + if cwd: + script.write("cd '%s'\n" % cwd) + script.write("%s\n" % func) + script.write(''' +# cleanup +ret=$? +trap '' 0 +exit $ret +''') + + os.chmod(runfile, 0o775) + + cmd = runfile + if d.getVarFlag(func, 'fakeroot', False): + fakerootcmd = d.getVar('FAKEROOT') + if fakerootcmd: + cmd = [fakerootcmd, runfile] + + if verboseStdoutLogging: + logfile = LogTee(logger, StdoutNoopContextManager()) + else: + logfile = StdoutNoopContextManager() + + progress = d.getVarFlag(func, 'progress') + if progress: + try: + logfile = create_progress_handler(func, progress, logfile, d) + except: + from traceback import format_exc + logger.error("Failed to create progress handler") + logger.error(format_exc()) + raise + + fifobuffer = bytearray() + def readfifo(data): + nonlocal fifobuffer + fifobuffer.extend(data) + while fifobuffer: + message, token, nextmsg = fifobuffer.partition(b"\00") + if token: + splitval = message.split(b' ', 1) + cmd = splitval[0].decode("utf-8") + if len(splitval) > 1: + value = splitval[1].decode("utf-8") + else: + value = '' + if cmd == 'bbplain': + bb.plain(value) + elif cmd == 'bbnote': + bb.note(value) + elif cmd == 'bbverbnote': + bb.verbnote(value) + elif cmd == 'bbwarn': + bb.warn(value) + elif cmd == 'bberror': + bb.error(value) + elif cmd == 'bbfatal': + # The caller will call exit themselves, so bb.error() is + # what we want here rather than bb.fatal() + bb.error(value) + elif cmd == 'bbfatal_log': + bb.error(value, forcelog=True) + elif cmd == 'bbdebug': + splitval = value.split(' ', 1) + level = int(splitval[0]) + value = splitval[1] + bb.debug(level, value) + else: + bb.warn("Unrecognised command '%s' on FIFO" % cmd) + fifobuffer = nextmsg + else: + break + + tempdir = d.getVar('T') + fifopath = os.path.join(tempdir, 'fifo.%s' % os.getpid()) + if os.path.exists(fifopath): + os.unlink(fifopath) + os.mkfifo(fifopath) + with open(fifopath, 'r+b', buffering=0) as fifo: + try: + bb.debug(2, "Executing shell function %s" % func) + with open(os.devnull, 'r+') as stdin, logfile: + bb.process.run(cmd, shell=False, stdin=stdin, log=logfile, extrafiles=[(fifo,readfifo)]) + except bb.process.ExecutionError as exe: + # Find the backtrace that the shell trap generated + backtrace_marker_regex = re.compile(r"WARNING: Backtrace \(BB generated script\)") + stdout_lines = (exe.stdout or "").split("\n") + backtrace_start_line = None + for i, line in enumerate(reversed(stdout_lines)): + if backtrace_marker_regex.search(line): + backtrace_start_line = len(stdout_lines) - i + break + + # Read the backtrace frames, starting at the location we just found + backtrace_entry_regex = re.compile(r"#(?P\d+): (?P[^\s]+), (?P.+?), line (" + r"?P\d+)") + backtrace_frames = [] + if backtrace_start_line: + for line in itertools.islice(stdout_lines, backtrace_start_line, None): + match = backtrace_entry_regex.search(line) + if match: + backtrace_frames.append(match.groupdict()) + + with open(runfile, "r") as script: + script_lines = [line.rstrip() for line in script.readlines()] + + # For each backtrace frame, search backwards in the script (from the line number called out by the frame), + # to find the comment that emit_vars injected when it wrote the script. This will give us the metadata + # filename (e.g. .bb or .bbclass) and line number where the shell function was originally defined. + script_metadata_comment_regex = re.compile(r"# line: (?P\d+), file: (?P.+)") + better_frames = [] + # Skip the very last frame since it's just the call to the shell task in the body of the script + for frame in backtrace_frames[:-1]: + # Check whether the frame corresponds to a function defined in the script vs external script. + if os.path.samefile(frame["file"], runfile): + # Search backwards from the frame lineno to locate the comment that BB injected + i = int(frame["lineno"]) - 1 + while i >= 0: + match = script_metadata_comment_regex.match(script_lines[i]) + if match: + # Calculate the relative line in the function itself + relative_line_in_function = int(frame["lineno"]) - i - 2 + # Calculate line in the function as declared in the metadata + metadata_function_line = relative_line_in_function + int(match["lineno"]) + better_frames.append("#{frameno}: {funcname}, {file}, line {lineno}".format( + frameno=frame["frameno"], + funcname=frame["funcname"], + file=match["file"], + lineno=metadata_function_line + )) + break + i -= 1 + else: + better_frames.append("#{frameno}: {funcname}, {file}, line {lineno}".format(**frame)) + + if better_frames: + better_frames = ("\t{0}".format(frame) for frame in better_frames) + exe.extra_message = "\nBacktrace (metadata-relative locations):\n{0}".format("\n".join(better_frames)) + raise + finally: + os.unlink(fifopath) + + bb.debug(2, "Shell function %s finished" % func) + +def _task_data(fn, task, d): + localdata = bb.data.createCopy(d) + localdata.setVar('BB_FILENAME', fn) + localdata.setVar('OVERRIDES', 'task-%s:%s' % + (task[3:].replace('_', '-'), d.getVar('OVERRIDES', False))) + localdata.finalize() + bb.data.expandKeys(localdata) + return localdata + +def _exec_task(fn, task, d, quieterr): + """Execute a BB 'task' + + Execution of a task involves a bit more setup than executing a function, + running it with its own local metadata, and with some useful variables set. + """ + if not d.getVarFlag(task, 'task', False): + event.fire(TaskInvalid(task, fn, d), d) + logger.error("No such task: %s" % task) + return 1 + + logger.debug("Executing task %s", task) + + localdata = _task_data(fn, task, d) + tempdir = localdata.getVar('T') + if not tempdir: + bb.fatal("T variable not set, unable to build") + + # Change nice level if we're asked to + nice = localdata.getVar("BB_TASK_NICE_LEVEL") + if nice: + curnice = os.nice(0) + nice = int(nice) - curnice + newnice = os.nice(nice) + logger.debug("Renice to %s " % newnice) + ionice = localdata.getVar("BB_TASK_IONICE_LEVEL") + if ionice: + try: + cls, prio = ionice.split(".", 1) + bb.utils.ioprio_set(os.getpid(), int(cls), int(prio)) + except: + bb.warn("Invalid ionice level %s" % ionice) + + bb.utils.mkdirhier(tempdir) + + # Determine the logfile to generate + logfmt = localdata.getVar('BB_LOGFMT') or 'log.{task}.{pid}' + logbase = logfmt.format(task=task, pid=os.getpid()) + + # Document the order of the tasks... + logorder = os.path.join(tempdir, 'log.task_order') + try: + with open(logorder, 'a') as logorderfile: + logorderfile.write('{0} ({1}): {2}\n'.format(task, os.getpid(), logbase)) + except OSError: + logger.exception("Opening log file '%s'", logorder) + pass + + # Setup the courtesy link to the logfn + loglink = os.path.join(tempdir, 'log.{0}'.format(task)) + logfn = os.path.join(tempdir, logbase) + if loglink: + bb.utils.remove(loglink) + + try: + os.symlink(logbase, loglink) + except OSError: + pass + + prefuncs = localdata.getVarFlag(task, 'prefuncs', expand=True) + postfuncs = localdata.getVarFlag(task, 'postfuncs', expand=True) + + class ErrorCheckHandler(logging.Handler): + def __init__(self): + self.triggered = False + logging.Handler.__init__(self, logging.ERROR) + def emit(self, record): + if getattr(record, 'forcelog', False): + self.triggered = False + else: + self.triggered = True + + # Handle logfiles + try: + bb.utils.mkdirhier(os.path.dirname(logfn)) + logfile = open(logfn, 'w') + except OSError: + logger.exception("Opening log file '%s'", logfn) + pass + + # Dup the existing fds so we dont lose them + osi = [os.dup(sys.stdin.fileno()), sys.stdin.fileno()] + oso = [os.dup(sys.stdout.fileno()), sys.stdout.fileno()] + ose = [os.dup(sys.stderr.fileno()), sys.stderr.fileno()] + + # Replace those fds with our own + with open('/dev/null', 'r') as si: + os.dup2(si.fileno(), osi[1]) + os.dup2(logfile.fileno(), oso[1]) + os.dup2(logfile.fileno(), ose[1]) + + # Ensure Python logging goes to the logfile + handler = logging.StreamHandler(logfile) + handler.setFormatter(logformatter) + # Always enable full debug output into task logfiles + handler.setLevel(logging.DEBUG - 2) + bblogger.addHandler(handler) + + errchk = ErrorCheckHandler() + bblogger.addHandler(errchk) + + localdata.setVar('BB_LOGFILE', logfn) + localdata.setVar('BB_RUNTASK', task) + localdata.setVar('BB_TASK_LOGGER', bblogger) + + flags = localdata.getVarFlags(task) + + try: + try: + event.fire(TaskStarted(task, fn, logfn, flags, localdata), localdata) + + for func in (prefuncs or '').split(): + exec_func(func, localdata) + exec_func(task, localdata) + for func in (postfuncs or '').split(): + exec_func(func, localdata) + finally: + # Need to flush and close the logs before sending events where the + # UI may try to look at the logs. + sys.stdout.flush() + sys.stderr.flush() + + bblogger.removeHandler(handler) + + # Restore the backup fds + os.dup2(osi[0], osi[1]) + os.dup2(oso[0], oso[1]) + os.dup2(ose[0], ose[1]) + + # Close the backup fds + os.close(osi[0]) + os.close(oso[0]) + os.close(ose[0]) + + logfile.close() + if os.path.exists(logfn) and os.path.getsize(logfn) == 0: + logger.debug2("Zero size logfn %s, removing", logfn) + bb.utils.remove(logfn) + bb.utils.remove(loglink) + except (Exception, SystemExit) as exc: + handled = False + if isinstance(exc, bb.BBHandledException): + handled = True + + if quieterr: + if not handled: + logger.warning(repr(exc)) + event.fire(TaskFailedSilent(task, fn, logfn, localdata), localdata) + else: + errprinted = errchk.triggered + # If the output is already on stdout, we've printed the information in the + # logs once already so don't duplicate + if verboseStdoutLogging or handled: + errprinted = True + if not handled: + logger.error(repr(exc)) + event.fire(TaskFailed(task, fn, logfn, localdata, errprinted), localdata) + return 1 + + event.fire(TaskSucceeded(task, fn, logfn, localdata), localdata) + + if not localdata.getVarFlag(task, 'nostamp', False) and not localdata.getVarFlag(task, 'selfstamp', False): + make_stamp(task, localdata) + + return 0 + +def exec_task(fn, task, d, profile = False): + try: + quieterr = False + if d.getVarFlag(task, "quieterrors", False) is not None: + quieterr = True + + if profile: + profname = "profile-%s.log" % (d.getVar("PN") + "-" + task) + try: + import cProfile as profile + except: + import profile + prof = profile.Profile() + ret = profile.Profile.runcall(prof, _exec_task, fn, task, d, quieterr) + prof.dump_stats(profname) + bb.utils.process_profilelog(profname) + + return ret + else: + return _exec_task(fn, task, d, quieterr) + + except Exception: + from traceback import format_exc + if not quieterr: + logger.error("Build of %s failed" % (task)) + logger.error(format_exc()) + failedevent = TaskFailed(task, None, d, True) + event.fire(failedevent, d) + return 1 + +def stamp_internal(taskname, d, file_name, baseonly=False, noextra=False): + """ + Internal stamp helper function + Makes sure the stamp directory exists + Returns the stamp path+filename + + In the bitbake core, d can be a CacheData and file_name will be set. + When called in task context, d will be a data store, file_name will not be set + """ + taskflagname = taskname + if taskname.endswith("_setscene") and taskname != "do_setscene": + taskflagname = taskname.replace("_setscene", "") + + if file_name: + stamp = d.stamp[file_name] + extrainfo = d.stamp_extrainfo[file_name].get(taskflagname) or "" + else: + stamp = d.getVar('STAMP') + file_name = d.getVar('BB_FILENAME') + extrainfo = d.getVarFlag(taskflagname, 'stamp-extra-info') or "" + + if baseonly: + return stamp + if noextra: + extrainfo = "" + + if not stamp: + return + + stamp = bb.parse.siggen.stampfile(stamp, file_name, taskname, extrainfo) + + stampdir = os.path.dirname(stamp) + if cached_mtime_noerror(stampdir) == 0: + bb.utils.mkdirhier(stampdir) + + return stamp + +def stamp_cleanmask_internal(taskname, d, file_name): + """ + Internal stamp helper function to generate stamp cleaning mask + Returns the stamp path+filename + + In the bitbake core, d can be a CacheData and file_name will be set. + When called in task context, d will be a data store, file_name will not be set + """ + taskflagname = taskname + if taskname.endswith("_setscene") and taskname != "do_setscene": + taskflagname = taskname.replace("_setscene", "") + + if file_name: + stamp = d.stampclean[file_name] + extrainfo = d.stamp_extrainfo[file_name].get(taskflagname) or "" + else: + stamp = d.getVar('STAMPCLEAN') + file_name = d.getVar('BB_FILENAME') + extrainfo = d.getVarFlag(taskflagname, 'stamp-extra-info') or "" + + if not stamp: + return [] + + cleanmask = bb.parse.siggen.stampcleanmask(stamp, file_name, taskname, extrainfo) + + return [cleanmask, cleanmask.replace(taskflagname, taskflagname + "_setscene")] + +def clean_stamp(task, d, file_name = None): + cleanmask = stamp_cleanmask_internal(task, d, file_name) + for mask in cleanmask: + for name in glob.glob(mask): + # Preserve sigdata files in the stamps directory + if "sigdata" in name or "sigbasedata" in name: + continue + # Preserve taint files in the stamps directory + if name.endswith('.taint'): + continue + os.unlink(name) + return + +def make_stamp(task, d, file_name = None): + """ + Creates/updates a stamp for a given task + (d can be a data dict or dataCache) + """ + clean_stamp(task, d, file_name) + + stamp = stamp_internal(task, d, file_name) + # Remove the file and recreate to force timestamp + # change on broken NFS filesystems + if stamp: + bb.utils.remove(stamp) + open(stamp, "w").close() + + # If we're in task context, write out a signature file for each task + # as it completes + if not task.endswith("_setscene") and task != "do_setscene" and not file_name: + stampbase = stamp_internal(task, d, None, True) + file_name = d.getVar('BB_FILENAME') + bb.parse.siggen.dump_sigtask(file_name, task, stampbase, True) + +def find_stale_stamps(task, d, file_name=None): + current = stamp_internal(task, d, file_name) + current2 = stamp_internal(task + "_setscene", d, file_name) + cleanmask = stamp_cleanmask_internal(task, d, file_name) + found = [] + for mask in cleanmask: + for name in glob.glob(mask): + if "sigdata" in name or "sigbasedata" in name: + continue + if name.endswith('.taint'): + continue + if name == current or name == current2: + continue + logger.debug2("Stampfile %s does not match %s or %s" % (name, current, current2)) + found.append(name) + return found + +def del_stamp(task, d, file_name = None): + """ + Removes a stamp for a given task + (d can be a data dict or dataCache) + """ + stamp = stamp_internal(task, d, file_name) + bb.utils.remove(stamp) + +def write_taint(task, d, file_name = None): + """ + Creates a "taint" file which will force the specified task and its + dependents to be re-run the next time by influencing the value of its + taskhash. + (d can be a data dict or dataCache) + """ + import uuid + if file_name: + taintfn = d.stamp[file_name] + '.' + task + '.taint' + else: + taintfn = d.getVar('STAMP') + '.' + task + '.taint' + bb.utils.mkdirhier(os.path.dirname(taintfn)) + # The specific content of the taint file is not really important, + # we just need it to be random, so a random UUID is used + with open(taintfn, 'w') as taintf: + taintf.write(str(uuid.uuid4())) + +def stampfile(taskname, d, file_name = None, noextra=False): + """ + Return the stamp for a given task + (d can be a data dict or dataCache) + """ + return stamp_internal(taskname, d, file_name, noextra=noextra) + +def add_tasks(tasklist, d): + task_deps = d.getVar('_task_deps', False) + if not task_deps: + task_deps = {} + if not 'tasks' in task_deps: + task_deps['tasks'] = [] + if not 'parents' in task_deps: + task_deps['parents'] = {} + + for task in tasklist: + task = d.expand(task) + + d.setVarFlag(task, 'task', 1) + + if not task in task_deps['tasks']: + task_deps['tasks'].append(task) + + flags = d.getVarFlags(task) + def getTask(name): + if not name in task_deps: + task_deps[name] = {} + if name in flags: + deptask = d.expand(flags[name]) + if name in ['noexec', 'fakeroot', 'nostamp']: + if deptask != '1': + bb.warn("In a future version of BitBake, setting the '{}' flag to something other than '1' " + "will result in the flag not being set. See YP bug #13808.".format(name)) + + task_deps[name][task] = deptask + getTask('mcdepends') + getTask('depends') + getTask('rdepends') + getTask('deptask') + getTask('rdeptask') + getTask('recrdeptask') + getTask('recideptask') + getTask('nostamp') + getTask('fakeroot') + getTask('noexec') + getTask('umask') + task_deps['parents'][task] = [] + if 'deps' in flags: + for dep in flags['deps']: + # Check and warn for "addtask task after foo" while foo does not exist + #if not dep in tasklist: + # bb.warn('%s: dependent task %s for %s does not exist' % (d.getVar('PN'), dep, task)) + dep = d.expand(dep) + task_deps['parents'][task].append(dep) + + # don't assume holding a reference + d.setVar('_task_deps', task_deps) + +def addtask(task, before, after, d): + if task[:3] != "do_": + task = "do_" + task + + d.setVarFlag(task, "task", 1) + bbtasks = d.getVar('__BBTASKS', False) or [] + if task not in bbtasks: + bbtasks.append(task) + d.setVar('__BBTASKS', bbtasks) + + existing = d.getVarFlag(task, "deps", False) or [] + if after is not None: + # set up deps for function + for entry in after.split(): + if entry not in existing: + existing.append(entry) + d.setVarFlag(task, "deps", existing) + if before is not None: + # set up things that depend on this func + for entry in before.split(): + existing = d.getVarFlag(entry, "deps", False) or [] + if task not in existing: + d.setVarFlag(entry, "deps", [task] + existing) + +def deltask(task, d): + if task[:3] != "do_": + task = "do_" + task + + bbtasks = d.getVar('__BBTASKS', False) or [] + if task in bbtasks: + bbtasks.remove(task) + d.delVarFlag(task, 'task') + d.setVar('__BBTASKS', bbtasks) + + d.delVarFlag(task, 'deps') + for bbtask in d.getVar('__BBTASKS', False) or []: + deps = d.getVarFlag(bbtask, 'deps', False) or [] + if task in deps: + deps.remove(task) + d.setVarFlag(bbtask, 'deps', deps) + +def preceedtask(task, with_recrdeptasks, d): + """ + Returns a set of tasks in the current recipe which were specified as + precondition by the task itself ("after") or which listed themselves + as precondition ("before"). Preceeding tasks specified via the + "recrdeptask" are included in the result only if requested. Beware + that this may lead to the task itself being listed. + """ + preceed = set() + + # Ignore tasks which don't exist + tasks = d.getVar('__BBTASKS', False) + if task not in tasks: + return preceed + + preceed.update(d.getVarFlag(task, 'deps') or []) + if with_recrdeptasks: + recrdeptask = d.getVarFlag(task, 'recrdeptask') + if recrdeptask: + preceed.update(recrdeptask.split()) + return preceed + +def tasksbetween(task_start, task_end, d): + """ + Return the list of tasks between two tasks in the current recipe, + where task_start is to start at and task_end is the task to end at + (and task_end has a dependency chain back to task_start). + """ + outtasks = [] + tasks = list(filter(lambda k: d.getVarFlag(k, "task"), d.keys())) + def follow_chain(task, endtask, chain=None): + if not chain: + chain = [] + if task in chain: + bb.fatal("Circular task dependencies as %s depends on itself via the chain %s" % (task, " -> ".join(chain))) + chain.append(task) + for othertask in tasks: + if othertask == task: + continue + if task == endtask: + for ctask in chain: + if ctask not in outtasks: + outtasks.append(ctask) + else: + deps = d.getVarFlag(othertask, 'deps', False) + if task in deps: + follow_chain(othertask, endtask, chain) + chain.pop() + follow_chain(task_start, task_end) + return outtasks diff --git a/poky/bitbake/lib/bb/cache.py b/poky/bitbake/lib/bb/cache.py new file mode 100644 index 0000000..92e9a3c --- /dev/null +++ b/poky/bitbake/lib/bb/cache.py @@ -0,0 +1,1000 @@ +# +# BitBake Cache implementation +# +# Caching of bitbake variables before task execution + +# Copyright (C) 2006 Richard Purdie +# Copyright (C) 2012 Intel Corporation + +# but small sections based on code from bin/bitbake: +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer +# Copyright (C) 2005 Holger Hans Peter Freyther +# Copyright (C) 2005 ROAD GmbH +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import logging +import pickle +from collections import defaultdict +from collections.abc import Mapping +import bb.utils +from bb import PrefixLoggerAdapter +import re + +logger = logging.getLogger("BitBake.Cache") + +__cache_version__ = "154" + +def getCacheFile(path, filename, mc, data_hash): + mcspec = '' + if mc: + mcspec = ".%s" % mc + return os.path.join(path, filename + mcspec + "." + data_hash) + +# RecipeInfoCommon defines common data retrieving methods +# from meta data for caches. CoreRecipeInfo as well as other +# Extra RecipeInfo needs to inherit this class +class RecipeInfoCommon(object): + + @classmethod + def listvar(cls, var, metadata): + return cls.getvar(var, metadata).split() + + @classmethod + def intvar(cls, var, metadata): + return int(cls.getvar(var, metadata) or 0) + + @classmethod + def depvar(cls, var, metadata): + return bb.utils.explode_deps(cls.getvar(var, metadata)) + + @classmethod + def pkgvar(cls, var, packages, metadata): + return dict((pkg, cls.depvar("%s:%s" % (var, pkg), metadata)) + for pkg in packages) + + @classmethod + def taskvar(cls, var, tasks, metadata): + return dict((task, cls.getvar("%s:task-%s" % (var, task), metadata)) + for task in tasks) + + @classmethod + def flaglist(cls, flag, varlist, metadata, squash=False): + out_dict = dict((var, metadata.getVarFlag(var, flag)) + for var in varlist) + if squash: + return dict((k,v) for (k,v) in out_dict.items() if v) + else: + return out_dict + + @classmethod + def getvar(cls, var, metadata, expand = True): + return metadata.getVar(var, expand) or '' + + +class CoreRecipeInfo(RecipeInfoCommon): + __slots__ = () + + cachefile = "bb_cache.dat" + + def __init__(self, filename, metadata): + self.file_depends = metadata.getVar('__depends', False) + self.timestamp = bb.parse.cached_mtime(filename) + self.variants = self.listvar('__VARIANTS', metadata) + [''] + self.appends = self.listvar('__BBAPPEND', metadata) + self.nocache = self.getvar('BB_DONT_CACHE', metadata) + + self.provides = self.depvar('PROVIDES', metadata) + self.rprovides = self.depvar('RPROVIDES', metadata) + self.pn = self.getvar('PN', metadata) or bb.parse.vars_from_file(filename,metadata)[0] + self.packages = self.listvar('PACKAGES', metadata) + if not self.packages: + self.packages.append(self.pn) + self.packages_dynamic = self.listvar('PACKAGES_DYNAMIC', metadata) + self.rprovides_pkg = self.pkgvar('RPROVIDES', self.packages, metadata) + + self.skipreason = self.getvar('__SKIPPED', metadata) + if self.skipreason: + self.skipped = True + return + + self.tasks = metadata.getVar('__BBTASKS', False) + + self.basetaskhashes = self.taskvar('BB_BASEHASH', self.tasks, metadata) + self.hashfilename = self.getvar('BB_HASHFILENAME', metadata) + + self.task_deps = metadata.getVar('_task_deps', False) or {'tasks': [], 'parents': {}} + + self.skipped = False + self.pe = self.getvar('PE', metadata) + self.pv = self.getvar('PV', metadata) + self.pr = self.getvar('PR', metadata) + self.defaultpref = self.intvar('DEFAULT_PREFERENCE', metadata) + self.not_world = self.getvar('EXCLUDE_FROM_WORLD', metadata) + self.stamp = self.getvar('STAMP', metadata) + self.stampclean = self.getvar('STAMPCLEAN', metadata) + self.stamp_extrainfo = self.flaglist('stamp-extra-info', self.tasks, metadata) + self.file_checksums = self.flaglist('file-checksums', self.tasks, metadata, True) + self.depends = self.depvar('DEPENDS', metadata) + self.rdepends = self.depvar('RDEPENDS', metadata) + self.rrecommends = self.depvar('RRECOMMENDS', metadata) + self.rdepends_pkg = self.pkgvar('RDEPENDS', self.packages, metadata) + self.rrecommends_pkg = self.pkgvar('RRECOMMENDS', self.packages, metadata) + self.inherits = self.getvar('__inherit_cache', metadata, expand=False) + self.fakerootenv = self.getvar('FAKEROOTENV', metadata) + self.fakerootdirs = self.getvar('FAKEROOTDIRS', metadata) + self.fakerootlogs = self.getvar('FAKEROOTLOGS', metadata) + self.fakerootnoenv = self.getvar('FAKEROOTNOENV', metadata) + self.extradepsfunc = self.getvar('calculate_extra_depends', metadata) + + @classmethod + def init_cacheData(cls, cachedata): + # CacheData in Core RecipeInfo Class + cachedata.task_deps = {} + cachedata.pkg_fn = {} + cachedata.pkg_pn = defaultdict(list) + cachedata.pkg_pepvpr = {} + cachedata.pkg_dp = {} + + cachedata.stamp = {} + cachedata.stampclean = {} + cachedata.stamp_extrainfo = {} + cachedata.file_checksums = {} + cachedata.fn_provides = {} + cachedata.pn_provides = defaultdict(list) + cachedata.all_depends = [] + + cachedata.deps = defaultdict(list) + cachedata.packages = defaultdict(list) + cachedata.providers = defaultdict(list) + cachedata.rproviders = defaultdict(list) + cachedata.packages_dynamic = defaultdict(list) + + cachedata.rundeps = defaultdict(lambda: defaultdict(list)) + cachedata.runrecs = defaultdict(lambda: defaultdict(list)) + cachedata.possible_world = [] + cachedata.universe_target = [] + cachedata.hashfn = {} + + cachedata.basetaskhash = {} + cachedata.inherits = {} + cachedata.fakerootenv = {} + cachedata.fakerootnoenv = {} + cachedata.fakerootdirs = {} + cachedata.fakerootlogs = {} + cachedata.extradepsfunc = {} + + def add_cacheData(self, cachedata, fn): + cachedata.task_deps[fn] = self.task_deps + cachedata.pkg_fn[fn] = self.pn + cachedata.pkg_pn[self.pn].append(fn) + cachedata.pkg_pepvpr[fn] = (self.pe, self.pv, self.pr) + cachedata.pkg_dp[fn] = self.defaultpref + cachedata.stamp[fn] = self.stamp + cachedata.stampclean[fn] = self.stampclean + cachedata.stamp_extrainfo[fn] = self.stamp_extrainfo + cachedata.file_checksums[fn] = self.file_checksums + + provides = [self.pn] + for provide in self.provides: + if provide not in provides: + provides.append(provide) + cachedata.fn_provides[fn] = provides + + for provide in provides: + cachedata.providers[provide].append(fn) + if provide not in cachedata.pn_provides[self.pn]: + cachedata.pn_provides[self.pn].append(provide) + + for dep in self.depends: + if dep not in cachedata.deps[fn]: + cachedata.deps[fn].append(dep) + if dep not in cachedata.all_depends: + cachedata.all_depends.append(dep) + + rprovides = self.rprovides + for package in self.packages: + cachedata.packages[package].append(fn) + rprovides += self.rprovides_pkg[package] + + for rprovide in rprovides: + if fn not in cachedata.rproviders[rprovide]: + cachedata.rproviders[rprovide].append(fn) + + for package in self.packages_dynamic: + cachedata.packages_dynamic[package].append(fn) + + # Build hash of runtime depends and recommends + for package in self.packages: + cachedata.rundeps[fn][package] = list(self.rdepends) + self.rdepends_pkg[package] + cachedata.runrecs[fn][package] = list(self.rrecommends) + self.rrecommends_pkg[package] + + # Collect files we may need for possible world-dep + # calculations + if not self.not_world: + cachedata.possible_world.append(fn) + #else: + # logger.debug2("EXCLUDE FROM WORLD: %s", fn) + + # create a collection of all targets for sanity checking + # tasks, such as upstream versions, license, and tools for + # task and image creation. + cachedata.universe_target.append(self.pn) + + cachedata.hashfn[fn] = self.hashfilename + for task, taskhash in self.basetaskhashes.items(): + identifier = '%s:%s' % (fn, task) + cachedata.basetaskhash[identifier] = taskhash + + cachedata.inherits[fn] = self.inherits + cachedata.fakerootenv[fn] = self.fakerootenv + cachedata.fakerootnoenv[fn] = self.fakerootnoenv + cachedata.fakerootdirs[fn] = self.fakerootdirs + cachedata.fakerootlogs[fn] = self.fakerootlogs + cachedata.extradepsfunc[fn] = self.extradepsfunc + +def virtualfn2realfn(virtualfn): + """ + Convert a virtual file name to a real one + the associated subclass keyword + """ + mc = "" + if virtualfn.startswith('mc:') and virtualfn.count(':') >= 2: + elems = virtualfn.split(':') + mc = elems[1] + virtualfn = ":".join(elems[2:]) + + fn = virtualfn + cls = "" + if virtualfn.startswith('virtual:'): + elems = virtualfn.split(':') + cls = ":".join(elems[1:-1]) + fn = elems[-1] + + return (fn, cls, mc) + +def realfn2virtual(realfn, cls, mc): + """ + Convert a real filename + the associated subclass keyword to a virtual filename + """ + if cls: + realfn = "virtual:" + cls + ":" + realfn + if mc: + realfn = "mc:" + mc + ":" + realfn + return realfn + +def variant2virtual(realfn, variant): + """ + Convert a real filename + the associated subclass keyword to a virtual filename + """ + if variant == "": + return realfn + if variant.startswith("mc:") and variant.count(':') >= 2: + elems = variant.split(":") + if elems[2]: + return "mc:" + elems[1] + ":virtual:" + ":".join(elems[2:]) + ":" + realfn + return "mc:" + elems[1] + ":" + realfn + return "virtual:" + variant + ":" + realfn + +def parse_recipe(bb_data, bbfile, appends, mc=''): + """ + Parse a recipe + """ + + bb_data.setVar("__BBMULTICONFIG", mc) + + bbfile_loc = os.path.abspath(os.path.dirname(bbfile)) + bb.parse.cached_mtime_noerror(bbfile_loc) + + if appends: + bb_data.setVar('__BBAPPEND', " ".join(appends)) + bb_data = bb.parse.handle(bbfile, bb_data) + return bb_data + + +class NoCache(object): + + def __init__(self, databuilder): + self.databuilder = databuilder + self.data = databuilder.data + + def loadDataFull(self, virtualfn, appends): + """ + Return a complete set of data for fn. + To do this, we need to parse the file. + """ + logger.debug("Parsing %s (full)" % virtualfn) + (fn, virtual, mc) = virtualfn2realfn(virtualfn) + bb_data = self.load_bbfile(virtualfn, appends, virtonly=True) + return bb_data[virtual] + + def load_bbfile(self, bbfile, appends, virtonly = False, mc=None): + """ + Load and parse one .bb build file + Return the data and whether parsing resulted in the file being skipped + """ + + if virtonly: + (bbfile, virtual, mc) = virtualfn2realfn(bbfile) + bb_data = self.databuilder.mcdata[mc].createCopy() + bb_data.setVar("__ONLYFINALISE", virtual or "default") + datastores = parse_recipe(bb_data, bbfile, appends, mc) + return datastores + + if mc is not None: + bb_data = self.databuilder.mcdata[mc].createCopy() + return parse_recipe(bb_data, bbfile, appends, mc) + + bb_data = self.data.createCopy() + datastores = parse_recipe(bb_data, bbfile, appends) + + for mc in self.databuilder.mcdata: + if not mc: + continue + bb_data = self.databuilder.mcdata[mc].createCopy() + newstores = parse_recipe(bb_data, bbfile, appends, mc) + for ns in newstores: + datastores["mc:%s:%s" % (mc, ns)] = newstores[ns] + + return datastores + +class Cache(NoCache): + """ + BitBake Cache implementation + """ + def __init__(self, databuilder, mc, data_hash, caches_array): + super().__init__(databuilder) + data = databuilder.data + + # Pass caches_array information into Cache Constructor + # It will be used later for deciding whether we + # need extra cache file dump/load support + self.mc = mc + self.logger = PrefixLoggerAdapter("Cache: %s: " % (mc if mc else "default"), logger) + self.caches_array = caches_array + self.cachedir = data.getVar("CACHE") + self.clean = set() + self.checked = set() + self.depends_cache = {} + self.data_fn = None + self.cacheclean = True + self.data_hash = data_hash + self.filelist_regex = re.compile(r'(?:(?<=:True)|(?<=:False))\s+') + + if self.cachedir in [None, '']: + self.has_cache = False + self.logger.info("Not using a cache. " + "Set CACHE = to enable.") + return + + self.has_cache = True + + def getCacheFile(self, cachefile): + return getCacheFile(self.cachedir, cachefile, self.mc, self.data_hash) + + def prepare_cache(self, progress): + if not self.has_cache: + return 0 + + loaded = 0 + + self.cachefile = self.getCacheFile("bb_cache.dat") + + self.logger.debug("Cache dir: %s", self.cachedir) + bb.utils.mkdirhier(self.cachedir) + + cache_ok = True + if self.caches_array: + for cache_class in self.caches_array: + cachefile = self.getCacheFile(cache_class.cachefile) + cache_exists = os.path.exists(cachefile) + self.logger.debug2("Checking if %s exists: %r", cachefile, cache_exists) + cache_ok = cache_ok and cache_exists + cache_class.init_cacheData(self) + if cache_ok: + loaded = self.load_cachefile(progress) + elif os.path.isfile(self.cachefile): + self.logger.info("Out of date cache found, rebuilding...") + else: + self.logger.debug("Cache file %s not found, building..." % self.cachefile) + + # We don't use the symlink, its just for debugging convinience + if self.mc: + symlink = os.path.join(self.cachedir, "bb_cache.dat.%s" % self.mc) + else: + symlink = os.path.join(self.cachedir, "bb_cache.dat") + + if os.path.exists(symlink): + bb.utils.remove(symlink) + try: + os.symlink(os.path.basename(self.cachefile), symlink) + except OSError: + pass + + return loaded + + def cachesize(self): + if not self.has_cache: + return 0 + + cachesize = 0 + for cache_class in self.caches_array: + cachefile = self.getCacheFile(cache_class.cachefile) + try: + with open(cachefile, "rb") as cachefile: + cachesize += os.fstat(cachefile.fileno()).st_size + except FileNotFoundError: + pass + + return cachesize + + def load_cachefile(self, progress): + previous_progress = 0 + + for cache_class in self.caches_array: + cachefile = self.getCacheFile(cache_class.cachefile) + self.logger.debug('Loading cache file: %s' % cachefile) + with open(cachefile, "rb") as cachefile: + pickled = pickle.Unpickler(cachefile) + # Check cache version information + try: + cache_ver = pickled.load() + bitbake_ver = pickled.load() + except Exception: + self.logger.info('Invalid cache, rebuilding...') + return 0 + + if cache_ver != __cache_version__: + self.logger.info('Cache version mismatch, rebuilding...') + return 0 + elif bitbake_ver != bb.__version__: + self.logger.info('Bitbake version mismatch, rebuilding...') + return 0 + + # Load the rest of the cache file + current_progress = 0 + while cachefile: + try: + key = pickled.load() + value = pickled.load() + except Exception: + break + if not isinstance(key, str): + bb.warn("%s from extras cache is not a string?" % key) + break + if not isinstance(value, RecipeInfoCommon): + bb.warn("%s from extras cache is not a RecipeInfoCommon class?" % value) + break + + if key in self.depends_cache: + self.depends_cache[key].append(value) + else: + self.depends_cache[key] = [value] + # only fire events on even percentage boundaries + current_progress = cachefile.tell() + previous_progress + progress(cachefile.tell() + previous_progress) + + previous_progress += current_progress + + return len(self.depends_cache) + + def parse(self, filename, appends): + """Parse the specified filename, returning the recipe information""" + self.logger.debug("Parsing %s", filename) + infos = [] + datastores = self.load_bbfile(filename, appends, mc=self.mc) + depends = [] + variants = [] + # Process the "real" fn last so we can store variants list + for variant, data in sorted(datastores.items(), + key=lambda i: i[0], + reverse=True): + virtualfn = variant2virtual(filename, variant) + variants.append(variant) + depends = depends + (data.getVar("__depends", False) or []) + if depends and not variant: + data.setVar("__depends", depends) + if virtualfn == filename: + data.setVar("__VARIANTS", " ".join(variants)) + info_array = [] + for cache_class in self.caches_array: + info = cache_class(filename, data) + info_array.append(info) + infos.append((virtualfn, info_array)) + + return infos + + def load(self, filename, appends): + """Obtain the recipe information for the specified filename, + using cached values if available, otherwise parsing. + + Note that if it does parse to obtain the info, it will not + automatically add the information to the cache or to your + CacheData. Use the add or add_info method to do so after + running this, or use loadData instead.""" + cached = self.cacheValid(filename, appends) + if cached: + infos = [] + # info_array item is a list of [CoreRecipeInfo, XXXRecipeInfo] + info_array = self.depends_cache[filename] + for variant in info_array[0].variants: + virtualfn = variant2virtual(filename, variant) + infos.append((virtualfn, self.depends_cache[virtualfn])) + else: + return self.parse(filename, appends, configdata, self.caches_array) + + return cached, infos + + def loadData(self, fn, appends, cacheData): + """Load the recipe info for the specified filename, + parsing and adding to the cache if necessary, and adding + the recipe information to the supplied CacheData instance.""" + skipped, virtuals = 0, 0 + + cached, infos = self.load(fn, appends) + for virtualfn, info_array in infos: + if info_array[0].skipped: + self.logger.debug("Skipping %s: %s", virtualfn, info_array[0].skipreason) + skipped += 1 + else: + self.add_info(virtualfn, info_array, cacheData, not cached) + virtuals += 1 + + return cached, skipped, virtuals + + def cacheValid(self, fn, appends): + """ + Is the cache valid for fn? + Fast version, no timestamps checked. + """ + if fn not in self.checked: + self.cacheValidUpdate(fn, appends) + + # Is cache enabled? + if not self.has_cache: + return False + if fn in self.clean: + return True + return False + + def cacheValidUpdate(self, fn, appends): + """ + Is the cache valid for fn? + Make thorough (slower) checks including timestamps. + """ + # Is cache enabled? + if not self.has_cache: + return False + + self.checked.add(fn) + + # File isn't in depends_cache + if not fn in self.depends_cache: + self.logger.debug2("%s is not cached", fn) + return False + + mtime = bb.parse.cached_mtime_noerror(fn) + + # Check file still exists + if mtime == 0: + self.logger.debug2("%s no longer exists", fn) + self.remove(fn) + return False + + info_array = self.depends_cache[fn] + # Check the file's timestamp + if mtime != info_array[0].timestamp: + self.logger.debug2("%s changed", fn) + self.remove(fn) + return False + + # Check dependencies are still valid + depends = info_array[0].file_depends + if depends: + for f, old_mtime in depends: + fmtime = bb.parse.cached_mtime_noerror(f) + # Check if file still exists + if old_mtime != 0 and fmtime == 0: + self.logger.debug2("%s's dependency %s was removed", + fn, f) + self.remove(fn) + return False + + if (fmtime != old_mtime): + self.logger.debug2("%s's dependency %s changed", + fn, f) + self.remove(fn) + return False + + if hasattr(info_array[0], 'file_checksums'): + for _, fl in info_array[0].file_checksums.items(): + fl = fl.strip() + if not fl: + continue + # Have to be careful about spaces and colons in filenames + flist = self.filelist_regex.split(fl) + for f in flist: + if not f: + continue + f, exist = f.rsplit(":", 1) + if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)): + self.logger.debug2("%s's file checksum list file %s changed", + fn, f) + self.remove(fn) + return False + + if tuple(appends) != tuple(info_array[0].appends): + self.logger.debug2("appends for %s changed", fn) + self.logger.debug2("%s to %s" % (str(appends), str(info_array[0].appends))) + self.remove(fn) + return False + + invalid = False + for cls in info_array[0].variants: + virtualfn = variant2virtual(fn, cls) + self.clean.add(virtualfn) + if virtualfn not in self.depends_cache: + self.logger.debug2("%s is not cached", virtualfn) + invalid = True + elif len(self.depends_cache[virtualfn]) != len(self.caches_array): + self.logger.debug2("Extra caches missing for %s?" % virtualfn) + invalid = True + + # If any one of the variants is not present, mark as invalid for all + if invalid: + for cls in info_array[0].variants: + virtualfn = variant2virtual(fn, cls) + if virtualfn in self.clean: + self.logger.debug2("Removing %s from cache", virtualfn) + self.clean.remove(virtualfn) + if fn in self.clean: + self.logger.debug2("Marking %s as not clean", fn) + self.clean.remove(fn) + return False + + self.clean.add(fn) + return True + + def remove(self, fn): + """ + Remove a fn from the cache + Called from the parser in error cases + """ + if fn in self.depends_cache: + self.logger.debug("Removing %s from cache", fn) + del self.depends_cache[fn] + if fn in self.clean: + self.logger.debug("Marking %s as unclean", fn) + self.clean.remove(fn) + + def sync(self): + """ + Save the cache + Called from the parser when complete (or exiting) + """ + + if not self.has_cache: + return + + if self.cacheclean: + self.logger.debug2("Cache is clean, not saving.") + return + + for cache_class in self.caches_array: + cache_class_name = cache_class.__name__ + cachefile = self.getCacheFile(cache_class.cachefile) + self.logger.debug2("Writing %s", cachefile) + with open(cachefile, "wb") as f: + p = pickle.Pickler(f, pickle.HIGHEST_PROTOCOL) + p.dump(__cache_version__) + p.dump(bb.__version__) + + for key, info_array in self.depends_cache.items(): + for info in info_array: + if isinstance(info, RecipeInfoCommon) and info.__class__.__name__ == cache_class_name: + p.dump(key) + p.dump(info) + + del self.depends_cache + + @staticmethod + def mtime(cachefile): + return bb.parse.cached_mtime_noerror(cachefile) + + def add_info(self, filename, info_array, cacheData, parsed=None, watcher=None): + if self.mc is not None: + (fn, cls, mc) = virtualfn2realfn(filename) + if mc: + self.logger.error("Unexpected multiconfig %s", filename) + return + + vfn = realfn2virtual(fn, cls, self.mc) + else: + vfn = filename + + if isinstance(info_array[0], CoreRecipeInfo) and (not info_array[0].skipped): + cacheData.add_from_recipeinfo(vfn, info_array) + + if watcher: + watcher(info_array[0].file_depends) + + if not self.has_cache: + return + + if (info_array[0].skipped or 'SRCREVINACTION' not in info_array[0].pv) and not info_array[0].nocache: + if parsed: + self.cacheclean = False + self.depends_cache[filename] = info_array + + def add(self, file_name, data, cacheData, parsed=None): + """ + Save data we need into the cache + """ + + realfn = virtualfn2realfn(file_name)[0] + + info_array = [] + for cache_class in self.caches_array: + info_array.append(cache_class(realfn, data)) + self.add_info(file_name, info_array, cacheData, parsed) + +class MulticonfigCache(Mapping): + def __init__(self, databuilder, data_hash, caches_array): + def progress(p): + nonlocal current_progress + nonlocal previous_progress + nonlocal previous_percent + nonlocal cachesize + + current_progress = previous_progress + p + + if current_progress > cachesize: + # we might have calculated incorrect total size because a file + # might've been written out just after we checked its size + cachesize = current_progress + current_percent = 100 * current_progress / cachesize + if current_percent > previous_percent: + previous_percent = current_percent + bb.event.fire(bb.event.CacheLoadProgress(current_progress, cachesize), + databuilder.data) + + + cachesize = 0 + current_progress = 0 + previous_progress = 0 + previous_percent = 0 + self.__caches = {} + + for mc, mcdata in databuilder.mcdata.items(): + self.__caches[mc] = Cache(databuilder, mc, data_hash, caches_array) + + cachesize += self.__caches[mc].cachesize() + + bb.event.fire(bb.event.CacheLoadStarted(cachesize), databuilder.data) + loaded = 0 + + for c in self.__caches.values(): + loaded += c.prepare_cache(progress) + previous_progress = current_progress + + # Note: depends cache number is corresponding to the parsing file numbers. + # The same file has several caches, still regarded as one item in the cache + bb.event.fire(bb.event.CacheLoadCompleted(cachesize, loaded), databuilder.data) + + def __len__(self): + return len(self.__caches) + + def __getitem__(self, key): + return self.__caches[key] + + def __contains__(self, key): + return key in self.__caches + + def __iter__(self): + for k in self.__caches: + yield k + +def init(cooker): + """ + The Objective: Cache the minimum amount of data possible yet get to the + stage of building packages (i.e. tryBuild) without reparsing any .bb files. + + To do this, we intercept getVar calls and only cache the variables we see + being accessed. We rely on the cache getVar calls being made for all + variables bitbake might need to use to reach this stage. For each cached + file we need to track: + + * Its mtime + * The mtimes of all its dependencies + * Whether it caused a parse.SkipRecipe exception + + Files causing parsing errors are evicted from the cache. + + """ + return Cache(cooker.configuration.data, cooker.configuration.data_hash) + + +class CacheData(object): + """ + The data structures we compile from the cached data + """ + + def __init__(self, caches_array): + self.caches_array = caches_array + for cache_class in self.caches_array: + if not issubclass(cache_class, RecipeInfoCommon): + bb.error("Extra cache data class %s should subclass RecipeInfoCommon class" % cache_class) + cache_class.init_cacheData(self) + + # Direct cache variables + self.task_queues = {} + self.preferred = {} + self.tasks = {} + # Indirect Cache variables (set elsewhere) + self.ignored_dependencies = [] + self.world_target = set() + self.bbfile_priority = {} + + def add_from_recipeinfo(self, fn, info_array): + for info in info_array: + info.add_cacheData(self, fn) + +class MultiProcessCache(object): + """ + BitBake multi-process cache implementation + + Used by the codeparser & file checksum caches + """ + + def __init__(self): + self.cachefile = None + self.cachedata = self.create_cachedata() + self.cachedata_extras = self.create_cachedata() + + def init_cache(self, d, cache_file_name=None): + cachedir = (d.getVar("PERSISTENT_DIR") or + d.getVar("CACHE")) + if cachedir in [None, '']: + return + bb.utils.mkdirhier(cachedir) + self.cachefile = os.path.join(cachedir, + cache_file_name or self.__class__.cache_file_name) + logger.debug("Using cache in '%s'", self.cachefile) + + glf = bb.utils.lockfile(self.cachefile + ".lock") + + try: + with open(self.cachefile, "rb") as f: + p = pickle.Unpickler(f) + data, version = p.load() + except: + bb.utils.unlockfile(glf) + return + + bb.utils.unlockfile(glf) + + if version != self.__class__.CACHE_VERSION: + return + + self.cachedata = data + + def create_cachedata(self): + data = [{}] + return data + + def save_extras(self): + if not self.cachefile: + return + + glf = bb.utils.lockfile(self.cachefile + ".lock", shared=True) + + i = os.getpid() + lf = None + while not lf: + lf = bb.utils.lockfile(self.cachefile + ".lock." + str(i), retry=False) + if not lf or os.path.exists(self.cachefile + "-" + str(i)): + if lf: + bb.utils.unlockfile(lf) + lf = None + i = i + 1 + continue + + with open(self.cachefile + "-" + str(i), "wb") as f: + p = pickle.Pickler(f, -1) + p.dump([self.cachedata_extras, self.__class__.CACHE_VERSION]) + + bb.utils.unlockfile(lf) + bb.utils.unlockfile(glf) + + def merge_data(self, source, dest): + for j in range(0,len(dest)): + for h in source[j]: + if h not in dest[j]: + dest[j][h] = source[j][h] + + def save_merge(self): + if not self.cachefile: + return + + glf = bb.utils.lockfile(self.cachefile + ".lock") + + data = self.cachedata + + for f in [y for y in os.listdir(os.path.dirname(self.cachefile)) if y.startswith(os.path.basename(self.cachefile) + '-')]: + f = os.path.join(os.path.dirname(self.cachefile), f) + try: + with open(f, "rb") as fd: + p = pickle.Unpickler(fd) + extradata, version = p.load() + except (IOError, EOFError): + os.unlink(f) + continue + + if version != self.__class__.CACHE_VERSION: + os.unlink(f) + continue + + self.merge_data(extradata, data) + os.unlink(f) + + with open(self.cachefile, "wb") as f: + p = pickle.Pickler(f, -1) + p.dump([data, self.__class__.CACHE_VERSION]) + + bb.utils.unlockfile(glf) + + +class SimpleCache(object): + """ + BitBake multi-process cache implementation + + Used by the codeparser & file checksum caches + """ + + def __init__(self, version): + self.cachefile = None + self.cachedata = None + self.cacheversion = version + + def init_cache(self, d, cache_file_name=None, defaultdata=None): + cachedir = (d.getVar("PERSISTENT_DIR") or + d.getVar("CACHE")) + if not cachedir: + return defaultdata + + bb.utils.mkdirhier(cachedir) + self.cachefile = os.path.join(cachedir, + cache_file_name or self.__class__.cache_file_name) + logger.debug("Using cache in '%s'", self.cachefile) + + glf = bb.utils.lockfile(self.cachefile + ".lock") + + try: + with open(self.cachefile, "rb") as f: + p = pickle.Unpickler(f) + data, version = p.load() + except: + bb.utils.unlockfile(glf) + return defaultdata + + bb.utils.unlockfile(glf) + + if version != self.cacheversion: + return defaultdata + + return data + + def save(self, data): + if not self.cachefile: + return + + glf = bb.utils.lockfile(self.cachefile + ".lock") + + with open(self.cachefile, "wb") as f: + p = pickle.Pickler(f, -1) + p.dump([data, self.cacheversion]) + + bb.utils.unlockfile(glf) diff --git a/poky/bitbake/lib/bb/cache_extra.py b/poky/bitbake/lib/bb/cache_extra.py new file mode 100644 index 0000000..bf4226d --- /dev/null +++ b/poky/bitbake/lib/bb/cache_extra.py @@ -0,0 +1,63 @@ +# +# Extra RecipeInfo will be all defined in this file. Currently, +# Only Hob (Image Creator) Requests some extra fields. So +# HobRecipeInfo is defined. It's named HobRecipeInfo because it +# is introduced by 'hob'. Users could also introduce other +# RecipeInfo or simply use those already defined RecipeInfo. +# In the following patch, this newly defined new extra RecipeInfo +# will be dynamically loaded and used for loading/saving the extra +# cache fields + +# Copyright (C) 2011, Intel Corporation. All rights reserved. + +# SPDX-License-Identifier: GPL-2.0-only +# + +from bb.cache import RecipeInfoCommon + +class HobRecipeInfo(RecipeInfoCommon): + __slots__ = () + + classname = "HobRecipeInfo" + # please override this member with the correct data cache file + # such as (bb_cache.dat, bb_extracache_hob.dat) + cachefile = "bb_extracache_" + classname +".dat" + + # override this member with the list of extra cache fields + # that this class will provide + cachefields = ['summary', 'license', 'section', + 'description', 'homepage', 'bugtracker', + 'prevision', 'files_info'] + + def __init__(self, filename, metadata): + + self.summary = self.getvar('SUMMARY', metadata) + self.license = self.getvar('LICENSE', metadata) + self.section = self.getvar('SECTION', metadata) + self.description = self.getvar('DESCRIPTION', metadata) + self.homepage = self.getvar('HOMEPAGE', metadata) + self.bugtracker = self.getvar('BUGTRACKER', metadata) + self.prevision = self.getvar('PR', metadata) + self.files_info = self.getvar('FILES_INFO', metadata) + + @classmethod + def init_cacheData(cls, cachedata): + # CacheData in Hob RecipeInfo Class + cachedata.summary = {} + cachedata.license = {} + cachedata.section = {} + cachedata.description = {} + cachedata.homepage = {} + cachedata.bugtracker = {} + cachedata.prevision = {} + cachedata.files_info = {} + + def add_cacheData(self, cachedata, fn): + cachedata.summary[fn] = self.summary + cachedata.license[fn] = self.license + cachedata.section[fn] = self.section + cachedata.description[fn] = self.description + cachedata.homepage[fn] = self.homepage + cachedata.bugtracker[fn] = self.bugtracker + cachedata.prevision[fn] = self.prevision + cachedata.files_info[fn] = self.files_info diff --git a/poky/bitbake/lib/bb/checksum.py b/poky/bitbake/lib/bb/checksum.py new file mode 100644 index 0000000..557793d --- /dev/null +++ b/poky/bitbake/lib/bb/checksum.py @@ -0,0 +1,144 @@ +# Local file checksum cache implementation +# +# Copyright (C) 2012 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import glob +import operator +import os +import stat +import bb.utils +import logging +import re +from bb.cache import MultiProcessCache + +logger = logging.getLogger("BitBake.Cache") + +filelist_regex = re.compile(r'(?:(?<=:True)|(?<=:False))\s+') + +# mtime cache (non-persistent) +# based upon the assumption that files do not change during bitbake run +class FileMtimeCache(object): + cache = {} + + def cached_mtime(self, f): + if f not in self.cache: + self.cache[f] = os.stat(f)[stat.ST_MTIME] + return self.cache[f] + + def cached_mtime_noerror(self, f): + if f not in self.cache: + try: + self.cache[f] = os.stat(f)[stat.ST_MTIME] + except OSError: + return 0 + return self.cache[f] + + def update_mtime(self, f): + self.cache[f] = os.stat(f)[stat.ST_MTIME] + return self.cache[f] + + def clear(self): + self.cache.clear() + +# Checksum + mtime cache (persistent) +class FileChecksumCache(MultiProcessCache): + cache_file_name = "local_file_checksum_cache.dat" + CACHE_VERSION = 1 + + def __init__(self): + self.mtime_cache = FileMtimeCache() + MultiProcessCache.__init__(self) + + def get_checksum(self, f): + f = os.path.normpath(f) + entry = self.cachedata[0].get(f) + cmtime = self.mtime_cache.cached_mtime(f) + if entry: + (mtime, hashval) = entry + if cmtime == mtime: + return hashval + else: + bb.debug(2, "file %s changed mtime, recompute checksum" % f) + + hashval = bb.utils.md5_file(f) + self.cachedata_extras[0][f] = (cmtime, hashval) + return hashval + + def merge_data(self, source, dest): + for h in source[0]: + if h in dest: + (smtime, _) = source[0][h] + (dmtime, _) = dest[0][h] + if smtime > dmtime: + dest[0][h] = source[0][h] + else: + dest[0][h] = source[0][h] + + def get_checksums(self, filelist, pn, localdirsexclude): + """Get checksums for a list of files""" + + def checksum_file(f): + try: + checksum = self.get_checksum(f) + except OSError as e: + bb.warn("Unable to get checksum for %s SRC_URI entry %s: %s" % (pn, os.path.basename(f), e)) + return None + return checksum + + # + # Changing the format of file-checksums is problematic as both OE and Bitbake have + # knowledge of them. We need to encode a new piece of data, the portion of the path + # we care about from a checksum perspective. This means that files that change subdirectory + # are tracked by the task hashes. To do this, we do something horrible and put a "/./" into + # the path. The filesystem handles it but it gives us a marker to know which subsection + # of the path to cache. + # + def checksum_dir(pth): + # Handle directories recursively + if pth == "/": + bb.fatal("Refusing to checksum /") + pth = pth.rstrip("/") + dirchecksums = [] + for root, dirs, files in os.walk(pth, topdown=True): + [dirs.remove(d) for d in list(dirs) if d in localdirsexclude] + for name in files: + fullpth = os.path.join(root, name).replace(pth, os.path.join(pth, ".")) + checksum = checksum_file(fullpth) + if checksum: + dirchecksums.append((fullpth, checksum)) + return dirchecksums + + checksums = [] + for pth in filelist_regex.split(filelist): + if not pth: + continue + pth = pth.strip() + if not pth: + continue + exist = pth.split(":")[1] + if exist == "False": + continue + pth = pth.split(":")[0] + if '*' in pth: + # Handle globs + for f in glob.glob(pth): + if os.path.isdir(f): + if not os.path.islink(f): + checksums.extend(checksum_dir(f)) + else: + checksum = checksum_file(f) + if checksum: + checksums.append((f, checksum)) + elif os.path.isdir(pth): + if not os.path.islink(pth): + checksums.extend(checksum_dir(pth)) + else: + checksum = checksum_file(pth) + if checksum: + checksums.append((pth, checksum)) + + checksums.sort(key=operator.itemgetter(1)) + return checksums diff --git a/poky/bitbake/lib/bb/codeparser.py b/poky/bitbake/lib/bb/codeparser.py new file mode 100644 index 0000000..9d66d3a --- /dev/null +++ b/poky/bitbake/lib/bb/codeparser.py @@ -0,0 +1,477 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +""" +BitBake code parser + +Parses actual code (i.e. python and shell) for functions and in-line +expressions. Used mainly to determine dependencies on other functions +and variables within the BitBake metadata. Also provides a cache for +this information in order to speed up processing. + +(Not to be confused with the code that parses the metadata itself, +see lib/bb/parse/ for that). + +NOTE: if you change how the parsers gather information you will almost +certainly need to increment CodeParserCache.CACHE_VERSION below so that +any existing codeparser cache gets invalidated. Additionally you'll need +to increment __cache_version__ in cache.py in order to ensure that old +recipe caches don't trigger "Taskhash mismatch" errors. + +""" + +import ast +import sys +import codegen +import logging +import bb.pysh as pysh +import bb.utils, bb.data +import hashlib +from itertools import chain +from bb.pysh import pyshyacc, pyshlex +from bb.cache import MultiProcessCache + +logger = logging.getLogger('BitBake.CodeParser') + +def bbhash(s): + return hashlib.sha256(s.encode("utf-8")).hexdigest() + +def check_indent(codestr): + """If the code is indented, add a top level piece of code to 'remove' the indentation""" + + i = 0 + while codestr[i] in ["\n", "\t", " "]: + i = i + 1 + + if i == 0: + return codestr + + if codestr[i-1] == "\t" or codestr[i-1] == " ": + if codestr[0] == "\n": + # Since we're adding a line, we need to remove one line of any empty padding + # to ensure line numbers are correct + codestr = codestr[1:] + return "if 1:\n" + codestr + + return codestr + +# A custom getstate/setstate using tuples is actually worth 15% cachesize by +# avoiding duplication of the attribute names! + + +class SetCache(object): + def __init__(self): + self.setcache = {} + + def internSet(self, items): + + new = [] + for i in items: + new.append(sys.intern(i)) + s = frozenset(new) + h = hash(s) + if h in self.setcache: + return self.setcache[h] + self.setcache[h] = s + return s + +codecache = SetCache() + +class pythonCacheLine(object): + def __init__(self, refs, execs, contains): + self.refs = codecache.internSet(refs) + self.execs = codecache.internSet(execs) + self.contains = {} + for c in contains: + self.contains[c] = codecache.internSet(contains[c]) + + def __getstate__(self): + return (self.refs, self.execs, self.contains) + + def __setstate__(self, state): + (refs, execs, contains) = state + self.__init__(refs, execs, contains) + def __hash__(self): + l = (hash(self.refs), hash(self.execs)) + for c in sorted(self.contains.keys()): + l = l + (c, hash(self.contains[c])) + return hash(l) + def __repr__(self): + return " ".join([str(self.refs), str(self.execs), str(self.contains)]) + + +class shellCacheLine(object): + def __init__(self, execs): + self.execs = codecache.internSet(execs) + + def __getstate__(self): + return (self.execs) + + def __setstate__(self, state): + (execs) = state + self.__init__(execs) + def __hash__(self): + return hash(self.execs) + def __repr__(self): + return str(self.execs) + +class CodeParserCache(MultiProcessCache): + cache_file_name = "bb_codeparser.dat" + # NOTE: you must increment this if you change how the parsers gather information, + # so that an existing cache gets invalidated. Additionally you'll need + # to increment __cache_version__ in cache.py in order to ensure that old + # recipe caches don't trigger "Taskhash mismatch" errors. + CACHE_VERSION = 11 + + def __init__(self): + MultiProcessCache.__init__(self) + self.pythoncache = self.cachedata[0] + self.shellcache = self.cachedata[1] + self.pythoncacheextras = self.cachedata_extras[0] + self.shellcacheextras = self.cachedata_extras[1] + + # To avoid duplication in the codeparser cache, keep + # a lookup of hashes of objects we already have + self.pythoncachelines = {} + self.shellcachelines = {} + + def newPythonCacheLine(self, refs, execs, contains): + cacheline = pythonCacheLine(refs, execs, contains) + h = hash(cacheline) + if h in self.pythoncachelines: + return self.pythoncachelines[h] + self.pythoncachelines[h] = cacheline + return cacheline + + def newShellCacheLine(self, execs): + cacheline = shellCacheLine(execs) + h = hash(cacheline) + if h in self.shellcachelines: + return self.shellcachelines[h] + self.shellcachelines[h] = cacheline + return cacheline + + def init_cache(self, d): + # Check if we already have the caches + if self.pythoncache: + return + + MultiProcessCache.init_cache(self, d) + + # cachedata gets re-assigned in the parent + self.pythoncache = self.cachedata[0] + self.shellcache = self.cachedata[1] + + def create_cachedata(self): + data = [{}, {}] + return data + +codeparsercache = CodeParserCache() + +def parser_cache_init(d): + codeparsercache.init_cache(d) + +def parser_cache_save(): + codeparsercache.save_extras() + +def parser_cache_savemerge(): + codeparsercache.save_merge() + +Logger = logging.getLoggerClass() +class BufferedLogger(Logger): + def __init__(self, name, level=0, target=None): + Logger.__init__(self, name) + self.setLevel(level) + self.buffer = [] + self.target = target + + def handle(self, record): + self.buffer.append(record) + + def flush(self): + for record in self.buffer: + if self.target.isEnabledFor(record.levelno): + self.target.handle(record) + self.buffer = [] + +class DummyLogger(): + def flush(self): + return + +class PythonParser(): + getvars = (".getVar", ".appendVar", ".prependVar", "oe.utils.conditional") + getvarflags = (".getVarFlag", ".appendVarFlag", ".prependVarFlag") + containsfuncs = ("bb.utils.contains", "base_contains") + containsanyfuncs = ("bb.utils.contains_any", "bb.utils.filter") + execfuncs = ("bb.build.exec_func", "bb.build.exec_task") + + def warn(self, func, arg): + """Warn about calls of bitbake APIs which pass a non-literal + argument for the variable name, as we're not able to track such + a reference. + """ + + try: + funcstr = codegen.to_source(func) + argstr = codegen.to_source(arg) + except TypeError: + self.log.debug2('Failed to convert function and argument to source form') + else: + self.log.debug(self.unhandled_message % (funcstr, argstr)) + + def visit_Call(self, node): + name = self.called_node_name(node.func) + if name and (name.endswith(self.getvars) or name.endswith(self.getvarflags) or name in self.containsfuncs or name in self.containsanyfuncs): + if isinstance(node.args[0], ast.Str): + varname = node.args[0].s + if name in self.containsfuncs and isinstance(node.args[1], ast.Str): + if varname not in self.contains: + self.contains[varname] = set() + self.contains[varname].add(node.args[1].s) + elif name in self.containsanyfuncs and isinstance(node.args[1], ast.Str): + if varname not in self.contains: + self.contains[varname] = set() + self.contains[varname].update(node.args[1].s.split()) + elif name.endswith(self.getvarflags): + if isinstance(node.args[1], ast.Str): + self.references.add('%s[%s]' % (varname, node.args[1].s)) + else: + self.warn(node.func, node.args[1]) + else: + self.references.add(varname) + else: + self.warn(node.func, node.args[0]) + elif name and name.endswith(".expand"): + if isinstance(node.args[0], ast.Str): + value = node.args[0].s + d = bb.data.init() + parser = d.expandWithRefs(value, self.name) + self.references |= parser.references + self.execs |= parser.execs + for varname in parser.contains: + if varname not in self.contains: + self.contains[varname] = set() + self.contains[varname] |= parser.contains[varname] + elif name in self.execfuncs: + if isinstance(node.args[0], ast.Str): + self.var_execs.add(node.args[0].s) + else: + self.warn(node.func, node.args[0]) + elif name and isinstance(node.func, (ast.Name, ast.Attribute)): + self.execs.add(name) + + def called_node_name(self, node): + """Given a called node, return its original string form""" + components = [] + while node: + if isinstance(node, ast.Attribute): + components.append(node.attr) + node = node.value + elif isinstance(node, ast.Name): + components.append(node.id) + return '.'.join(reversed(components)) + else: + break + + def __init__(self, name, log): + self.name = name + self.var_execs = set() + self.contains = {} + self.execs = set() + self.references = set() + self._log = log + # Defer init as expensive + self.log = DummyLogger() + + self.unhandled_message = "in call of %s, argument '%s' is not a string literal" + self.unhandled_message = "while parsing %s, %s" % (name, self.unhandled_message) + + def parse_python(self, node, lineno=0, filename=""): + if not node or not node.strip(): + return + + h = bbhash(str(node)) + + if h in codeparsercache.pythoncache: + self.references = set(codeparsercache.pythoncache[h].refs) + self.execs = set(codeparsercache.pythoncache[h].execs) + self.contains = {} + for i in codeparsercache.pythoncache[h].contains: + self.contains[i] = set(codeparsercache.pythoncache[h].contains[i]) + return + + if h in codeparsercache.pythoncacheextras: + self.references = set(codeparsercache.pythoncacheextras[h].refs) + self.execs = set(codeparsercache.pythoncacheextras[h].execs) + self.contains = {} + for i in codeparsercache.pythoncacheextras[h].contains: + self.contains[i] = set(codeparsercache.pythoncacheextras[h].contains[i]) + return + + # Need to parse so take the hit on the real log buffer + self.log = BufferedLogger('BitBake.Data.PythonParser', logging.DEBUG, self._log) + + # We can't add to the linenumbers for compile, we can pad to the correct number of blank lines though + node = "\n" * int(lineno) + node + code = compile(check_indent(str(node)), filename, "exec", + ast.PyCF_ONLY_AST) + + for n in ast.walk(code): + if n.__class__.__name__ == "Call": + self.visit_Call(n) + + self.execs.update(self.var_execs) + + codeparsercache.pythoncacheextras[h] = codeparsercache.newPythonCacheLine(self.references, self.execs, self.contains) + +class ShellParser(): + def __init__(self, name, log): + self.funcdefs = set() + self.allexecs = set() + self.execs = set() + self._name = name + self._log = log + # Defer init as expensive + self.log = DummyLogger() + + self.unhandled_template = "unable to handle non-literal command '%s'" + self.unhandled_template = "while parsing %s, %s" % (name, self.unhandled_template) + + def parse_shell(self, value): + """Parse the supplied shell code in a string, returning the external + commands it executes. + """ + + h = bbhash(str(value)) + + if h in codeparsercache.shellcache: + self.execs = set(codeparsercache.shellcache[h].execs) + return self.execs + + if h in codeparsercache.shellcacheextras: + self.execs = set(codeparsercache.shellcacheextras[h].execs) + return self.execs + + # Need to parse so take the hit on the real log buffer + self.log = BufferedLogger('BitBake.Data.%s' % self._name, logging.DEBUG, self._log) + + self._parse_shell(value) + self.execs = set(cmd for cmd in self.allexecs if cmd not in self.funcdefs) + + codeparsercache.shellcacheextras[h] = codeparsercache.newShellCacheLine(self.execs) + + return self.execs + + def _parse_shell(self, value): + try: + tokens, _ = pyshyacc.parse(value, eof=True, debug=False) + except Exception: + bb.error('Error during parse shell code, the last 5 lines are:\n%s' % '\n'.join(value.split('\n')[-5:])) + raise + + self.process_tokens(tokens) + + def process_tokens(self, tokens): + """Process a supplied portion of the syntax tree as returned by + pyshyacc.parse. + """ + + def function_definition(value): + self.funcdefs.add(value.name) + return [value.body], None + + def case_clause(value): + # Element 0 of each item in the case is the list of patterns, and + # Element 1 of each item in the case is the list of commands to be + # executed when that pattern matches. + words = chain(*[item[0] for item in value.items]) + cmds = chain(*[item[1] for item in value.items]) + return cmds, words + + def if_clause(value): + main = chain(value.cond, value.if_cmds) + rest = value.else_cmds + if isinstance(rest, tuple) and rest[0] == "elif": + return chain(main, if_clause(rest[1])) + else: + return chain(main, rest) + + def simple_command(value): + return None, chain(value.words, (assign[1] for assign in value.assigns)) + + token_handlers = { + "and_or": lambda x: ((x.left, x.right), None), + "async": lambda x: ([x], None), + "brace_group": lambda x: (x.cmds, None), + "for_clause": lambda x: (x.cmds, x.items), + "function_definition": function_definition, + "if_clause": lambda x: (if_clause(x), None), + "pipeline": lambda x: (x.commands, None), + "redirect_list": lambda x: ([x.cmd], None), + "subshell": lambda x: (x.cmds, None), + "while_clause": lambda x: (chain(x.condition, x.cmds), None), + "until_clause": lambda x: (chain(x.condition, x.cmds), None), + "simple_command": simple_command, + "case_clause": case_clause, + } + + def process_token_list(tokens): + for token in tokens: + if isinstance(token, list): + process_token_list(token) + continue + name, value = token + try: + more_tokens, words = token_handlers[name](value) + except KeyError: + raise NotImplementedError("Unsupported token type " + name) + + if more_tokens: + self.process_tokens(more_tokens) + + if words: + self.process_words(words) + + process_token_list(tokens) + + def process_words(self, words): + """Process a set of 'words' in pyshyacc parlance, which includes + extraction of executed commands from $() blocks, as well as grabbing + the command name argument. + """ + + words = list(words) + for word in list(words): + wtree = pyshlex.make_wordtree(word[1]) + for part in wtree: + if not isinstance(part, list): + continue + + if part[0] in ('`', '$('): + command = pyshlex.wordtree_as_string(part[1:-1]) + self._parse_shell(command) + + if word[0] in ("cmd_name", "cmd_word"): + if word in words: + words.remove(word) + + usetoken = False + for word in words: + if word[0] in ("cmd_name", "cmd_word") or \ + (usetoken and word[0] == "TOKEN"): + if "=" in word[1]: + usetoken = True + continue + + cmd = word[1] + if cmd.startswith("$"): + self.log.debug(self.unhandled_template % cmd) + elif cmd == "eval": + command = " ".join(word for _, word in words[1:]) + self._parse_shell(command) + else: + self.allexecs.add(cmd) + break diff --git a/poky/bitbake/lib/bb/command.py b/poky/bitbake/lib/bb/command.py new file mode 100644 index 0000000..ec86885 --- /dev/null +++ b/poky/bitbake/lib/bb/command.py @@ -0,0 +1,774 @@ +""" +BitBake 'Command' module + +Provide an interface to interact with the bitbake server through 'commands' +""" + +# Copyright (C) 2006-2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +""" +The bitbake server takes 'commands' from its UI/commandline. +Commands are either synchronous or asynchronous. +Async commands return data to the client in the form of events. +Sync commands must only return data through the function return value +and must not trigger events, directly or indirectly. +Commands are queued in a CommandQueue +""" + +from collections import OrderedDict, defaultdict + +import io +import bb.event +import bb.cooker +import bb.remotedata + +class DataStoreConnectionHandle(object): + def __init__(self, dsindex=0): + self.dsindex = dsindex + +class CommandCompleted(bb.event.Event): + pass + +class CommandExit(bb.event.Event): + def __init__(self, exitcode): + bb.event.Event.__init__(self) + self.exitcode = int(exitcode) + +class CommandFailed(CommandExit): + def __init__(self, message): + self.error = message + CommandExit.__init__(self, 1) + def __str__(self): + return "Command execution failed: %s" % self.error + +class CommandError(Exception): + pass + +class Command: + """ + A queue of asynchronous commands for bitbake + """ + def __init__(self, cooker): + self.cooker = cooker + self.cmds_sync = CommandsSync() + self.cmds_async = CommandsAsync() + self.remotedatastores = None + + # FIXME Add lock for this + self.currentAsyncCommand = None + + def runCommand(self, commandline, ro_only = False): + command = commandline.pop(0) + + # Ensure cooker is ready for commands + if command != "updateConfig" and command != "setFeatures": + try: + self.cooker.init_configdata() + if not self.remotedatastores: + self.remotedatastores = bb.remotedata.RemoteDatastores(self.cooker) + except (Exception, SystemExit) as exc: + import traceback + if isinstance(exc, bb.BBHandledException): + # We need to start returning real exceptions here. Until we do, we can't + # tell if an exception is an instance of bb.BBHandledException + return None, "bb.BBHandledException()\n" + traceback.format_exc() + return None, traceback.format_exc() + + if hasattr(CommandsSync, command): + # Can run synchronous commands straight away + command_method = getattr(self.cmds_sync, command) + if ro_only: + if not hasattr(command_method, 'readonly') or not getattr(command_method, 'readonly'): + return None, "Not able to execute not readonly commands in readonly mode" + try: + self.cooker.process_inotify_updates() + if getattr(command_method, 'needconfig', True): + self.cooker.updateCacheSync() + result = command_method(self, commandline) + except CommandError as exc: + return None, exc.args[0] + except (Exception, SystemExit) as exc: + import traceback + if isinstance(exc, bb.BBHandledException): + # We need to start returning real exceptions here. Until we do, we can't + # tell if an exception is an instance of bb.BBHandledException + return None, "bb.BBHandledException()\n" + traceback.format_exc() + return None, traceback.format_exc() + else: + return result, None + if self.currentAsyncCommand is not None: + return None, "Busy (%s in progress)" % self.currentAsyncCommand[0] + if command not in CommandsAsync.__dict__: + return None, "No such command" + self.currentAsyncCommand = (command, commandline) + self.cooker.idleCallBackRegister(self.cooker.runCommands, self.cooker) + return True, None + + def runAsyncCommand(self): + try: + self.cooker.process_inotify_updates() + if self.cooker.state in (bb.cooker.state.error, bb.cooker.state.shutdown, bb.cooker.state.forceshutdown): + # updateCache will trigger a shutdown of the parser + # and then raise BBHandledException triggering an exit + self.cooker.updateCache() + return False + if self.currentAsyncCommand is not None: + (command, options) = self.currentAsyncCommand + commandmethod = getattr(CommandsAsync, command) + needcache = getattr( commandmethod, "needcache" ) + if needcache and self.cooker.state != bb.cooker.state.running: + self.cooker.updateCache() + return True + else: + commandmethod(self.cmds_async, self, options) + return False + else: + return False + except KeyboardInterrupt as exc: + self.finishAsyncCommand("Interrupted") + return False + except SystemExit as exc: + arg = exc.args[0] + if isinstance(arg, str): + self.finishAsyncCommand(arg) + else: + self.finishAsyncCommand("Exited with %s" % arg) + return False + except Exception as exc: + import traceback + if isinstance(exc, bb.BBHandledException): + self.finishAsyncCommand("") + else: + self.finishAsyncCommand(traceback.format_exc()) + return False + + def finishAsyncCommand(self, msg=None, code=None): + if msg or msg == "": + bb.event.fire(CommandFailed(msg), self.cooker.data) + elif code: + bb.event.fire(CommandExit(code), self.cooker.data) + else: + bb.event.fire(CommandCompleted(), self.cooker.data) + self.currentAsyncCommand = None + self.cooker.finishcommand() + + def reset(self): + if self.remotedatastores: + self.remotedatastores = bb.remotedata.RemoteDatastores(self.cooker) + +class CommandsSync: + """ + A class of synchronous commands + These should run quickly so as not to hurt interactive performance. + These must not influence any running synchronous command. + """ + + def stateShutdown(self, command, params): + """ + Trigger cooker 'shutdown' mode + """ + command.cooker.shutdown(False) + + def stateForceShutdown(self, command, params): + """ + Stop the cooker + """ + command.cooker.shutdown(True) + + def getAllKeysWithFlags(self, command, params): + """ + Returns a dump of the global state. Call with + variable flags to be retrieved as params. + """ + flaglist = params[0] + return command.cooker.getAllKeysWithFlags(flaglist) + getAllKeysWithFlags.readonly = True + + def getVariable(self, command, params): + """ + Read the value of a variable from data + """ + varname = params[0] + expand = True + if len(params) > 1: + expand = (params[1] == "True") + + return command.cooker.data.getVar(varname, expand) + getVariable.readonly = True + + def setVariable(self, command, params): + """ + Set the value of variable in data + """ + varname = params[0] + value = str(params[1]) + command.cooker.extraconfigdata[varname] = value + command.cooker.data.setVar(varname, value) + + def getSetVariable(self, command, params): + """ + Read the value of a variable from data and set it into the datastore + which effectively expands and locks the value. + """ + varname = params[0] + result = self.getVariable(command, params) + command.cooker.data.setVar(varname, result) + return result + + def setConfig(self, command, params): + """ + Set the value of variable in configuration + """ + varname = params[0] + value = str(params[1]) + setattr(command.cooker.configuration, varname, value) + + def enableDataTracking(self, command, params): + """ + Enable history tracking for variables + """ + command.cooker.enableDataTracking() + + def disableDataTracking(self, command, params): + """ + Disable history tracking for variables + """ + command.cooker.disableDataTracking() + + def setPrePostConfFiles(self, command, params): + prefiles = params[0].split() + postfiles = params[1].split() + command.cooker.configuration.prefile = prefiles + command.cooker.configuration.postfile = postfiles + setPrePostConfFiles.needconfig = False + + def matchFile(self, command, params): + fMatch = params[0] + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.matchFile(fMatch, mc) + matchFile.needconfig = False + + def getUIHandlerNum(self, command, params): + return bb.event.get_uihandler() + getUIHandlerNum.needconfig = False + getUIHandlerNum.readonly = True + + def setEventMask(self, command, params): + handlerNum = params[0] + llevel = params[1] + debug_domains = params[2] + mask = params[3] + return bb.event.set_UIHmask(handlerNum, llevel, debug_domains, mask) + setEventMask.needconfig = False + setEventMask.readonly = True + + def setFeatures(self, command, params): + """ + Set the cooker features to include the passed list of features + """ + features = params[0] + command.cooker.setFeatures(features) + setFeatures.needconfig = False + # although we change the internal state of the cooker, this is transparent since + # we always take and leave the cooker in state.initial + setFeatures.readonly = True + + def updateConfig(self, command, params): + options = params[0] + environment = params[1] + cmdline = params[2] + command.cooker.updateConfigOpts(options, environment, cmdline) + updateConfig.needconfig = False + + def parseConfiguration(self, command, params): + """Instruct bitbake to parse its configuration + NOTE: it is only necessary to call this if you aren't calling any normal action + (otherwise parsing is taken care of automatically) + """ + command.cooker.parseConfiguration() + parseConfiguration.needconfig = False + + def getLayerPriorities(self, command, params): + command.cooker.parseConfiguration() + ret = [] + # regex objects cannot be marshalled by xmlrpc + for collection, pattern, regex, pri in command.cooker.bbfile_config_priorities: + ret.append((collection, pattern, regex.pattern, pri)) + return ret + getLayerPriorities.readonly = True + + def getRecipes(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return list(command.cooker.recipecaches[mc].pkg_pn.items()) + getRecipes.readonly = True + + def getRecipeDepends(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return list(command.cooker.recipecaches[mc].deps.items()) + getRecipeDepends.readonly = True + + def getRecipeVersions(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].pkg_pepvpr + getRecipeVersions.readonly = True + + def getRecipeProvides(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].fn_provides + getRecipeProvides.readonly = True + + def getRecipePackages(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].packages + getRecipePackages.readonly = True + + def getRecipePackagesDynamic(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].packages_dynamic + getRecipePackagesDynamic.readonly = True + + def getRProviders(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].rproviders + getRProviders.readonly = True + + def getRuntimeDepends(self, command, params): + ret = [] + try: + mc = params[0] + except IndexError: + mc = '' + rundeps = command.cooker.recipecaches[mc].rundeps + for key, value in rundeps.items(): + if isinstance(value, defaultdict): + value = dict(value) + ret.append((key, value)) + return ret + getRuntimeDepends.readonly = True + + def getRuntimeRecommends(self, command, params): + ret = [] + try: + mc = params[0] + except IndexError: + mc = '' + runrecs = command.cooker.recipecaches[mc].runrecs + for key, value in runrecs.items(): + if isinstance(value, defaultdict): + value = dict(value) + ret.append((key, value)) + return ret + getRuntimeRecommends.readonly = True + + def getRecipeInherits(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].inherits + getRecipeInherits.readonly = True + + def getBbFilePriority(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].bbfile_priority + getBbFilePriority.readonly = True + + def getDefaultPreference(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.recipecaches[mc].pkg_dp + getDefaultPreference.readonly = True + + def getSkippedRecipes(self, command, params): + # Return list sorted by reverse priority order + import bb.cache + def sortkey(x): + vfn, _ = x + realfn, _, mc = bb.cache.virtualfn2realfn(vfn) + return (-command.cooker.collections[mc].calc_bbfile_priority(realfn)[0], vfn) + + skipdict = OrderedDict(sorted(command.cooker.skiplist.items(), key=sortkey)) + return list(skipdict.items()) + getSkippedRecipes.readonly = True + + def getOverlayedRecipes(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return list(command.cooker.collections[mc].overlayed.items()) + getOverlayedRecipes.readonly = True + + def getFileAppends(self, command, params): + fn = params[0] + try: + mc = params[1] + except IndexError: + mc = '' + return command.cooker.collections[mc].get_file_appends(fn) + getFileAppends.readonly = True + + def getAllAppends(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.collections[mc].bbappends + getAllAppends.readonly = True + + def findProviders(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return command.cooker.findProviders(mc) + findProviders.readonly = True + + def findBestProvider(self, command, params): + (mc, pn) = bb.runqueue.split_mc(params[0]) + return command.cooker.findBestProvider(pn, mc) + findBestProvider.readonly = True + + def allProviders(self, command, params): + try: + mc = params[0] + except IndexError: + mc = '' + return list(bb.providers.allProviders(command.cooker.recipecaches[mc]).items()) + allProviders.readonly = True + + def getRuntimeProviders(self, command, params): + rprovide = params[0] + try: + mc = params[1] + except IndexError: + mc = '' + all_p = bb.providers.getRuntimeProviders(command.cooker.recipecaches[mc], rprovide) + if all_p: + best = bb.providers.filterProvidersRunTime(all_p, rprovide, + command.cooker.data, + command.cooker.recipecaches[mc])[0][0] + else: + best = None + return all_p, best + getRuntimeProviders.readonly = True + + def dataStoreConnectorCmd(self, command, params): + dsindex = params[0] + method = params[1] + args = params[2] + kwargs = params[3] + + d = command.remotedatastores[dsindex] + ret = getattr(d, method)(*args, **kwargs) + + if isinstance(ret, bb.data_smart.DataSmart): + idx = command.remotedatastores.store(ret) + return DataStoreConnectionHandle(idx) + + return ret + + def dataStoreConnectorVarHistCmd(self, command, params): + dsindex = params[0] + method = params[1] + args = params[2] + kwargs = params[3] + + d = command.remotedatastores[dsindex].varhistory + return getattr(d, method)(*args, **kwargs) + + def dataStoreConnectorVarHistCmdEmit(self, command, params): + dsindex = params[0] + var = params[1] + oval = params[2] + val = params[3] + d = command.remotedatastores[params[4]] + + o = io.StringIO() + command.remotedatastores[dsindex].varhistory.emit(var, oval, val, o, d) + return o.getvalue() + + def dataStoreConnectorIncHistCmd(self, command, params): + dsindex = params[0] + method = params[1] + args = params[2] + kwargs = params[3] + + d = command.remotedatastores[dsindex].inchistory + return getattr(d, method)(*args, **kwargs) + + def dataStoreConnectorRelease(self, command, params): + dsindex = params[0] + if dsindex <= 0: + raise CommandError('dataStoreConnectorRelease: invalid index %d' % dsindex) + command.remotedatastores.release(dsindex) + + def parseRecipeFile(self, command, params): + """ + Parse the specified recipe file (with or without bbappends) + and return a datastore object representing the environment + for the recipe. + """ + fn = params[0] + mc = bb.runqueue.mc_from_tid(fn) + appends = params[1] + appendlist = params[2] + if len(params) > 3: + config_data = command.remotedatastores[params[3]] + else: + config_data = None + + if appends: + if appendlist is not None: + appendfiles = appendlist + else: + appendfiles = command.cooker.collections[mc].get_file_appends(fn) + else: + appendfiles = [] + # We are calling bb.cache locally here rather than on the server, + # but that's OK because it doesn't actually need anything from + # the server barring the global datastore (which we have a remote + # version of) + if config_data: + # We have to use a different function here if we're passing in a datastore + # NOTE: we took a copy above, so we don't do it here again + envdata = bb.cache.parse_recipe(config_data, fn, appendfiles, mc)[''] + else: + # Use the standard path + parser = bb.cache.NoCache(command.cooker.databuilder) + envdata = parser.loadDataFull(fn, appendfiles) + idx = command.remotedatastores.store(envdata) + return DataStoreConnectionHandle(idx) + parseRecipeFile.readonly = True + +class CommandsAsync: + """ + A class of asynchronous commands + These functions communicate via generated events. + Any function that requires metadata parsing should be here. + """ + + def buildFile(self, command, params): + """ + Build a single specified .bb file + """ + bfile = params[0] + task = params[1] + if len(params) > 2: + internal = params[2] + else: + internal = False + + if internal: + command.cooker.buildFileInternal(bfile, task, fireevents=False, quietlog=True) + else: + command.cooker.buildFile(bfile, task) + buildFile.needcache = False + + def buildTargets(self, command, params): + """ + Build a set of targets + """ + pkgs_to_build = params[0] + task = params[1] + + command.cooker.buildTargets(pkgs_to_build, task) + buildTargets.needcache = True + + def generateDepTreeEvent(self, command, params): + """ + Generate an event containing the dependency information + """ + pkgs_to_build = params[0] + task = params[1] + + command.cooker.generateDepTreeEvent(pkgs_to_build, task) + command.finishAsyncCommand() + generateDepTreeEvent.needcache = True + + def generateDotGraph(self, command, params): + """ + Dump dependency information to disk as .dot files + """ + pkgs_to_build = params[0] + task = params[1] + + command.cooker.generateDotGraphFiles(pkgs_to_build, task) + command.finishAsyncCommand() + generateDotGraph.needcache = True + + def generateTargetsTree(self, command, params): + """ + Generate a tree of buildable targets. + If klass is provided ensure all recipes that inherit the class are + included in the package list. + If pkg_list provided use that list (plus any extras brought in by + klass) rather than generating a tree for all packages. + """ + klass = params[0] + pkg_list = params[1] + + command.cooker.generateTargetsTree(klass, pkg_list) + command.finishAsyncCommand() + generateTargetsTree.needcache = True + + def findConfigFiles(self, command, params): + """ + Find config files which provide appropriate values + for the passed configuration variable. i.e. MACHINE + """ + varname = params[0] + + command.cooker.findConfigFiles(varname) + command.finishAsyncCommand() + findConfigFiles.needcache = False + + def findFilesMatchingInDir(self, command, params): + """ + Find implementation files matching the specified pattern + in the requested subdirectory of a BBPATH + """ + pattern = params[0] + directory = params[1] + + command.cooker.findFilesMatchingInDir(pattern, directory) + command.finishAsyncCommand() + findFilesMatchingInDir.needcache = False + + def testCookerCommandEvent(self, command, params): + """ + Dummy command used by OEQA selftest to test tinfoil without IO + """ + pattern = params[0] + + command.cooker.testCookerCommandEvent(pattern) + command.finishAsyncCommand() + testCookerCommandEvent.needcache = False + + def findConfigFilePath(self, command, params): + """ + Find the path of the requested configuration file + """ + configfile = params[0] + + command.cooker.findConfigFilePath(configfile) + command.finishAsyncCommand() + findConfigFilePath.needcache = False + + def showVersions(self, command, params): + """ + Show the currently selected versions + """ + command.cooker.showVersions() + command.finishAsyncCommand() + showVersions.needcache = True + + def showEnvironmentTarget(self, command, params): + """ + Print the environment of a target recipe + (needs the cache to work out which recipe to use) + """ + pkg = params[0] + + command.cooker.showEnvironment(None, pkg) + command.finishAsyncCommand() + showEnvironmentTarget.needcache = True + + def showEnvironment(self, command, params): + """ + Print the standard environment + or if specified the environment for a specified recipe + """ + bfile = params[0] + + command.cooker.showEnvironment(bfile) + command.finishAsyncCommand() + showEnvironment.needcache = False + + def parseFiles(self, command, params): + """ + Parse the .bb files + """ + command.cooker.updateCache() + command.finishAsyncCommand() + parseFiles.needcache = True + + def compareRevisions(self, command, params): + """ + Parse the .bb files + """ + if bb.fetch.fetcher_compare_revisions(command.cooker.data): + command.finishAsyncCommand(code=1) + else: + command.finishAsyncCommand() + compareRevisions.needcache = True + + def triggerEvent(self, command, params): + """ + Trigger a certain event + """ + event = params[0] + bb.event.fire(eval(event), command.cooker.data) + command.currentAsyncCommand = None + triggerEvent.needcache = False + + def resetCooker(self, command, params): + """ + Reset the cooker to its initial state, thus forcing a reparse for + any async command that has the needcache property set to True + """ + command.cooker.reset() + command.finishAsyncCommand() + resetCooker.needcache = False + + def clientComplete(self, command, params): + """ + Do the right thing when the controlling client exits + """ + command.cooker.clientComplete() + command.finishAsyncCommand() + clientComplete.needcache = False + + def findSigInfo(self, command, params): + """ + Find signature info files via the signature generator + """ + (mc, pn) = bb.runqueue.split_mc(params[0]) + taskname = params[1] + sigs = params[2] + res = bb.siggen.find_siginfo(pn, taskname, sigs, command.cooker.databuilder.mcdata[mc]) + bb.event.fire(bb.event.FindSigInfoResult(res), command.cooker.databuilder.mcdata[mc]) + command.finishAsyncCommand() + findSigInfo.needcache = False diff --git a/poky/bitbake/lib/bb/compress/_pipecompress.py b/poky/bitbake/lib/bb/compress/_pipecompress.py new file mode 100644 index 0000000..4a403d6 --- /dev/null +++ b/poky/bitbake/lib/bb/compress/_pipecompress.py @@ -0,0 +1,196 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Helper library to implement streaming compression and decompression using an +# external process +# +# This library should be used directly by end users; a wrapper library for the +# specific compression tool should be created + +import builtins +import io +import os +import subprocess + + +def open_wrap( + cls, filename, mode="rb", *, encoding=None, errors=None, newline=None, **kwargs +): + """ + Open a compressed file in binary or text mode. + + Users should not call this directly. A specific compression library can use + this helper to provide it's own "open" command + + The filename argument can be an actual filename (a str or bytes object), or + an existing file object to read from or write to. + + The mode argument can be "r", "rb", "w", "wb", "x", "xb", "a" or "ab" for + binary mode, or "rt", "wt", "xt" or "at" for text mode. The default mode is + "rb". + + For binary mode, this function is equivalent to the cls constructor: + cls(filename, mode). In this case, the encoding, errors and newline + arguments must not be provided. + + For text mode, a cls object is created, and wrapped in an + io.TextIOWrapper instance with the specified encoding, error handling + behavior, and line ending(s). + """ + if "t" in mode: + if "b" in mode: + raise ValueError("Invalid mode: %r" % (mode,)) + else: + if encoding is not None: + raise ValueError("Argument 'encoding' not supported in binary mode") + if errors is not None: + raise ValueError("Argument 'errors' not supported in binary mode") + if newline is not None: + raise ValueError("Argument 'newline' not supported in binary mode") + + file_mode = mode.replace("t", "") + if isinstance(filename, (str, bytes, os.PathLike, int)): + binary_file = cls(filename, file_mode, **kwargs) + elif hasattr(filename, "read") or hasattr(filename, "write"): + binary_file = cls(None, file_mode, fileobj=filename, **kwargs) + else: + raise TypeError("filename must be a str or bytes object, or a file") + + if "t" in mode: + return io.TextIOWrapper( + binary_file, encoding, errors, newline, write_through=True + ) + else: + return binary_file + + +class CompressionError(OSError): + pass + + +class PipeFile(io.RawIOBase): + """ + Class that implements generically piping to/from a compression program + + Derived classes should add the function get_compress() and get_decompress() + that return the required commands. Input will be piped into stdin and the + (de)compressed output should be written to stdout, e.g.: + + class FooFile(PipeCompressionFile): + def get_decompress(self): + return ["fooc", "--decompress", "--stdout"] + + def get_compress(self): + return ["fooc", "--compress", "--stdout"] + + """ + + READ = 0 + WRITE = 1 + + def __init__(self, filename=None, mode="rb", *, stderr=None, fileobj=None): + if "t" in mode or "U" in mode: + raise ValueError("Invalid mode: {!r}".format(mode)) + + if not "b" in mode: + mode += "b" + + if mode.startswith("r"): + self.mode = self.READ + elif mode.startswith("w"): + self.mode = self.WRITE + else: + raise ValueError("Invalid mode %r" % mode) + + if fileobj is not None: + self.fileobj = fileobj + else: + self.fileobj = builtins.open(filename, mode or "rb") + + if self.mode == self.READ: + self.p = subprocess.Popen( + self.get_decompress(), + stdin=self.fileobj, + stdout=subprocess.PIPE, + stderr=stderr, + close_fds=True, + ) + self.pipe = self.p.stdout + else: + self.p = subprocess.Popen( + self.get_compress(), + stdin=subprocess.PIPE, + stdout=self.fileobj, + stderr=stderr, + close_fds=True, + ) + self.pipe = self.p.stdin + + self.__closed = False + + def _check_process(self): + if self.p is None: + return + + returncode = self.p.wait() + if returncode: + raise CompressionError("Process died with %d" % returncode) + self.p = None + + def close(self): + if self.closed: + return + + self.pipe.close() + if self.p is not None: + self._check_process() + self.fileobj.close() + + self.__closed = True + + @property + def closed(self): + return self.__closed + + def fileno(self): + return self.pipe.fileno() + + def flush(self): + self.pipe.flush() + + def isatty(self): + return self.pipe.isatty() + + def readable(self): + return self.mode == self.READ + + def writable(self): + return self.mode == self.WRITE + + def readinto(self, b): + if self.mode != self.READ: + import errno + + raise OSError( + errno.EBADF, "read() on write-only %s object" % self.__class__.__name__ + ) + size = self.pipe.readinto(b) + if size == 0: + self._check_process() + return size + + def write(self, data): + if self.mode != self.WRITE: + import errno + + raise OSError( + errno.EBADF, "write() on read-only %s object" % self.__class__.__name__ + ) + data = self.pipe.write(data) + + if not data: + self._check_process() + + return data diff --git a/poky/bitbake/lib/bb/compress/lz4.py b/poky/bitbake/lib/bb/compress/lz4.py new file mode 100644 index 0000000..88b0989 --- /dev/null +++ b/poky/bitbake/lib/bb/compress/lz4.py @@ -0,0 +1,19 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import bb.compress._pipecompress + + +def open(*args, **kwargs): + return bb.compress._pipecompress.open_wrap(LZ4File, *args, **kwargs) + + +class LZ4File(bb.compress._pipecompress.PipeFile): + def get_compress(self): + return ["lz4c", "-z", "-c"] + + def get_decompress(self): + return ["lz4c", "-d", "-c"] diff --git a/poky/bitbake/lib/bb/compress/zstd.py b/poky/bitbake/lib/bb/compress/zstd.py new file mode 100644 index 0000000..cdbbe9d --- /dev/null +++ b/poky/bitbake/lib/bb/compress/zstd.py @@ -0,0 +1,30 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import bb.compress._pipecompress +import shutil + + +def open(*args, **kwargs): + return bb.compress._pipecompress.open_wrap(ZstdFile, *args, **kwargs) + + +class ZstdFile(bb.compress._pipecompress.PipeFile): + def __init__(self, *args, num_threads=1, compresslevel=3, **kwargs): + self.num_threads = num_threads + self.compresslevel = compresslevel + super().__init__(*args, **kwargs) + + def _get_zstd(self): + if self.num_threads == 1 or not shutil.which("pzstd"): + return ["zstd"] + return ["pzstd", "-p", "%d" % self.num_threads] + + def get_compress(self): + return self._get_zstd() + ["-c", "-%d" % self.compresslevel] + + def get_decompress(self): + return self._get_zstd() + ["-d", "-c"] diff --git a/poky/bitbake/lib/bb/cooker.py b/poky/bitbake/lib/bb/cooker.py new file mode 100644 index 0000000..2adf4d2 --- /dev/null +++ b/poky/bitbake/lib/bb/cooker.py @@ -0,0 +1,2396 @@ +# +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer +# Copyright (C) 2005 Holger Hans Peter Freyther +# Copyright (C) 2005 ROAD GmbH +# Copyright (C) 2006 - 2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import sys, os, glob, os.path, re, time +import itertools +import logging +import multiprocessing +import threading +from io import StringIO, UnsupportedOperation +from contextlib import closing +from collections import defaultdict, namedtuple +import bb, bb.exceptions, bb.command +from bb import utils, data, parse, event, cache, providers, taskdata, runqueue, build +import queue +import signal +import prserv.serv +import pyinotify +import json +import pickle +import codecs +import hashserv + +logger = logging.getLogger("BitBake") +collectlog = logging.getLogger("BitBake.Collection") +buildlog = logging.getLogger("BitBake.Build") +parselog = logging.getLogger("BitBake.Parsing") +providerlog = logging.getLogger("BitBake.Provider") + +class NoSpecificMatch(bb.BBHandledException): + """ + Exception raised when no or multiple file matches are found + """ + +class NothingToBuild(Exception): + """ + Exception raised when there is nothing to build + """ + +class CollectionError(bb.BBHandledException): + """ + Exception raised when layer configuration is incorrect + """ + +class state: + initial, parsing, running, shutdown, forceshutdown, stopped, error = list(range(7)) + + @classmethod + def get_name(cls, code): + for name in dir(cls): + value = getattr(cls, name) + if type(value) == type(cls.initial) and value == code: + return name + raise ValueError("Invalid status code: %s" % code) + + +class SkippedPackage: + def __init__(self, info = None, reason = None): + self.pn = None + self.skipreason = None + self.provides = None + self.rprovides = None + + if info: + self.pn = info.pn + self.skipreason = info.skipreason + self.provides = info.provides + self.rprovides = info.packages + info.rprovides + for package in info.packages: + self.rprovides += info.rprovides_pkg[package] + elif reason: + self.skipreason = reason + + +class CookerFeatures(object): + _feature_list = [HOB_EXTRA_CACHES, BASEDATASTORE_TRACKING, SEND_SANITYEVENTS] = list(range(3)) + + def __init__(self): + self._features=set() + + def setFeature(self, f): + # validate we got a request for a feature we support + if f not in CookerFeatures._feature_list: + return + self._features.add(f) + + def __contains__(self, f): + return f in self._features + + def __iter__(self): + return self._features.__iter__() + + def __next__(self): + return next(self._features) + + +class EventWriter: + def __init__(self, cooker, eventfile): + self.file_inited = None + self.cooker = cooker + self.eventfile = eventfile + self.event_queue = [] + + def write_event(self, event): + with open(self.eventfile, "a") as f: + try: + str_event = codecs.encode(pickle.dumps(event), 'base64').decode('utf-8') + f.write("%s\n" % json.dumps({"class": event.__module__ + "." + event.__class__.__name__, + "vars": str_event})) + except Exception as err: + import traceback + print(err, traceback.format_exc()) + + def send(self, event): + if self.file_inited: + # we have the file, just write the event + self.write_event(event) + else: + # init on bb.event.BuildStarted + name = "%s.%s" % (event.__module__, event.__class__.__name__) + if name in ("bb.event.BuildStarted", "bb.cooker.CookerExit"): + with open(self.eventfile, "w") as f: + f.write("%s\n" % json.dumps({ "allvariables" : self.cooker.getAllKeysWithFlags(["doc", "func"])})) + + self.file_inited = True + + # write pending events + for evt in self.event_queue: + self.write_event(evt) + + # also write the current event + self.write_event(event) + else: + # queue all events until the file is inited + self.event_queue.append(event) + +#============================================================================# +# BBCooker +#============================================================================# +class BBCooker: + """ + Manages one bitbake build run + """ + + def __init__(self, featureSet=None, idleCallBackRegister=None): + self.recipecaches = None + self.eventlog = None + self.skiplist = {} + self.featureset = CookerFeatures() + if featureSet: + for f in featureSet: + self.featureset.setFeature(f) + + self.orig_syspath = sys.path.copy() + self.orig_sysmodules = [*sys.modules] + + self.configuration = bb.cookerdata.CookerConfiguration() + + self.idleCallBackRegister = idleCallBackRegister + + bb.debug(1, "BBCooker starting %s" % time.time()) + sys.stdout.flush() + + self.configwatcher = None + self.confignotifier = None + + self.watchmask = pyinotify.IN_CLOSE_WRITE | pyinotify.IN_CREATE | pyinotify.IN_DELETE | \ + pyinotify.IN_DELETE_SELF | pyinotify.IN_MODIFY | pyinotify.IN_MOVE_SELF | \ + pyinotify.IN_MOVED_FROM | pyinotify.IN_MOVED_TO + + self.watcher = None + self.notifier = None + + # If being called by something like tinfoil, we need to clean cached data + # which may now be invalid + bb.parse.clear_cache() + bb.parse.BBHandler.cached_statements = {} + + self.ui_cmdline = None + self.hashserv = None + self.hashservaddr = None + + self.inotify_modified_files = [] + + def _process_inotify_updates(server, cooker, halt): + cooker.process_inotify_updates() + return 1.0 + + self.idleCallBackRegister(_process_inotify_updates, self) + + # TOSTOP must not be set or our children will hang when they output + try: + fd = sys.stdout.fileno() + if os.isatty(fd): + import termios + tcattr = termios.tcgetattr(fd) + if tcattr[3] & termios.TOSTOP: + buildlog.info("The terminal had the TOSTOP bit set, clearing...") + tcattr[3] = tcattr[3] & ~termios.TOSTOP + termios.tcsetattr(fd, termios.TCSANOW, tcattr) + except UnsupportedOperation: + pass + + self.command = bb.command.Command(self) + self.state = state.initial + + self.parser = None + + signal.signal(signal.SIGTERM, self.sigterm_exception) + # Let SIGHUP exit as SIGTERM + signal.signal(signal.SIGHUP, self.sigterm_exception) + + bb.debug(1, "BBCooker startup complete %s" % time.time()) + sys.stdout.flush() + + def init_configdata(self): + if not hasattr(self, "data"): + self.initConfigurationData() + bb.debug(1, "BBCooker parsed base configuration %s" % time.time()) + sys.stdout.flush() + self.handlePRServ() + + def setupConfigWatcher(self): + if self.configwatcher: + self.configwatcher.close() + self.confignotifier = None + self.configwatcher = None + self.configwatcher = pyinotify.WatchManager() + self.configwatcher.bbseen = set() + self.configwatcher.bbwatchedfiles = set() + self.confignotifier = pyinotify.Notifier(self.configwatcher, self.config_notifications) + + def setupParserWatcher(self): + if self.watcher: + self.watcher.close() + self.notifier = None + self.watcher = None + self.watcher = pyinotify.WatchManager() + self.watcher.bbseen = set() + self.watcher.bbwatchedfiles = set() + self.notifier = pyinotify.Notifier(self.watcher, self.notifications) + + def process_inotify_updates(self): + for n in [self.confignotifier, self.notifier]: + if n and n.check_events(timeout=0): + # read notified events and enqeue them + n.read_events() + n.process_events() + + def config_notifications(self, event): + if event.maskname == "IN_Q_OVERFLOW": + bb.warn("inotify event queue overflowed, invalidating caches.") + self.parsecache_valid = False + self.baseconfig_valid = False + bb.parse.clear_cache() + return + if not event.pathname in self.configwatcher.bbwatchedfiles: + return + if "IN_ISDIR" in event.maskname: + if "IN_CREATE" in event.maskname or "IN_DELETE" in event.maskname: + if event.pathname in self.configwatcher.bbseen: + self.configwatcher.bbseen.remove(event.pathname) + # Could remove all entries starting with the directory but for now... + bb.parse.clear_cache() + if not event.pathname in self.inotify_modified_files: + self.inotify_modified_files.append(event.pathname) + self.baseconfig_valid = False + + def notifications(self, event): + if event.maskname == "IN_Q_OVERFLOW": + bb.warn("inotify event queue overflowed, invalidating caches.") + self.parsecache_valid = False + bb.parse.clear_cache() + return + if event.pathname.endswith("bitbake-cookerdaemon.log") \ + or event.pathname.endswith("bitbake.lock"): + return + if "IN_ISDIR" in event.maskname: + if "IN_CREATE" in event.maskname or "IN_DELETE" in event.maskname: + if event.pathname in self.watcher.bbseen: + self.watcher.bbseen.remove(event.pathname) + # Could remove all entries starting with the directory but for now... + bb.parse.clear_cache() + if not event.pathname in self.inotify_modified_files: + self.inotify_modified_files.append(event.pathname) + self.parsecache_valid = False + + def add_filewatch(self, deps, watcher=None, dirs=False): + if not watcher: + watcher = self.watcher + for i in deps: + watcher.bbwatchedfiles.add(i[0]) + if dirs: + f = i[0] + else: + f = os.path.dirname(i[0]) + if f in watcher.bbseen: + continue + watcher.bbseen.add(f) + watchtarget = None + while True: + # We try and add watches for files that don't exist but if they did, would influence + # the parser. The parent directory of these files may not exist, in which case we need + # to watch any parent that does exist for changes. + try: + watcher.add_watch(f, self.watchmask, quiet=False) + if watchtarget: + watcher.bbwatchedfiles.add(watchtarget) + break + except pyinotify.WatchManagerError as e: + if 'ENOENT' in str(e): + watchtarget = f + f = os.path.dirname(f) + if f in watcher.bbseen: + break + watcher.bbseen.add(f) + continue + if 'ENOSPC' in str(e): + providerlog.error("No space left on device or exceeds fs.inotify.max_user_watches?") + providerlog.error("To check max_user_watches: sysctl -n fs.inotify.max_user_watches.") + providerlog.error("To modify max_user_watches: sysctl -n -w fs.inotify.max_user_watches=.") + providerlog.error("Root privilege is required to modify max_user_watches.") + raise + + def sigterm_exception(self, signum, stackframe): + if signum == signal.SIGTERM: + bb.warn("Cooker received SIGTERM, shutting down...") + elif signum == signal.SIGHUP: + bb.warn("Cooker received SIGHUP, shutting down...") + self.state = state.forceshutdown + + def setFeatures(self, features): + # we only accept a new feature set if we're in state initial, so we can reset without problems + if not self.state in [state.initial, state.shutdown, state.forceshutdown, state.stopped, state.error]: + raise Exception("Illegal state for feature set change") + original_featureset = list(self.featureset) + for feature in features: + self.featureset.setFeature(feature) + bb.debug(1, "Features set %s (was %s)" % (original_featureset, list(self.featureset))) + if (original_featureset != list(self.featureset)) and self.state != state.error and hasattr(self, "data"): + self.reset() + + def initConfigurationData(self): + + self.state = state.initial + self.caches_array = [] + + sys.path = self.orig_syspath.copy() + for mod in [*sys.modules]: + if mod not in self.orig_sysmodules: + del sys.modules[mod] + + self.setupConfigWatcher() + + # Need to preserve BB_CONSOLELOG over resets + consolelog = None + if hasattr(self, "data"): + consolelog = self.data.getVar("BB_CONSOLELOG") + + if CookerFeatures.BASEDATASTORE_TRACKING in self.featureset: + self.enableDataTracking() + + all_extra_cache_names = [] + # We hardcode all known cache types in a single place, here. + if CookerFeatures.HOB_EXTRA_CACHES in self.featureset: + all_extra_cache_names.append("bb.cache_extra:HobRecipeInfo") + + caches_name_array = ['bb.cache:CoreRecipeInfo'] + all_extra_cache_names + + # At least CoreRecipeInfo will be loaded, so caches_array will never be empty! + # This is the entry point, no further check needed! + for var in caches_name_array: + try: + module_name, cache_name = var.split(':') + module = __import__(module_name, fromlist=(cache_name,)) + self.caches_array.append(getattr(module, cache_name)) + except ImportError as exc: + logger.critical("Unable to import extra RecipeInfo '%s' from '%s': %s" % (cache_name, module_name, exc)) + raise bb.BBHandledException() + + self.databuilder = bb.cookerdata.CookerDataBuilder(self.configuration, False) + self.databuilder.parseBaseConfiguration() + self.data = self.databuilder.data + self.data_hash = self.databuilder.data_hash + self.extraconfigdata = {} + + if consolelog: + self.data.setVar("BB_CONSOLELOG", consolelog) + + self.data.setVar('BB_CMDLINE', self.ui_cmdline) + + if CookerFeatures.BASEDATASTORE_TRACKING in self.featureset: + self.disableDataTracking() + + for mc in self.databuilder.mcdata.values(): + mc.renameVar("__depends", "__base_depends") + self.add_filewatch(mc.getVar("__base_depends", False), self.configwatcher) + + self.baseconfig_valid = True + self.parsecache_valid = False + + def handlePRServ(self): + # Setup a PR Server based on the new configuration + try: + self.prhost = prserv.serv.auto_start(self.data) + except prserv.serv.PRServiceConfigError as e: + bb.fatal("Unable to start PR Server, exiting, check the bitbake-cookerdaemon.log") + + if self.data.getVar("BB_HASHSERVE") == "auto": + # Create a new hash server bound to a unix domain socket + if not self.hashserv: + dbfile = (self.data.getVar("PERSISTENT_DIR") or self.data.getVar("CACHE")) + "/hashserv.db" + upstream = self.data.getVar("BB_HASHSERVE_UPSTREAM") or None + if upstream: + import socket + try: + sock = socket.create_connection(upstream.split(":"), 5) + sock.close() + except socket.error as e: + bb.warn("BB_HASHSERVE_UPSTREAM is not valid, unable to connect hash equivalence server at '%s': %s" + % (upstream, repr(e))) + + self.hashservaddr = "unix://%s/hashserve.sock" % self.data.getVar("TOPDIR") + self.hashserv = hashserv.create_server( + self.hashservaddr, + dbfile, + sync=False, + upstream=upstream, + ) + self.hashserv.serve_as_process() + self.data.setVar("BB_HASHSERVE", self.hashservaddr) + self.databuilder.origdata.setVar("BB_HASHSERVE", self.hashservaddr) + self.databuilder.data.setVar("BB_HASHSERVE", self.hashservaddr) + for mc in self.databuilder.mcdata: + self.databuilder.mcdata[mc].setVar("BB_HASHSERVE", self.hashservaddr) + + bb.parse.init_parser(self.data) + + def enableDataTracking(self): + self.configuration.tracking = True + if hasattr(self, "data"): + self.data.enableTracking() + + def disableDataTracking(self): + self.configuration.tracking = False + if hasattr(self, "data"): + self.data.disableTracking() + + def parseConfiguration(self): + self.updateCacheSync() + + # Change nice level if we're asked to + nice = self.data.getVar("BB_NICE_LEVEL") + if nice: + curnice = os.nice(0) + nice = int(nice) - curnice + buildlog.verbose("Renice to %s " % os.nice(nice)) + + if self.recipecaches: + del self.recipecaches + self.multiconfigs = self.databuilder.mcdata.keys() + self.recipecaches = {} + for mc in self.multiconfigs: + self.recipecaches[mc] = bb.cache.CacheData(self.caches_array) + + self.handleCollections(self.data.getVar("BBFILE_COLLECTIONS")) + + self.parsecache_valid = False + + def updateConfigOpts(self, options, environment, cmdline): + self.ui_cmdline = cmdline + clean = True + for o in options: + if o in ['prefile', 'postfile']: + # Only these options may require a reparse + try: + if getattr(self.configuration, o) == options[o]: + # Value is the same, no need to mark dirty + continue + except AttributeError: + pass + logger.debug("Marking as dirty due to '%s' option change to '%s'" % (o, options[o])) + print("Marking as dirty due to '%s' option change to '%s'" % (o, options[o])) + clean = False + if hasattr(self.configuration, o): + setattr(self.configuration, o, options[o]) + + if self.configuration.writeeventlog: + if self.eventlog and self.eventlog[0] != self.configuration.writeeventlog: + bb.event.unregister_UIHhandler(self.eventlog[1]) + if not self.eventlog or self.eventlog[0] != self.configuration.writeeventlog: + # we log all events to a file if so directed + # register the log file writer as UI Handler + writer = EventWriter(self, self.configuration.writeeventlog) + EventLogWriteHandler = namedtuple('EventLogWriteHandler', ['event']) + self.eventlog = (self.configuration.writeeventlog, bb.event.register_UIHhandler(EventLogWriteHandler(writer))) + + bb.msg.loggerDefaultLogLevel = self.configuration.default_loglevel + bb.msg.loggerDefaultDomains = self.configuration.debug_domains + + if hasattr(self, "data"): + origenv = bb.data.init() + for k in environment: + origenv.setVar(k, environment[k]) + self.data.setVar("BB_ORIGENV", origenv) + + for k in bb.utils.approved_variables(): + if k in environment and k not in self.configuration.env: + logger.debug("Updating new environment variable %s to %s" % (k, environment[k])) + self.configuration.env[k] = environment[k] + clean = False + if k in self.configuration.env and k not in environment: + logger.debug("Updating environment variable %s (deleted)" % (k)) + del self.configuration.env[k] + clean = False + if k not in self.configuration.env and k not in environment: + continue + if environment[k] != self.configuration.env[k]: + logger.debug("Updating environment variable %s from %s to %s" % (k, self.configuration.env[k], environment[k])) + self.configuration.env[k] = environment[k] + clean = False + + # Now update all the variables not in the datastore to match + self.configuration.env = environment + + if not clean: + logger.debug("Base environment change, triggering reparse") + self.reset() + + def runCommands(self, server, data, halt): + """ + Run any queued asynchronous command + This is done by the idle handler so it runs in true context rather than + tied to any UI. + """ + + return self.command.runAsyncCommand() + + def showVersions(self): + + (latest_versions, preferred_versions, required) = self.findProviders() + + logger.plain("%-35s %25s %25s %25s", "Recipe Name", "Latest Version", "Preferred Version", "Required Version") + logger.plain("%-35s %25s %25s %25s\n", "===========", "==============", "=================", "================") + + for p in sorted(self.recipecaches[''].pkg_pn): + preferred = preferred_versions[p] + latest = latest_versions[p] + requiredstr = "" + preferredstr = "" + if required[p]: + if preferred[0] is not None: + requiredstr = preferred[0][0] + ":" + preferred[0][1] + '-' + preferred[0][2] + else: + bb.fatal("REQUIRED_VERSION of package %s not available" % p) + else: + preferredstr = preferred[0][0] + ":" + preferred[0][1] + '-' + preferred[0][2] + + lateststr = latest[0][0] + ":" + latest[0][1] + "-" + latest[0][2] + + if preferred == latest: + preferredstr = "" + + logger.plain("%-35s %25s %25s %25s", p, lateststr, preferredstr, requiredstr) + + def showEnvironment(self, buildfile=None, pkgs_to_build=None): + """ + Show the outer or per-recipe environment + """ + fn = None + envdata = None + mc = '' + if not pkgs_to_build: + pkgs_to_build = [] + + orig_tracking = self.configuration.tracking + if not orig_tracking: + self.enableDataTracking() + self.reset() + # reset() resets to the UI requested value so we have to redo this + self.enableDataTracking() + + def mc_base(p): + if p.startswith('mc:'): + s = p.split(':') + if len(s) == 2: + return s[1] + return None + + if buildfile: + # Parse the configuration here. We need to do it explicitly here since + # this showEnvironment() code path doesn't use the cache + self.parseConfiguration() + + fn, cls, mc = bb.cache.virtualfn2realfn(buildfile) + fn = self.matchFile(fn, mc) + fn = bb.cache.realfn2virtual(fn, cls, mc) + elif len(pkgs_to_build) == 1: + mc = mc_base(pkgs_to_build[0]) + if not mc: + ignore = self.data.getVar("ASSUME_PROVIDED") or "" + if pkgs_to_build[0] in set(ignore.split()): + bb.fatal("%s is in ASSUME_PROVIDED" % pkgs_to_build[0]) + + taskdata, runlist = self.buildTaskData(pkgs_to_build, None, self.configuration.halt, allowincomplete=True) + + mc = runlist[0][0] + fn = runlist[0][3] + + if fn: + try: + bb_caches = bb.cache.MulticonfigCache(self.databuilder, self.data_hash, self.caches_array) + envdata = bb_caches[mc].loadDataFull(fn, self.collections[mc].get_file_appends(fn)) + except Exception as e: + parselog.exception("Unable to read %s", fn) + raise + else: + if not mc in self.databuilder.mcdata: + bb.fatal('Not multiconfig named "%s" found' % mc) + envdata = self.databuilder.mcdata[mc] + data.expandKeys(envdata) + parse.ast.runAnonFuncs(envdata) + + # Display history + with closing(StringIO()) as env: + self.data.inchistory.emit(env) + logger.plain(env.getvalue()) + + # emit variables and shell functions + with closing(StringIO()) as env: + data.emit_env(env, envdata, True) + logger.plain(env.getvalue()) + + # emit the metadata which isn't valid shell + for e in sorted(envdata.keys()): + if envdata.getVarFlag(e, 'func', False) and envdata.getVarFlag(e, 'python', False): + logger.plain("\npython %s () {\n%s}\n", e, envdata.getVar(e, False)) + + if not orig_tracking: + self.disableDataTracking() + self.reset() + + def buildTaskData(self, pkgs_to_build, task, halt, allowincomplete=False): + """ + Prepare a runqueue and taskdata object for iteration over pkgs_to_build + """ + bb.event.fire(bb.event.TreeDataPreparationStarted(), self.data) + + # A task of None means use the default task + if task is None: + task = self.configuration.cmd + if not task.startswith("do_"): + task = "do_%s" % task + + targetlist = self.checkPackages(pkgs_to_build, task) + fulltargetlist = [] + defaulttask_implicit = '' + defaulttask_explicit = False + wildcard = False + + # Wild card expansion: + # Replace string such as "mc:*:bash" + # into "mc:A:bash mc:B:bash bash" + for k in targetlist: + if k.startswith("mc:") and k.count(':') >= 2: + if wildcard: + bb.fatal('multiconfig conflict') + if k.split(":")[1] == "*": + wildcard = True + for mc in self.multiconfigs: + if mc: + fulltargetlist.append(k.replace('*', mc)) + # implicit default task + else: + defaulttask_implicit = k.split(":")[2] + else: + fulltargetlist.append(k) + else: + defaulttask_explicit = True + fulltargetlist.append(k) + + if not defaulttask_explicit and defaulttask_implicit != '': + fulltargetlist.append(defaulttask_implicit) + + bb.debug(1,"Target list: %s" % (str(fulltargetlist))) + taskdata = {} + localdata = {} + + for mc in self.multiconfigs: + taskdata[mc] = bb.taskdata.TaskData(halt, skiplist=self.skiplist, allowincomplete=allowincomplete) + localdata[mc] = data.createCopy(self.databuilder.mcdata[mc]) + bb.data.expandKeys(localdata[mc]) + + current = 0 + runlist = [] + for k in fulltargetlist: + origk = k + mc = "" + if k.startswith("mc:") and k.count(':') >= 2: + mc = k.split(":")[1] + k = ":".join(k.split(":")[2:]) + ktask = task + if ":do_" in k: + k2 = k.split(":do_") + k = k2[0] + ktask = k2[1] + + if mc not in self.multiconfigs: + bb.fatal("Multiconfig dependency %s depends on nonexistent multiconfig configuration named %s" % (origk, mc)) + + taskdata[mc].add_provider(localdata[mc], self.recipecaches[mc], k) + current += 1 + if not ktask.startswith("do_"): + ktask = "do_%s" % ktask + if k not in taskdata[mc].build_targets or not taskdata[mc].build_targets[k]: + # e.g. in ASSUME_PROVIDED + continue + fn = taskdata[mc].build_targets[k][0] + runlist.append([mc, k, ktask, fn]) + bb.event.fire(bb.event.TreeDataPreparationProgress(current, len(fulltargetlist)), self.data) + + havemc = False + for mc in self.multiconfigs: + if taskdata[mc].get_mcdepends(): + havemc = True + + # No need to do check providers if there are no mcdeps or not an mc build + if havemc or len(self.multiconfigs) > 1: + seen = set() + new = True + # Make sure we can provide the multiconfig dependency + while new: + mcdeps = set() + # Add unresolved first, so we can get multiconfig indirect dependencies on time + for mc in self.multiconfigs: + taskdata[mc].add_unresolved(localdata[mc], self.recipecaches[mc]) + mcdeps |= set(taskdata[mc].get_mcdepends()) + new = False + for k in mcdeps: + if k in seen: + continue + l = k.split(':') + depmc = l[2] + if depmc not in self.multiconfigs: + bb.fatal("Multiconfig dependency %s depends on nonexistent multiconfig configuration named configuration %s" % (k,depmc)) + else: + logger.debug("Adding providers for multiconfig dependency %s" % l[3]) + taskdata[depmc].add_provider(localdata[depmc], self.recipecaches[depmc], l[3]) + seen.add(k) + new = True + + for mc in self.multiconfigs: + taskdata[mc].add_unresolved(localdata[mc], self.recipecaches[mc]) + + bb.event.fire(bb.event.TreeDataPreparationCompleted(len(fulltargetlist)), self.data) + return taskdata, runlist + + def prepareTreeData(self, pkgs_to_build, task): + """ + Prepare a runqueue and taskdata object for iteration over pkgs_to_build + """ + + # We set halt to False here to prevent unbuildable targets raising + # an exception when we're just generating data + taskdata, runlist = self.buildTaskData(pkgs_to_build, task, False, allowincomplete=True) + + return runlist, taskdata + + ######## WARNING : this function requires cache_extra to be enabled ######## + + def generateTaskDepTreeData(self, pkgs_to_build, task): + """ + Create a dependency graph of pkgs_to_build including reverse dependency + information. + """ + if not task.startswith("do_"): + task = "do_%s" % task + + runlist, taskdata = self.prepareTreeData(pkgs_to_build, task) + rq = bb.runqueue.RunQueue(self, self.data, self.recipecaches, taskdata, runlist) + rq.rqdata.prepare() + return self.buildDependTree(rq, taskdata) + + @staticmethod + def add_mc_prefix(mc, pn): + if mc: + return "mc:%s:%s" % (mc, pn) + return pn + + def buildDependTree(self, rq, taskdata): + seen_fns = [] + depend_tree = {} + depend_tree["depends"] = {} + depend_tree["tdepends"] = {} + depend_tree["pn"] = {} + depend_tree["rdepends-pn"] = {} + depend_tree["packages"] = {} + depend_tree["rdepends-pkg"] = {} + depend_tree["rrecs-pkg"] = {} + depend_tree['providermap'] = {} + depend_tree["layer-priorities"] = self.bbfile_config_priorities + + for mc in taskdata: + for name, fn in list(taskdata[mc].get_providermap().items()): + pn = self.recipecaches[mc].pkg_fn[fn] + pn = self.add_mc_prefix(mc, pn) + if name != pn: + version = "%s:%s-%s" % self.recipecaches[mc].pkg_pepvpr[fn] + depend_tree['providermap'][name] = (pn, version) + + for tid in rq.rqdata.runtaskentries: + (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid) + pn = self.recipecaches[mc].pkg_fn[taskfn] + pn = self.add_mc_prefix(mc, pn) + version = "%s:%s-%s" % self.recipecaches[mc].pkg_pepvpr[taskfn] + if pn not in depend_tree["pn"]: + depend_tree["pn"][pn] = {} + depend_tree["pn"][pn]["filename"] = taskfn + depend_tree["pn"][pn]["version"] = version + depend_tree["pn"][pn]["inherits"] = self.recipecaches[mc].inherits.get(taskfn, None) + + # if we have extra caches, list all attributes they bring in + extra_info = [] + for cache_class in self.caches_array: + if type(cache_class) is type and issubclass(cache_class, bb.cache.RecipeInfoCommon) and hasattr(cache_class, 'cachefields'): + cachefields = getattr(cache_class, 'cachefields', []) + extra_info = extra_info + cachefields + + # for all attributes stored, add them to the dependency tree + for ei in extra_info: + depend_tree["pn"][pn][ei] = vars(self.recipecaches[mc])[ei][taskfn] + + + dotname = "%s.%s" % (pn, bb.runqueue.taskname_from_tid(tid)) + if not dotname in depend_tree["tdepends"]: + depend_tree["tdepends"][dotname] = [] + for dep in rq.rqdata.runtaskentries[tid].depends: + (depmc, depfn, _, deptaskfn) = bb.runqueue.split_tid_mcfn(dep) + deppn = self.recipecaches[depmc].pkg_fn[deptaskfn] + if depmc: + depmc = "mc:" + depmc + ":" + depend_tree["tdepends"][dotname].append("%s%s.%s" % (depmc, deppn, bb.runqueue.taskname_from_tid(dep))) + if taskfn not in seen_fns: + seen_fns.append(taskfn) + packages = [] + + depend_tree["depends"][pn] = [] + for dep in taskdata[mc].depids[taskfn]: + depend_tree["depends"][pn].append(dep) + + depend_tree["rdepends-pn"][pn] = [] + for rdep in taskdata[mc].rdepids[taskfn]: + depend_tree["rdepends-pn"][pn].append(rdep) + + rdepends = self.recipecaches[mc].rundeps[taskfn] + for package in rdepends: + depend_tree["rdepends-pkg"][package] = [] + for rdepend in rdepends[package]: + depend_tree["rdepends-pkg"][package].append(rdepend) + packages.append(package) + + rrecs = self.recipecaches[mc].runrecs[taskfn] + for package in rrecs: + depend_tree["rrecs-pkg"][package] = [] + for rdepend in rrecs[package]: + depend_tree["rrecs-pkg"][package].append(rdepend) + if not package in packages: + packages.append(package) + + for package in packages: + if package not in depend_tree["packages"]: + depend_tree["packages"][package] = {} + depend_tree["packages"][package]["pn"] = pn + depend_tree["packages"][package]["filename"] = taskfn + depend_tree["packages"][package]["version"] = version + + return depend_tree + + ######## WARNING : this function requires cache_extra to be enabled ######## + def generatePkgDepTreeData(self, pkgs_to_build, task): + """ + Create a dependency tree of pkgs_to_build, returning the data. + """ + if not task.startswith("do_"): + task = "do_%s" % task + + _, taskdata = self.prepareTreeData(pkgs_to_build, task) + + seen_fns = [] + depend_tree = {} + depend_tree["depends"] = {} + depend_tree["pn"] = {} + depend_tree["rdepends-pn"] = {} + depend_tree["rdepends-pkg"] = {} + depend_tree["rrecs-pkg"] = {} + + # if we have extra caches, list all attributes they bring in + extra_info = [] + for cache_class in self.caches_array: + if type(cache_class) is type and issubclass(cache_class, bb.cache.RecipeInfoCommon) and hasattr(cache_class, 'cachefields'): + cachefields = getattr(cache_class, 'cachefields', []) + extra_info = extra_info + cachefields + + tids = [] + for mc in taskdata: + for tid in taskdata[mc].taskentries: + tids.append(tid) + + for tid in tids: + (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid) + + pn = self.recipecaches[mc].pkg_fn[taskfn] + pn = self.add_mc_prefix(mc, pn) + + if pn not in depend_tree["pn"]: + depend_tree["pn"][pn] = {} + depend_tree["pn"][pn]["filename"] = taskfn + version = "%s:%s-%s" % self.recipecaches[mc].pkg_pepvpr[taskfn] + depend_tree["pn"][pn]["version"] = version + rdepends = self.recipecaches[mc].rundeps[taskfn] + rrecs = self.recipecaches[mc].runrecs[taskfn] + depend_tree["pn"][pn]["inherits"] = self.recipecaches[mc].inherits.get(taskfn, None) + + # for all extra attributes stored, add them to the dependency tree + for ei in extra_info: + depend_tree["pn"][pn][ei] = vars(self.recipecaches[mc])[ei][taskfn] + + if taskfn not in seen_fns: + seen_fns.append(taskfn) + + depend_tree["depends"][pn] = [] + for dep in taskdata[mc].depids[taskfn]: + pn_provider = "" + if dep in taskdata[mc].build_targets and taskdata[mc].build_targets[dep]: + fn_provider = taskdata[mc].build_targets[dep][0] + pn_provider = self.recipecaches[mc].pkg_fn[fn_provider] + else: + pn_provider = dep + pn_provider = self.add_mc_prefix(mc, pn_provider) + depend_tree["depends"][pn].append(pn_provider) + + depend_tree["rdepends-pn"][pn] = [] + for rdep in taskdata[mc].rdepids[taskfn]: + pn_rprovider = "" + if rdep in taskdata[mc].run_targets and taskdata[mc].run_targets[rdep]: + fn_rprovider = taskdata[mc].run_targets[rdep][0] + pn_rprovider = self.recipecaches[mc].pkg_fn[fn_rprovider] + else: + pn_rprovider = rdep + pn_rprovider = self.add_mc_prefix(mc, pn_rprovider) + depend_tree["rdepends-pn"][pn].append(pn_rprovider) + + depend_tree["rdepends-pkg"].update(rdepends) + depend_tree["rrecs-pkg"].update(rrecs) + + return depend_tree + + def generateDepTreeEvent(self, pkgs_to_build, task): + """ + Create a task dependency graph of pkgs_to_build. + Generate an event with the result + """ + depgraph = self.generateTaskDepTreeData(pkgs_to_build, task) + bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.data) + + def generateDotGraphFiles(self, pkgs_to_build, task): + """ + Create a task dependency graph of pkgs_to_build. + Save the result to a set of .dot files. + """ + + depgraph = self.generateTaskDepTreeData(pkgs_to_build, task) + + with open('pn-buildlist', 'w') as f: + for pn in depgraph["pn"]: + f.write(pn + "\n") + logger.info("PN build list saved to 'pn-buildlist'") + + # Remove old format output files to ensure no confusion with stale data + try: + os.unlink('pn-depends.dot') + except FileNotFoundError: + pass + try: + os.unlink('package-depends.dot') + except FileNotFoundError: + pass + try: + os.unlink('recipe-depends.dot') + except FileNotFoundError: + pass + + with open('task-depends.dot', 'w') as f: + f.write("digraph depends {\n") + for task in sorted(depgraph["tdepends"]): + (pn, taskname) = task.rsplit(".", 1) + fn = depgraph["pn"][pn]["filename"] + version = depgraph["pn"][pn]["version"] + f.write('"%s.%s" [label="%s %s\\n%s\\n%s"]\n' % (pn, taskname, pn, taskname, version, fn)) + for dep in sorted(depgraph["tdepends"][task]): + f.write('"%s" -> "%s"\n' % (task, dep)) + f.write("}\n") + logger.info("Task dependencies saved to 'task-depends.dot'") + + def show_appends_with_no_recipes(self): + appends_without_recipes = {} + # Determine which bbappends haven't been applied + for mc in self.multiconfigs: + # First get list of recipes, including skipped + recipefns = list(self.recipecaches[mc].pkg_fn.keys()) + recipefns.extend(self.skiplist.keys()) + + # Work out list of bbappends that have been applied + applied_appends = [] + for fn in recipefns: + applied_appends.extend(self.collections[mc].get_file_appends(fn)) + + appends_without_recipes[mc] = [] + for _, appendfn in self.collections[mc].bbappends: + if not appendfn in applied_appends: + appends_without_recipes[mc].append(appendfn) + + msgs = [] + for mc in sorted(appends_without_recipes.keys()): + if appends_without_recipes[mc]: + msgs.append('No recipes in %s available for:\n %s' % (mc if mc else 'default', + '\n '.join(appends_without_recipes[mc]))) + + if msgs: + msg = "\n".join(msgs) + warn_only = self.databuilder.mcdata[mc].getVar("BB_DANGLINGAPPENDS_WARNONLY", \ + False) or "no" + if warn_only.lower() in ("1", "yes", "true"): + bb.warn(msg) + else: + bb.fatal(msg) + + def handlePrefProviders(self): + + for mc in self.multiconfigs: + localdata = data.createCopy(self.databuilder.mcdata[mc]) + bb.data.expandKeys(localdata) + + # Handle PREFERRED_PROVIDERS + for p in (localdata.getVar('PREFERRED_PROVIDERS') or "").split(): + try: + (providee, provider) = p.split(':') + except: + providerlog.critical("Malformed option in PREFERRED_PROVIDERS variable: %s" % p) + continue + if providee in self.recipecaches[mc].preferred and self.recipecaches[mc].preferred[providee] != provider: + providerlog.error("conflicting preferences for %s: both %s and %s specified", providee, provider, self.recipecaches[mc].preferred[providee]) + self.recipecaches[mc].preferred[providee] = provider + + def findConfigFilePath(self, configfile): + """ + Find the location on disk of configfile and if it exists and was parsed by BitBake + emit the ConfigFilePathFound event with the path to the file. + """ + path = bb.cookerdata.findConfigFile(configfile, self.data) + if not path: + return + + # Generate a list of parsed configuration files by searching the files + # listed in the __depends and __base_depends variables with a .conf suffix. + conffiles = [] + dep_files = self.data.getVar('__base_depends', False) or [] + dep_files = dep_files + (self.data.getVar('__depends', False) or []) + + for f in dep_files: + if f[0].endswith(".conf"): + conffiles.append(f[0]) + + _, conf, conffile = path.rpartition("conf/") + match = os.path.join(conf, conffile) + # Try and find matches for conf/conffilename.conf as we don't always + # have the full path to the file. + for cfg in conffiles: + if cfg.endswith(match): + bb.event.fire(bb.event.ConfigFilePathFound(path), + self.data) + break + + def findFilesMatchingInDir(self, filepattern, directory): + """ + Searches for files containing the substring 'filepattern' which are children of + 'directory' in each BBPATH. i.e. to find all rootfs package classes available + to BitBake one could call findFilesMatchingInDir(self, 'rootfs_', 'classes') + or to find all machine configuration files one could call: + findFilesMatchingInDir(self, '.conf', 'conf/machine') + """ + + matches = [] + bbpaths = self.data.getVar('BBPATH').split(':') + for path in bbpaths: + dirpath = os.path.join(path, directory) + if os.path.exists(dirpath): + for root, dirs, files in os.walk(dirpath): + for f in files: + if filepattern in f: + matches.append(f) + + if matches: + bb.event.fire(bb.event.FilesMatchingFound(filepattern, matches), self.data) + + def testCookerCommandEvent(self, filepattern): + # Dummy command used by OEQA selftest to test tinfoil without IO + matches = ["A", "B"] + bb.event.fire(bb.event.FilesMatchingFound(filepattern, matches), self.data) + + def findProviders(self, mc=''): + return bb.providers.findProviders(self.databuilder.mcdata[mc], self.recipecaches[mc], self.recipecaches[mc].pkg_pn) + + def findBestProvider(self, pn, mc=''): + if pn in self.recipecaches[mc].providers: + filenames = self.recipecaches[mc].providers[pn] + eligible, foundUnique = bb.providers.filterProviders(filenames, pn, self.databuilder.mcdata[mc], self.recipecaches[mc]) + if eligible is not None: + filename = eligible[0] + else: + filename = None + return None, None, None, filename + elif pn in self.recipecaches[mc].pkg_pn: + (latest, latest_f, preferred_ver, preferred_file, required) = bb.providers.findBestProvider(pn, self.databuilder.mcdata[mc], self.recipecaches[mc], self.recipecaches[mc].pkg_pn) + if required and preferred_file is None: + return None, None, None, None + return (latest, latest_f, preferred_ver, preferred_file) + else: + return None, None, None, None + + def findConfigFiles(self, varname): + """ + Find config files which are appropriate values for varname. + i.e. MACHINE, DISTRO + """ + possible = [] + var = varname.lower() + + data = self.data + # iterate configs + bbpaths = data.getVar('BBPATH').split(':') + for path in bbpaths: + confpath = os.path.join(path, "conf", var) + if os.path.exists(confpath): + for root, dirs, files in os.walk(confpath): + # get all child files, these are appropriate values + for f in files: + val, sep, end = f.rpartition('.') + if end == 'conf': + possible.append(val) + + if possible: + bb.event.fire(bb.event.ConfigFilesFound(var, possible), self.data) + + def findInheritsClass(self, klass): + """ + Find all recipes which inherit the specified class + """ + pkg_list = [] + + for pfn in self.recipecaches[''].pkg_fn: + inherits = self.recipecaches[''].inherits.get(pfn, None) + if inherits and klass in inherits: + pkg_list.append(self.recipecaches[''].pkg_fn[pfn]) + + return pkg_list + + def generateTargetsTree(self, klass=None, pkgs=None): + """ + Generate a dependency tree of buildable targets + Generate an event with the result + """ + # if the caller hasn't specified a pkgs list default to universe + if not pkgs: + pkgs = ['universe'] + # if inherited_class passed ensure all recipes which inherit the + # specified class are included in pkgs + if klass: + extra_pkgs = self.findInheritsClass(klass) + pkgs = pkgs + extra_pkgs + + # generate a dependency tree for all our packages + tree = self.generatePkgDepTreeData(pkgs, 'build') + bb.event.fire(bb.event.TargetsTreeGenerated(tree), self.data) + + def interactiveMode( self ): + """Drop off into a shell""" + try: + from bb import shell + except ImportError: + parselog.exception("Interactive mode not available") + raise bb.BBHandledException() + else: + shell.start( self ) + + + def handleCollections(self, collections): + """Handle collections""" + errors = False + self.bbfile_config_priorities = [] + if collections: + collection_priorities = {} + collection_depends = {} + collection_list = collections.split() + min_prio = 0 + for c in collection_list: + bb.debug(1,'Processing %s in collection list' % (c)) + + # Get collection priority if defined explicitly + priority = self.data.getVar("BBFILE_PRIORITY_%s" % c) + if priority: + try: + prio = int(priority) + except ValueError: + parselog.error("invalid value for BBFILE_PRIORITY_%s: \"%s\"", c, priority) + errors = True + if min_prio == 0 or prio < min_prio: + min_prio = prio + collection_priorities[c] = prio + else: + collection_priorities[c] = None + + # Check dependencies and store information for priority calculation + deps = self.data.getVar("LAYERDEPENDS_%s" % c) + if deps: + try: + depDict = bb.utils.explode_dep_versions2(deps) + except bb.utils.VersionStringException as vse: + bb.fatal('Error parsing LAYERDEPENDS_%s: %s' % (c, str(vse))) + for dep, oplist in list(depDict.items()): + if dep in collection_list: + for opstr in oplist: + layerver = self.data.getVar("LAYERVERSION_%s" % dep) + (op, depver) = opstr.split() + if layerver: + try: + res = bb.utils.vercmp_string_op(layerver, depver, op) + except bb.utils.VersionStringException as vse: + bb.fatal('Error parsing LAYERDEPENDS_%s: %s' % (c, str(vse))) + if not res: + parselog.error("Layer '%s' depends on version %s of layer '%s', but version %s is currently enabled in your configuration. Check that you are using the correct matching versions/branches of these two layers.", c, opstr, dep, layerver) + errors = True + else: + parselog.error("Layer '%s' depends on version %s of layer '%s', which exists in your configuration but does not specify a version. Check that you are using the correct matching versions/branches of these two layers.", c, opstr, dep) + errors = True + else: + parselog.error("Layer '%s' depends on layer '%s', but this layer is not enabled in your configuration", c, dep) + errors = True + collection_depends[c] = list(depDict.keys()) + else: + collection_depends[c] = [] + + # Check recommends and store information for priority calculation + recs = self.data.getVar("LAYERRECOMMENDS_%s" % c) + if recs: + try: + recDict = bb.utils.explode_dep_versions2(recs) + except bb.utils.VersionStringException as vse: + bb.fatal('Error parsing LAYERRECOMMENDS_%s: %s' % (c, str(vse))) + for rec, oplist in list(recDict.items()): + if rec in collection_list: + if oplist: + opstr = oplist[0] + layerver = self.data.getVar("LAYERVERSION_%s" % rec) + if layerver: + (op, recver) = opstr.split() + try: + res = bb.utils.vercmp_string_op(layerver, recver, op) + except bb.utils.VersionStringException as vse: + bb.fatal('Error parsing LAYERRECOMMENDS_%s: %s' % (c, str(vse))) + if not res: + parselog.debug(3,"Layer '%s' recommends version %s of layer '%s', but version %s is currently enabled in your configuration. Check that you are using the correct matching versions/branches of these two layers.", c, opstr, rec, layerver) + continue + else: + parselog.debug(3,"Layer '%s' recommends version %s of layer '%s', which exists in your configuration but does not specify a version. Check that you are using the correct matching versions/branches of these two layers.", c, opstr, rec) + continue + parselog.debug(3,"Layer '%s' recommends layer '%s', so we are adding it", c, rec) + collection_depends[c].append(rec) + else: + parselog.debug(3,"Layer '%s' recommends layer '%s', but this layer is not enabled in your configuration", c, rec) + + # Recursively work out collection priorities based on dependencies + def calc_layer_priority(collection): + if not collection_priorities[collection]: + max_depprio = min_prio + for dep in collection_depends[collection]: + calc_layer_priority(dep) + depprio = collection_priorities[dep] + if depprio > max_depprio: + max_depprio = depprio + max_depprio += 1 + parselog.debug(1, "Calculated priority of layer %s as %d", collection, max_depprio) + collection_priorities[collection] = max_depprio + + # Calculate all layer priorities using calc_layer_priority and store in bbfile_config_priorities + for c in collection_list: + calc_layer_priority(c) + regex = self.data.getVar("BBFILE_PATTERN_%s" % c) + if regex is None: + parselog.error("BBFILE_PATTERN_%s not defined" % c) + errors = True + continue + elif regex == "": + parselog.debug(1, "BBFILE_PATTERN_%s is empty" % c) + cre = re.compile('^NULL$') + errors = False + else: + try: + cre = re.compile(regex) + except re.error: + parselog.error("BBFILE_PATTERN_%s \"%s\" is not a valid regular expression", c, regex) + errors = True + continue + self.bbfile_config_priorities.append((c, regex, cre, collection_priorities[c])) + if errors: + # We've already printed the actual error(s) + raise CollectionError("Errors during parsing layer configuration") + + def buildSetVars(self): + """ + Setup any variables needed before starting a build + """ + t = time.gmtime() + for mc in self.databuilder.mcdata: + ds = self.databuilder.mcdata[mc] + if not ds.getVar("BUILDNAME", False): + ds.setVar("BUILDNAME", "${DATE}${TIME}") + ds.setVar("BUILDSTART", time.strftime('%m/%d/%Y %H:%M:%S', t)) + ds.setVar("DATE", time.strftime('%Y%m%d', t)) + ds.setVar("TIME", time.strftime('%H%M%S', t)) + + def reset_mtime_caches(self): + """ + Reset mtime caches - this is particularly important when memory resident as something + which is cached is not unlikely to have changed since the last invocation (e.g. a + file associated with a recipe might have been modified by the user). + """ + build.reset_cache() + bb.fetch._checksum_cache.mtime_cache.clear() + siggen_cache = getattr(bb.parse.siggen, 'checksum_cache', None) + if siggen_cache: + bb.parse.siggen.checksum_cache.mtime_cache.clear() + + def matchFiles(self, bf, mc=''): + """ + Find the .bb files which match the expression in 'buildfile'. + """ + if bf.startswith("/") or bf.startswith("../"): + bf = os.path.abspath(bf) + + self.collections = {mc: CookerCollectFiles(self.bbfile_config_priorities, mc)} + filelist, masked, searchdirs = self.collections[mc].collect_bbfiles(self.databuilder.mcdata[mc], self.databuilder.mcdata[mc]) + try: + os.stat(bf) + bf = os.path.abspath(bf) + return [bf] + except OSError: + regexp = re.compile(bf) + matches = [] + for f in filelist: + if regexp.search(f) and os.path.isfile(f): + matches.append(f) + return matches + + def matchFile(self, buildfile, mc=''): + """ + Find the .bb file which matches the expression in 'buildfile'. + Raise an error if multiple files + """ + matches = self.matchFiles(buildfile, mc) + if len(matches) != 1: + if matches: + msg = "Unable to match '%s' to a specific recipe file - %s matches found:" % (buildfile, len(matches)) + if matches: + for f in matches: + msg += "\n %s" % f + parselog.error(msg) + else: + parselog.error("Unable to find any recipe file matching '%s'" % buildfile) + raise NoSpecificMatch + return matches[0] + + def buildFile(self, buildfile, task): + """ + Build the file matching regexp buildfile + """ + bb.event.fire(bb.event.BuildInit(), self.data) + + # Too many people use -b because they think it's how you normally + # specify a target to be built, so show a warning + bb.warn("Buildfile specified, dependencies will not be handled. If this is not what you want, do not use -b / --buildfile.") + + self.buildFileInternal(buildfile, task) + + def buildFileInternal(self, buildfile, task, fireevents=True, quietlog=False): + """ + Build the file matching regexp buildfile + """ + + # Parse the configuration here. We need to do it explicitly here since + # buildFile() doesn't use the cache + self.parseConfiguration() + + # If we are told to do the None task then query the default task + if task is None: + task = self.configuration.cmd + if not task.startswith("do_"): + task = "do_%s" % task + + fn, cls, mc = bb.cache.virtualfn2realfn(buildfile) + fn = self.matchFile(fn, mc) + + self.buildSetVars() + self.reset_mtime_caches() + + bb_caches = bb.cache.MulticonfigCache(self.databuilder, self.data_hash, self.caches_array) + + infos = bb_caches[mc].parse(fn, self.collections[mc].get_file_appends(fn)) + infos = dict(infos) + + fn = bb.cache.realfn2virtual(fn, cls, mc) + try: + info_array = infos[fn] + except KeyError: + bb.fatal("%s does not exist" % fn) + + if info_array[0].skipped: + bb.fatal("%s was skipped: %s" % (fn, info_array[0].skipreason)) + + self.recipecaches[mc].add_from_recipeinfo(fn, info_array) + + # Tweak some variables + item = info_array[0].pn + self.recipecaches[mc].ignored_dependencies = set() + self.recipecaches[mc].bbfile_priority[fn] = 1 + self.configuration.limited_deps = True + + # Remove external dependencies + self.recipecaches[mc].task_deps[fn]['depends'] = {} + self.recipecaches[mc].deps[fn] = [] + self.recipecaches[mc].rundeps[fn] = defaultdict(list) + self.recipecaches[mc].runrecs[fn] = defaultdict(list) + + # Invalidate task for target if force mode active + if self.configuration.force: + logger.verbose("Invalidate task %s, %s", task, fn) + bb.parse.siggen.invalidate_task(task, self.recipecaches[mc], fn) + + # Setup taskdata structure + taskdata = {} + taskdata[mc] = bb.taskdata.TaskData(self.configuration.halt) + taskdata[mc].add_provider(self.databuilder.mcdata[mc], self.recipecaches[mc], item) + + if quietlog: + rqloglevel = bb.runqueue.logger.getEffectiveLevel() + bb.runqueue.logger.setLevel(logging.WARNING) + + buildname = self.databuilder.mcdata[mc].getVar("BUILDNAME") + if fireevents: + bb.event.fire(bb.event.BuildStarted(buildname, [item]), self.databuilder.mcdata[mc]) + + # Execute the runqueue + runlist = [[mc, item, task, fn]] + + rq = bb.runqueue.RunQueue(self, self.data, self.recipecaches, taskdata, runlist) + + def buildFileIdle(server, rq, halt): + + msg = None + interrupted = 0 + if halt or self.state == state.forceshutdown: + rq.finish_runqueue(True) + msg = "Forced shutdown" + interrupted = 2 + elif self.state == state.shutdown: + rq.finish_runqueue(False) + msg = "Stopped build" + interrupted = 1 + failures = 0 + try: + retval = rq.execute_runqueue() + except runqueue.TaskFailure as exc: + failures += len(exc.args) + retval = False + except SystemExit as exc: + self.command.finishAsyncCommand(str(exc)) + if quietlog: + bb.runqueue.logger.setLevel(rqloglevel) + return False + + if not retval: + if fireevents: + bb.event.fire(bb.event.BuildCompleted(len(rq.rqdata.runtaskentries), buildname, item, failures, interrupted), self.databuilder.mcdata[mc]) + self.command.finishAsyncCommand(msg) + # We trashed self.recipecaches above + self.parsecache_valid = False + self.configuration.limited_deps = False + bb.parse.siggen.reset(self.data) + if quietlog: + bb.runqueue.logger.setLevel(rqloglevel) + return False + if retval is True: + return True + return retval + + self.idleCallBackRegister(buildFileIdle, rq) + + def buildTargets(self, targets, task): + """ + Attempt to build the targets specified + """ + + def buildTargetsIdle(server, rq, halt): + msg = None + interrupted = 0 + if halt or self.state == state.forceshutdown: + rq.finish_runqueue(True) + msg = "Forced shutdown" + interrupted = 2 + elif self.state == state.shutdown: + rq.finish_runqueue(False) + msg = "Stopped build" + interrupted = 1 + failures = 0 + try: + retval = rq.execute_runqueue() + except runqueue.TaskFailure as exc: + failures += len(exc.args) + retval = False + except SystemExit as exc: + self.command.finishAsyncCommand(str(exc)) + return False + + if not retval: + try: + for mc in self.multiconfigs: + bb.event.fire(bb.event.BuildCompleted(len(rq.rqdata.runtaskentries), buildname, targets, failures, interrupted), self.databuilder.mcdata[mc]) + finally: + self.command.finishAsyncCommand(msg) + return False + if retval is True: + return True + return retval + + self.reset_mtime_caches() + self.buildSetVars() + + # If we are told to do the None task then query the default task + if task is None: + task = self.configuration.cmd + + if not task.startswith("do_"): + task = "do_%s" % task + + packages = [target if ':' in target else '%s:%s' % (target, task) for target in targets] + + bb.event.fire(bb.event.BuildInit(packages), self.data) + + taskdata, runlist = self.buildTaskData(targets, task, self.configuration.halt) + + buildname = self.data.getVar("BUILDNAME", False) + + # make targets to always look as :do_ + ntargets = [] + for target in runlist: + if target[0]: + ntargets.append("mc:%s:%s:%s" % (target[0], target[1], target[2])) + ntargets.append("%s:%s" % (target[1], target[2])) + + for mc in self.multiconfigs: + bb.event.fire(bb.event.BuildStarted(buildname, ntargets), self.databuilder.mcdata[mc]) + + rq = bb.runqueue.RunQueue(self, self.data, self.recipecaches, taskdata, runlist) + if 'universe' in targets: + rq.rqdata.warn_multi_bb = True + + self.idleCallBackRegister(buildTargetsIdle, rq) + + + def getAllKeysWithFlags(self, flaglist): + dump = {} + for k in self.data.keys(): + try: + expand = True + flags = self.data.getVarFlags(k) + if flags and "func" in flags and "python" in flags: + expand = False + v = self.data.getVar(k, expand) + if not k.startswith("__") and not isinstance(v, bb.data_smart.DataSmart): + dump[k] = { + 'v' : str(v) , + 'history' : self.data.varhistory.variable(k), + } + for d in flaglist: + if flags and d in flags: + dump[k][d] = flags[d] + else: + dump[k][d] = None + except Exception as e: + print(e) + return dump + + + def updateCacheSync(self): + if self.state == state.running: + return + + # reload files for which we got notifications + for p in self.inotify_modified_files: + bb.parse.update_cache(p) + if p in bb.parse.BBHandler.cached_statements: + del bb.parse.BBHandler.cached_statements[p] + self.inotify_modified_files = [] + + if not self.baseconfig_valid: + logger.debug("Reloading base configuration data") + self.initConfigurationData() + self.handlePRServ() + + # This is called for all async commands when self.state != running + def updateCache(self): + if self.state == state.running: + return + + if self.state in (state.shutdown, state.forceshutdown, state.error): + if hasattr(self.parser, 'shutdown'): + self.parser.shutdown(clean=False) + self.parser.final_cleanup() + raise bb.BBHandledException() + + if self.state != state.parsing: + self.updateCacheSync() + + if self.state != state.parsing and not self.parsecache_valid: + self.setupParserWatcher() + + bb.parse.siggen.reset(self.data) + self.parseConfiguration () + if CookerFeatures.SEND_SANITYEVENTS in self.featureset: + for mc in self.multiconfigs: + bb.event.fire(bb.event.SanityCheck(False), self.databuilder.mcdata[mc]) + + for mc in self.multiconfigs: + ignore = self.databuilder.mcdata[mc].getVar("ASSUME_PROVIDED") or "" + self.recipecaches[mc].ignored_dependencies = set(ignore.split()) + + for dep in self.configuration.extra_assume_provided: + self.recipecaches[mc].ignored_dependencies.add(dep) + + self.collections = {} + + mcfilelist = {} + total_masked = 0 + searchdirs = set() + for mc in self.multiconfigs: + self.collections[mc] = CookerCollectFiles(self.bbfile_config_priorities, mc) + (filelist, masked, search) = self.collections[mc].collect_bbfiles(self.databuilder.mcdata[mc], self.databuilder.mcdata[mc]) + + mcfilelist[mc] = filelist + total_masked += masked + searchdirs |= set(search) + + # Add inotify watches for directories searched for bb/bbappend files + for dirent in searchdirs: + self.add_filewatch([[dirent]], dirs=True) + + self.parser = CookerParser(self, mcfilelist, total_masked) + self.parsecache_valid = True + + self.state = state.parsing + + if not self.parser.parse_next(): + collectlog.debug(1, "parsing complete") + if self.parser.error: + raise bb.BBHandledException() + self.show_appends_with_no_recipes() + self.handlePrefProviders() + for mc in self.multiconfigs: + self.recipecaches[mc].bbfile_priority = self.collections[mc].collection_priorities(self.recipecaches[mc].pkg_fn, self.parser.mcfilelist[mc], self.data) + self.state = state.running + + # Send an event listing all stamps reachable after parsing + # which the metadata may use to clean up stale data + for mc in self.multiconfigs: + event = bb.event.ReachableStamps(self.recipecaches[mc].stamp) + bb.event.fire(event, self.databuilder.mcdata[mc]) + return None + + return True + + def checkPackages(self, pkgs_to_build, task=None): + + # Return a copy, don't modify the original + pkgs_to_build = pkgs_to_build[:] + + if not pkgs_to_build: + raise NothingToBuild + + ignore = (self.data.getVar("ASSUME_PROVIDED") or "").split() + for pkg in pkgs_to_build.copy(): + if pkg in ignore: + parselog.warning("Explicit target \"%s\" is in ASSUME_PROVIDED, ignoring" % pkg) + if pkg.startswith("multiconfig:"): + pkgs_to_build.remove(pkg) + pkgs_to_build.append(pkg.replace("multiconfig:", "mc:")) + + if 'world' in pkgs_to_build: + pkgs_to_build.remove('world') + for mc in self.multiconfigs: + bb.providers.buildWorldTargetList(self.recipecaches[mc], task) + for t in self.recipecaches[mc].world_target: + if mc: + t = "mc:" + mc + ":" + t + pkgs_to_build.append(t) + + if 'universe' in pkgs_to_build: + parselog.verbnote("The \"universe\" target is only intended for testing and may produce errors.") + parselog.debug(1, "collating packages for \"universe\"") + pkgs_to_build.remove('universe') + for mc in self.multiconfigs: + for t in self.recipecaches[mc].universe_target: + if task: + foundtask = False + for provider_fn in self.recipecaches[mc].providers[t]: + if task in self.recipecaches[mc].task_deps[provider_fn]['tasks']: + foundtask = True + break + if not foundtask: + bb.debug(1, "Skipping %s for universe tasks as task %s doesn't exist" % (t, task)) + continue + if mc: + t = "mc:" + mc + ":" + t + pkgs_to_build.append(t) + + return pkgs_to_build + + def pre_serve(self): + return + + def post_serve(self): + self.shutdown(force=True) + prserv.serv.auto_shutdown() + if hasattr(bb.parse, "siggen"): + bb.parse.siggen.exit() + if self.hashserv: + self.hashserv.process.terminate() + self.hashserv.process.join() + if hasattr(self, "data"): + bb.event.fire(CookerExit(), self.data) + + def shutdown(self, force = False): + if force: + self.state = state.forceshutdown + else: + self.state = state.shutdown + + if self.parser: + self.parser.shutdown(clean=not force) + self.parser.final_cleanup() + + def finishcommand(self): + self.state = state.initial + + def reset(self): + if hasattr(bb.parse, "siggen"): + bb.parse.siggen.exit() + self.initConfigurationData() + self.handlePRServ() + + def clientComplete(self): + """Called when the client is done using the server""" + self.finishcommand() + self.extraconfigdata = {} + self.command.reset() + if hasattr(self, "data"): + self.databuilder.reset() + self.data = self.databuilder.data + self.parsecache_valid = False + self.baseconfig_valid = False + + +class CookerExit(bb.event.Event): + """ + Notify clients of the Cooker shutdown + """ + + def __init__(self): + bb.event.Event.__init__(self) + + +class CookerCollectFiles(object): + def __init__(self, priorities, mc=''): + self.mc = mc + self.bbappends = [] + # Priorities is a list of tuples, with the second element as the pattern. + # We need to sort the list with the longest pattern first, and so on to + # the shortest. This allows nested layers to be properly evaluated. + self.bbfile_config_priorities = sorted(priorities, key=lambda tup: tup[1], reverse=True) + + def calc_bbfile_priority(self, filename): + for _, _, regex, pri in self.bbfile_config_priorities: + if regex.match(filename): + return pri, regex + return 0, None + + def get_bbfiles(self): + """Get list of default .bb files by reading out the current directory""" + path = os.getcwd() + contents = os.listdir(path) + bbfiles = [] + for f in contents: + if f.endswith(".bb"): + bbfiles.append(os.path.abspath(os.path.join(path, f))) + return bbfiles + + def find_bbfiles(self, path): + """Find all the .bb and .bbappend files in a directory""" + found = [] + for dir, dirs, files in os.walk(path): + for ignored in ('SCCS', 'CVS', '.svn'): + if ignored in dirs: + dirs.remove(ignored) + found += [os.path.join(dir, f) for f in files if (f.endswith(['.bb', '.bbappend']))] + + return found + + def collect_bbfiles(self, config, eventdata): + """Collect all available .bb build files""" + masked = 0 + + collectlog.debug(1, "collecting .bb files") + + files = (config.getVar( "BBFILES") or "").split() + + # Sort files by priority + files.sort( key=lambda fileitem: self.calc_bbfile_priority(fileitem)[0] ) + config.setVar("BBFILES_PRIORITIZED", " ".join(files)) + + if not files: + files = self.get_bbfiles() + + if not files: + collectlog.error("no recipe files to build, check your BBPATH and BBFILES?") + bb.event.fire(CookerExit(), eventdata) + + # We need to track where we look so that we can add inotify watches. There + # is no nice way to do this, this is horrid. We intercept the os.listdir() + # (or os.scandir() for python 3.6+) calls while we run glob(). + origlistdir = os.listdir + if hasattr(os, 'scandir'): + origscandir = os.scandir + searchdirs = [] + + def ourlistdir(d): + searchdirs.append(d) + return origlistdir(d) + + def ourscandir(d): + searchdirs.append(d) + return origscandir(d) + + os.listdir = ourlistdir + if hasattr(os, 'scandir'): + os.scandir = ourscandir + try: + # Can't use set here as order is important + newfiles = [] + for f in files: + if os.path.isdir(f): + dirfiles = self.find_bbfiles(f) + for g in dirfiles: + if g not in newfiles: + newfiles.append(g) + else: + globbed = glob.glob(f) + if not globbed and os.path.exists(f): + globbed = [f] + # glob gives files in order on disk. Sort to be deterministic. + for g in sorted(globbed): + if g not in newfiles: + newfiles.append(g) + finally: + os.listdir = origlistdir + if hasattr(os, 'scandir'): + os.scandir = origscandir + + bbmask = config.getVar('BBMASK') + + if bbmask: + # First validate the individual regular expressions and ignore any + # that do not compile + bbmasks = [] + for mask in bbmask.split(): + # When constructing an older style single regex, it's possible for BBMASK + # to end up beginning with '|', which matches and masks _everything_. + if mask.startswith("|"): + collectlog.warning("BBMASK contains regular expression beginning with '|', fixing: %s" % mask) + mask = mask[1:] + try: + re.compile(mask) + bbmasks.append(mask) + except re.error: + collectlog.critical("BBMASK contains an invalid regular expression, ignoring: %s" % mask) + + # Then validate the combined regular expressions. This should never + # fail, but better safe than sorry... + bbmask = "|".join(bbmasks) + try: + bbmask_compiled = re.compile(bbmask) + except re.error: + collectlog.critical("BBMASK is not a valid regular expression, ignoring: %s" % bbmask) + bbmask = None + + bbfiles = [] + bbappend = [] + for f in newfiles: + if bbmask and bbmask_compiled.search(f): + collectlog.debug(1, "skipping masked file %s", f) + masked += 1 + continue + if f.endswith('.bb'): + bbfiles.append(f) + elif f.endswith('.bbappend'): + bbappend.append(f) + else: + collectlog.debug(1, "skipping %s: unknown file extension", f) + + # Build a list of .bbappend files for each .bb file + for f in bbappend: + base = os.path.basename(f).replace('.bbappend', '.bb') + self.bbappends.append((base, f)) + + # Find overlayed recipes + # bbfiles will be in priority order which makes this easy + bbfile_seen = dict() + self.overlayed = defaultdict(list) + for f in reversed(bbfiles): + base = os.path.basename(f) + if base not in bbfile_seen: + bbfile_seen[base] = f + else: + topfile = bbfile_seen[base] + self.overlayed[topfile].append(f) + + return (bbfiles, masked, searchdirs) + + def get_file_appends(self, fn): + """ + Returns a list of .bbappend files to apply to fn + """ + filelist = [] + f = os.path.basename(fn) + for b in self.bbappends: + (bbappend, filename) = b + if (bbappend == f) or ('%' in bbappend and bbappend.startswith(f[:bbappend.index('%')])): + filelist.append(filename) + return tuple(filelist) + + def collection_priorities(self, pkgfns, fns, d): + # Return the priorities of the entries in pkgfns + # Also check that all the regexes in self.bbfile_config_priorities are used + # (but to do that we need to ensure skipped recipes aren't counted, nor + # collections in BBFILE_PATTERN_IGNORE_EMPTY) + + priorities = {} + seen = set() + matched = set() + + matched_regex = set() + unmatched_regex = set() + for _, _, regex, _ in self.bbfile_config_priorities: + unmatched_regex.add(regex) + + # Calculate priorities for each file + for p in pkgfns: + realfn, cls, mc = bb.cache.virtualfn2realfn(p) + priorities[p], regex = self.calc_bbfile_priority(realfn) + if regex in unmatched_regex: + matched_regex.add(regex) + unmatched_regex.remove(regex) + seen.add(realfn) + if regex: + matched.add(realfn) + + if unmatched_regex: + # Account for bbappend files + for b in self.bbappends: + (bbfile, append) = b + seen.add(append) + + # Account for skipped recipes + seen.update(fns) + + seen.difference_update(matched) + + def already_matched(fn): + for regex in matched_regex: + if regex.match(fn): + return True + return False + + for unmatch in unmatched_regex.copy(): + for fn in seen: + if unmatch.match(fn): + # If the bbappend or file was already matched by another regex, skip it + # e.g. for a layer within a layer, the outer regex could match, the inner + # regex may match nothing and we should warn about that + if already_matched(fn): + continue + unmatched_regex.remove(unmatch) + break + + for collection, pattern, regex, _ in self.bbfile_config_priorities: + if regex in unmatched_regex: + if d.getVar('BBFILE_PATTERN_IGNORE_EMPTY_%s' % collection) != '1': + collectlog.warning("No bb files in %s matched BBFILE_PATTERN_%s '%s'" % (self.mc if self.mc else 'default', + collection, pattern)) + + return priorities + +class ParsingFailure(Exception): + def __init__(self, realexception, recipe): + self.realexception = realexception + self.recipe = recipe + Exception.__init__(self, realexception, recipe) + +class Parser(multiprocessing.Process): + def __init__(self, jobs, results, quit, profile): + self.jobs = jobs + self.results = results + self.quit = quit + multiprocessing.Process.__init__(self) + self.context = bb.utils.get_context().copy() + self.handlers = bb.event.get_class_handlers().copy() + self.profile = profile + self.queue_signals = False + self.signal_received = [] + self.signal_threadlock = threading.Lock() + + def catch_sig(self, signum, frame): + if self.queue_signals: + self.signal_received.append(signum) + else: + self.handle_sig(signum, frame) + + def handle_sig(self, signum, frame): + if signum == signal.SIGTERM: + signal.signal(signal.SIGTERM, signal.SIG_DFL) + os.kill(os.getpid(), signal.SIGTERM) + elif signum == signal.SIGINT: + signal.default_int_handler(signum, frame) + + def run(self): + + if not self.profile: + self.realrun() + return + + try: + import cProfile as profile + except: + import profile + prof = profile.Profile() + try: + profile.Profile.runcall(prof, self.realrun) + finally: + logfile = "profile-parse-%s.log" % multiprocessing.current_process().name + prof.dump_stats(logfile) + + def realrun(self): + # Signal handling here is hard. We must not terminate any process or thread holding the write + # lock for the event stream as it will not be released, ever, and things will hang. + # Python handles signals in the main thread/process but they can be raised from any thread and + # we want to defer processing of any SIGTERM/SIGINT signal until we're outside the critical section + # and don't hold the lock (see server/process.py). We therefore always catch the signals (so any + # new thread should also do so) and we defer handling but we handle with the local thread lock + # held (a threading lock, not a multiprocessing one) so that no other thread in the process + # can be in the critical section. + signal.signal(signal.SIGTERM, self.catch_sig) + signal.signal(signal.SIGHUP, signal.SIG_DFL) + signal.signal(signal.SIGINT, self.catch_sig) + bb.utils.set_process_name(multiprocessing.current_process().name) + multiprocessing.util.Finalize(None, bb.codeparser.parser_cache_save, exitpriority=1) + multiprocessing.util.Finalize(None, bb.fetch.fetcher_parse_save, exitpriority=1) + + pending = [] + try: + while True: + try: + self.quit.get_nowait() + except queue.Empty: + pass + else: + break + + if pending: + result = pending.pop() + else: + try: + job = self.jobs.pop() + except IndexError: + break + result = self.parse(*job) + # Clear the siggen cache after parsing to control memory usage, its huge + bb.parse.siggen.postparsing_clean_cache() + try: + self.results.put(result, timeout=0.25) + except queue.Full: + pending.append(result) + finally: + self.results.close() + self.results.join_thread() + + def parse(self, mc, cache, filename, appends): + try: + origfilter = bb.event.LogHandler.filter + # Record the filename we're parsing into any events generated + def parse_filter(self, record): + record.taskpid = bb.event.worker_pid + record.fn = filename + return True + + # Reset our environment and handlers to the original settings + bb.utils.set_context(self.context.copy()) + bb.event.set_class_handlers(self.handlers.copy()) + bb.event.LogHandler.filter = parse_filter + + return True, mc, cache.parse(filename, appends) + except Exception as exc: + tb = sys.exc_info()[2] + exc.recipe = filename + exc.traceback = list(bb.exceptions.extract_traceback(tb, context=3)) + return True, None, exc + # Need to turn BaseExceptions into Exceptions here so we gracefully shutdown + # and for example a worker thread doesn't just exit on its own in response to + # a SystemExit event for example. + except BaseException as exc: + return True, None, ParsingFailure(exc, filename) + finally: + bb.event.LogHandler.filter = origfilter + +class CookerParser(object): + def __init__(self, cooker, mcfilelist, masked): + self.mcfilelist = mcfilelist + self.cooker = cooker + self.cfgdata = cooker.data + self.cfghash = cooker.data_hash + self.cfgbuilder = cooker.databuilder + + # Accounting statistics + self.parsed = 0 + self.cached = 0 + self.error = 0 + self.masked = masked + + self.skipped = 0 + self.virtuals = 0 + + self.current = 0 + self.process_names = [] + + self.bb_caches = bb.cache.MulticonfigCache(self.cfgbuilder, self.cfghash, cooker.caches_array) + self.fromcache = set() + self.willparse = set() + for mc in self.cooker.multiconfigs: + for filename in self.mcfilelist[mc]: + appends = self.cooker.collections[mc].get_file_appends(filename) + if not self.bb_caches[mc].cacheValid(filename, appends): + self.willparse.add((mc, self.bb_caches[mc], filename, appends)) + else: + self.fromcache.add((mc, self.bb_caches[mc], filename, appends)) + + self.total = len(self.fromcache) + len(self.willparse) + self.toparse = len(self.willparse) + self.progress_chunk = int(max(self.toparse / 100, 1)) + + self.num_processes = min(int(self.cfgdata.getVar("BB_NUMBER_PARSE_THREADS") or + multiprocessing.cpu_count()), self.toparse) + + self.start() + self.haveshutdown = False + self.syncthread = None + + def start(self): + self.results = self.load_cached() + self.processes = [] + if self.toparse: + bb.event.fire(bb.event.ParseStarted(self.toparse), self.cfgdata) + + self.parser_quit = multiprocessing.Queue(maxsize=self.num_processes) + self.result_queue = multiprocessing.Queue() + + def chunkify(lst,n): + return [lst[i::n] for i in range(n)] + self.jobs = chunkify(list(self.willparse), self.num_processes) + + for i in range(0, self.num_processes): + parser = Parser(self.jobs[i], self.result_queue, self.parser_quit, self.cooker.configuration.profile) + parser.start() + self.process_names.append(parser.name) + self.processes.append(parser) + + self.results = itertools.chain(self.results, self.parse_generator()) + + def shutdown(self, clean=True): + if not self.toparse: + return + if self.haveshutdown: + return + self.haveshutdown = True + + if clean: + event = bb.event.ParseCompleted(self.cached, self.parsed, + self.skipped, self.masked, + self.virtuals, self.error, + self.total) + + bb.event.fire(event, self.cfgdata) + else: + bb.error("Parsing halted due to errors, see error messages above") + + for process in self.processes: + self.parser_quit.put(None) + + # Cleanup the queue before call process.join(), otherwise there might be + # deadlocks. + while True: + try: + self.result_queue.get(timeout=0.25) + except queue.Empty: + break + + for process in self.processes: + process.join(0.5) + + for process in self.processes: + if process.exitcode is None: + os.kill(process.pid, signal.SIGINT) + + for process in self.processes: + process.join(0.5) + + for process in self.processes: + if process.exitcode is None: + process.terminate() + + for process in self.processes: + process.join() + # Added in 3.7, cleans up zombies + if hasattr(process, "close"): + process.close() + + self.parser_quit.close() + # Allow data left in the cancel queue to be discarded + self.parser_quit.cancel_join_thread() + + def sync_caches(): + for c in self.bb_caches.values(): + c.sync() + + sync = threading.Thread(target=sync_caches, name="SyncThread") + self.syncthread = sync + sync.start() + bb.codeparser.parser_cache_savemerge() + bb.fetch.fetcher_parse_done() + if self.cooker.configuration.profile: + profiles = [] + for i in self.process_names: + logfile = "profile-parse-%s.log" % i + if os.path.exists(logfile): + profiles.append(logfile) + + pout = "profile-parse.log.processed" + bb.utils.process_profilelog(profiles, pout = pout) + print("Processed parsing statistics saved to %s" % (pout)) + + def final_cleanup(self): + if self.syncthread: + self.syncthread.join() + + def load_cached(self): + for mc, cache, filename, appends in self.fromcache: + cached, infos = cache.load(filename, appends) + yield not cached, mc, infos + + def parse_generator(self): + empty = False + while self.processes or not empty: + for process in self.processes.copy(): + if not process.is_alive(): + process.join() + self.processes.remove(process) + + if self.parsed >= self.toparse: + break + + try: + result = self.result_queue.get(timeout=0.25) + except queue.Empty: + empty = True + yield None, None, None + else: + empty = False + yield result + + if not (self.parsed >= self.toparse): + raise bb.parse.ParseError("Not all recipes parsed, parser thread killed/died? Exiting.", None) + + + def parse_next(self): + result = [] + parsed = None + try: + parsed, mc, result = next(self.results) + if isinstance(result, BaseException): + # Turn exceptions back into exceptions + raise result + if parsed is None: + # Timeout, loop back through the main loop + return True + + except StopIteration: + self.shutdown() + return False + except bb.BBHandledException as exc: + self.error += 1 + logger.debug('Failed to parse recipe: %s' % exc.recipe) + self.shutdown(clean=False) + return False + except ParsingFailure as exc: + self.error += 1 + logger.error('Unable to parse %s: %s' % + (exc.recipe, bb.exceptions.to_string(exc.realexception))) + self.shutdown(clean=False) + return False + except bb.parse.ParseError as exc: + self.error += 1 + logger.error(str(exc)) + self.shutdown(clean=False) + return False + except bb.data_smart.ExpansionError as exc: + self.error += 1 + bbdir = os.path.dirname(__file__) + os.sep + etype, value, _ = sys.exc_info() + tb = list(itertools.dropwhile(lambda e: e.filename.startswith(bbdir), exc.traceback)) + logger.error('ExpansionError during parsing %s', value.recipe, + exc_info=(etype, value, tb)) + self.shutdown(clean=False) + return False + except Exception as exc: + self.error += 1 + etype, value, tb = sys.exc_info() + if hasattr(value, "recipe"): + logger.error('Unable to parse %s' % value.recipe, + exc_info=(etype, value, exc.traceback)) + else: + # Most likely, an exception occurred during raising an exception + import traceback + logger.error('Exception during parse: %s' % traceback.format_exc()) + self.shutdown(clean=False) + return False + + self.current += 1 + self.virtuals += len(result) + if parsed: + self.parsed += 1 + if self.parsed % self.progress_chunk == 0: + bb.event.fire(bb.event.ParseProgress(self.parsed, self.toparse), + self.cfgdata) + else: + self.cached += 1 + + for virtualfn, info_array in result: + if info_array[0].skipped: + self.skipped += 1 + self.cooker.skiplist[virtualfn] = SkippedPackage(info_array[0]) + self.bb_caches[mc].add_info(virtualfn, info_array, self.cooker.recipecaches[mc], + parsed=parsed, watcher = self.cooker.add_filewatch) + return True + + def reparse(self, filename): + to_reparse = set() + for mc in self.cooker.multiconfigs: + to_reparse.add((mc, filename, self.cooker.collections[mc].get_file_appends(filename))) + + for mc, filename, appends in to_reparse: + infos = self.bb_caches[mc].parse(filename, appends) + for vfn, info_array in infos: + self.cooker.recipecaches[mc].add_from_recipeinfo(vfn, info_array) diff --git a/poky/bitbake/lib/bb/cookerdata.py b/poky/bitbake/lib/bb/cookerdata.py new file mode 100644 index 0000000..ec3741c --- /dev/null +++ b/poky/bitbake/lib/bb/cookerdata.py @@ -0,0 +1,454 @@ +# +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer +# Copyright (C) 2005 Holger Hans Peter Freyther +# Copyright (C) 2005 ROAD GmbH +# Copyright (C) 2006 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import logging +import os +import re +import sys +import hashlib +from functools import wraps +import bb +from bb import data +import bb.parse + +logger = logging.getLogger("BitBake") +parselog = logging.getLogger("BitBake.Parsing") + +class ConfigParameters(object): + def __init__(self, argv=None): + self.options, targets = self.parseCommandLine(argv or sys.argv) + self.environment = self.parseEnvironment() + + self.options.pkgs_to_build = targets or [] + + for key, val in self.options.__dict__.items(): + setattr(self, key, val) + + def parseCommandLine(self, argv=sys.argv): + raise Exception("Caller must implement commandline option parsing") + + def parseEnvironment(self): + return os.environ.copy() + + def updateFromServer(self, server): + if not self.options.cmd: + defaulttask, error = server.runCommand(["getVariable", "BB_DEFAULT_TASK"]) + if error: + raise Exception("Unable to get the value of BB_DEFAULT_TASK from the server: %s" % error) + self.options.cmd = defaulttask or "build" + _, error = server.runCommand(["setConfig", "cmd", self.options.cmd]) + if error: + raise Exception("Unable to set configuration option 'cmd' on the server: %s" % error) + + if not self.options.pkgs_to_build: + bbpkgs, error = server.runCommand(["getVariable", "BBTARGETS"]) + if error: + raise Exception("Unable to get the value of BBTARGETS from the server: %s" % error) + if bbpkgs: + self.options.pkgs_to_build.extend(bbpkgs.split()) + + def updateToServer(self, server, environment): + options = {} + for o in ["halt", "force", "invalidate_stamp", + "dry_run", "dump_signatures", + "extra_assume_provided", "profile", + "prefile", "postfile", "server_timeout", + "nosetscene", "setsceneonly", "skipsetscene", + "runall", "runonly", "writeeventlog"]: + options[o] = getattr(self.options, o) + + options['build_verbose_shell'] = self.options.verbose + options['build_verbose_stdout'] = self.options.verbose + options['default_loglevel'] = bb.msg.loggerDefaultLogLevel + options['debug_domains'] = bb.msg.loggerDefaultDomains + + ret, error = server.runCommand(["updateConfig", options, environment, sys.argv]) + if error: + raise Exception("Unable to update the server configuration with local parameters: %s" % error) + + def parseActions(self): + # Parse any commandline into actions + action = {'action':None, 'msg':None} + if self.options.show_environment: + if 'world' in self.options.pkgs_to_build: + action['msg'] = "'world' is not a valid target for --environment." + elif 'universe' in self.options.pkgs_to_build: + action['msg'] = "'universe' is not a valid target for --environment." + elif len(self.options.pkgs_to_build) > 1: + action['msg'] = "Only one target can be used with the --environment option." + elif self.options.buildfile and len(self.options.pkgs_to_build) > 0: + action['msg'] = "No target should be used with the --environment and --buildfile options." + elif self.options.pkgs_to_build: + action['action'] = ["showEnvironmentTarget", self.options.pkgs_to_build] + else: + action['action'] = ["showEnvironment", self.options.buildfile] + elif self.options.buildfile is not None: + action['action'] = ["buildFile", self.options.buildfile, self.options.cmd] + elif self.options.revisions_changed: + action['action'] = ["compareRevisions"] + elif self.options.show_versions: + action['action'] = ["showVersions"] + elif self.options.parse_only: + action['action'] = ["parseFiles"] + elif self.options.dot_graph: + if self.options.pkgs_to_build: + action['action'] = ["generateDotGraph", self.options.pkgs_to_build, self.options.cmd] + else: + action['msg'] = "Please specify a package name for dependency graph generation." + else: + if self.options.pkgs_to_build: + action['action'] = ["buildTargets", self.options.pkgs_to_build, self.options.cmd] + else: + #action['msg'] = "Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information." + action = None + self.options.initialaction = action + return action + +class CookerConfiguration(object): + """ + Manages build options and configurations for one run + """ + + def __init__(self): + self.debug_domains = bb.msg.loggerDefaultDomains + self.default_loglevel = bb.msg.loggerDefaultLogLevel + self.extra_assume_provided = [] + self.prefile = [] + self.postfile = [] + self.cmd = None + self.halt = True + self.force = False + self.profile = False + self.nosetscene = False + self.setsceneonly = False + self.skipsetscene = False + self.invalidate_stamp = False + self.dump_signatures = [] + self.build_verbose_shell = False + self.build_verbose_stdout = False + self.dry_run = False + self.tracking = False + self.writeeventlog = False + self.limited_deps = False + self.runall = [] + self.runonly = [] + + self.env = {} + + def __getstate__(self): + state = {} + for key in self.__dict__.keys(): + state[key] = getattr(self, key) + return state + + def __setstate__(self,state): + for k in state: + setattr(self, k, state[k]) + + +def catch_parse_error(func): + """Exception handling bits for our parsing""" + @wraps(func) + def wrapped(fn, *args): + try: + return func(fn, *args) + except Exception as exc: + import traceback + + bbdir = os.path.dirname(__file__) + os.sep + exc_class, exc, tb = sys.exc_info() + for tb in iter(lambda: tb.tb_next, None): + # Skip frames in bitbake itself, we only want the metadata + fn, _, _, _ = traceback.extract_tb(tb, 1)[0] + if not fn.startswith(bbdir): + break + parselog.critical("Unable to parse %s" % fn, exc_info=(exc_class, exc, tb)) + raise bb.BBHandledException() + return wrapped + +@catch_parse_error +def parse_config_file(fn, data, include=True): + return bb.parse.handle(fn, data, include) + +@catch_parse_error +def _inherit(bbclass, data): + bb.parse.BBHandler.inherit(bbclass, "configuration INHERITs", 0, data) + return data + +def findConfigFile(configfile, data): + search = [] + bbpath = data.getVar("BBPATH") + if bbpath: + for i in bbpath.split(":"): + search.append(os.path.join(i, "conf", configfile)) + path = os.getcwd() + while path != "/": + search.append(os.path.join(path, "conf", configfile)) + path, _ = os.path.split(path) + + for i in search: + if os.path.exists(i): + return i + + return None + +# +# We search for a conf/bblayers.conf under an entry in BBPATH or in cwd working +# up to /. If that fails, bitbake would fall back to cwd. +# + +def findTopdir(): + d = bb.data.init() + bbpath = None + if 'BBPATH' in os.environ: + bbpath = os.environ['BBPATH'] + d.setVar('BBPATH', bbpath) + + layerconf = findConfigFile("bblayers.conf", d) + if layerconf: + return os.path.dirname(os.path.dirname(layerconf)) + + return os.path.abspath(os.getcwd()) + +class CookerDataBuilder(object): + + def __init__(self, cookercfg, worker = False): + + self.prefiles = cookercfg.prefile + self.postfiles = cookercfg.postfile + self.tracking = cookercfg.tracking + + bb.utils.set_context(bb.utils.clean_context()) + bb.event.set_class_handlers(bb.event.clean_class_handlers()) + self.basedata = bb.data.init() + if self.tracking: + self.basedata.enableTracking() + + # Keep a datastore of the initial environment variables and their + # values from when BitBake was launched to enable child processes + # to use environment variables which have been cleaned from the + # BitBake processes env + self.savedenv = bb.data.init() + for k in cookercfg.env: + self.savedenv.setVar(k, cookercfg.env[k]) + if k in bb.data_smart.bitbake_renamed_vars: + bb.error('Variable %s from the shell environment has been renamed to %s' % (k, bb.data_smart.bitbake_renamed_vars[k])) + bb.fatal("Exiting to allow enviroment variables to be corrected") + + filtered_keys = bb.utils.approved_variables() + bb.data.inheritFromOS(self.basedata, self.savedenv, filtered_keys) + self.basedata.setVar("BB_ORIGENV", self.savedenv) + + if worker: + self.basedata.setVar("BB_WORKERCONTEXT", "1") + + self.data = self.basedata + self.mcdata = {} + + def parseBaseConfiguration(self, worker=False): + data_hash = hashlib.sha256() + try: + self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) + + if self.data.getVar("BB_WORKERCONTEXT", False) is None and not worker: + bb.fetch.fetcher_init(self.data) + bb.parse.init_parser(self.data) + bb.codeparser.parser_cache_init(self.data) + + bb.event.fire(bb.event.ConfigParsed(), self.data) + + reparse_cnt = 0 + while self.data.getVar("BB_INVALIDCONF", False) is True: + if reparse_cnt > 20: + logger.error("Configuration has been re-parsed over 20 times, " + "breaking out of the loop...") + raise Exception("Too deep config re-parse loop. Check locations where " + "BB_INVALIDCONF is being set (ConfigParsed event handlers)") + self.data.setVar("BB_INVALIDCONF", False) + self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) + reparse_cnt += 1 + bb.event.fire(bb.event.ConfigParsed(), self.data) + + bb.parse.init_parser(self.data) + data_hash.update(self.data.get_hash().encode('utf-8')) + self.mcdata[''] = self.data + + multiconfig = (self.data.getVar("BBMULTICONFIG") or "").split() + for config in multiconfig: + if config[0].isdigit(): + bb.fatal("Multiconfig name '%s' is invalid as multiconfigs cannot start with a digit" % config) + mcdata = self.parseConfigurationFiles(self.prefiles, self.postfiles, config) + bb.event.fire(bb.event.ConfigParsed(), mcdata) + self.mcdata[config] = mcdata + data_hash.update(mcdata.get_hash().encode('utf-8')) + if multiconfig: + bb.event.fire(bb.event.MultiConfigParsed(self.mcdata), self.data) + + self.data_hash = data_hash.hexdigest() + except bb.data_smart.ExpansionError as e: + logger.error(str(e)) + raise bb.BBHandledException() + + + # Handle obsolete variable names + d = self.data + renamedvars = d.getVarFlags('BB_RENAMED_VARIABLES') or {} + renamedvars.update(bb.data_smart.bitbake_renamed_vars) + issues = False + for v in renamedvars: + if d.getVar(v) != None or d.hasOverrides(v): + issues = True + loginfo = {} + history = d.varhistory.get_variable_refs(v) + for h in history: + for line in history[h]: + loginfo = {'file' : h, 'line' : line} + bb.data.data_smart._print_rename_error(v, loginfo, renamedvars) + if not history: + bb.data.data_smart._print_rename_error(v, loginfo, renamedvars) + if issues: + raise bb.BBHandledException() + + # Create a copy so we can reset at a later date when UIs disconnect + self.origdata = self.data + self.data = bb.data.createCopy(self.origdata) + self.mcdata[''] = self.data + + def reset(self): + # We may not have run parseBaseConfiguration() yet + if not hasattr(self, 'origdata'): + return + self.data = bb.data.createCopy(self.origdata) + self.mcdata[''] = self.data + + def _findLayerConf(self, data): + return findConfigFile("bblayers.conf", data) + + def parseConfigurationFiles(self, prefiles, postfiles, mc = "default"): + data = bb.data.createCopy(self.basedata) + data.setVar("BB_CURRENT_MC", mc) + + # Parse files for loading *before* bitbake.conf and any includes + for f in prefiles: + data = parse_config_file(f, data) + + layerconf = self._findLayerConf(data) + if layerconf: + parselog.debug(2, "Found bblayers.conf (%s)", layerconf) + # By definition bblayers.conf is in conf/ of TOPDIR. + # We may have been called with cwd somewhere else so reset TOPDIR + data.setVar("TOPDIR", os.path.dirname(os.path.dirname(layerconf))) + data = parse_config_file(layerconf, data) + + layers = (data.getVar('BBLAYERS') or "").split() + broken_layers = [] + + if not layers: + bb.fatal("The bblayers.conf file doesn't contain any BBLAYERS definition") + + data = bb.data.createCopy(data) + approved = bb.utils.approved_variables() + + # Check whether present layer directories exist + for layer in layers: + if not os.path.isdir(layer): + broken_layers.append(layer) + + if broken_layers: + parselog.critical("The following layer directories do not exist:") + for layer in broken_layers: + parselog.critical(" %s", layer) + parselog.critical("Please check BBLAYERS in %s" % (layerconf)) + raise bb.BBHandledException() + + for layer in layers: + parselog.debug(2, "Adding layer %s", layer) + if 'HOME' in approved and '~' in layer: + layer = os.path.expanduser(layer) + if layer.endswith('/'): + layer = layer.rstrip('/') + data.setVar('LAYERDIR', layer) + data.setVar('LAYERDIR_RE', re.escape(layer)) + data = parse_config_file(os.path.join(layer, "conf", "layer.conf"), data) + data.expandVarref('LAYERDIR') + data.expandVarref('LAYERDIR_RE') + + data.delVar('LAYERDIR_RE') + data.delVar('LAYERDIR') + + bbfiles_dynamic = (data.getVar('BBFILES_DYNAMIC') or "").split() + collections = (data.getVar('BBFILE_COLLECTIONS') or "").split() + invalid = [] + for entry in bbfiles_dynamic: + parts = entry.split(":", 1) + if len(parts) != 2: + invalid.append(entry) + continue + l, f = parts + invert = l[0] == "!" + if invert: + l = l[1:] + if (l in collections and not invert) or (l not in collections and invert): + data.appendVar("BBFILES", " " + f) + if invalid: + bb.fatal("BBFILES_DYNAMIC entries must be of the form {!}:, not:\n %s" % "\n ".join(invalid)) + + layerseries = set((data.getVar("LAYERSERIES_CORENAMES") or "").split()) + collections_tmp = collections[:] + for c in collections: + collections_tmp.remove(c) + if c in collections_tmp: + bb.fatal("Found duplicated BBFILE_COLLECTIONS '%s', check bblayers.conf or layer.conf to fix it." % c) + compat = set((data.getVar("LAYERSERIES_COMPAT_%s" % c) or "").split()) + if compat and not layerseries: + bb.fatal("No core layer found to work with layer '%s'. Missing entry in bblayers.conf?" % c) + if compat and not (compat & layerseries): + bb.fatal("Layer %s is not compatible with the core layer which only supports these series: %s (layer is compatible with %s)" + % (c, " ".join(layerseries), " ".join(compat))) + elif not compat and not data.getVar("BB_WORKERCONTEXT"): + bb.warn("Layer %s should set LAYERSERIES_COMPAT_%s in its conf/layer.conf file to list the core layer names it is compatible with." % (c, c)) + + if not data.getVar("BBPATH"): + msg = "The BBPATH variable is not set" + if not layerconf: + msg += (" and bitbake did not find a conf/bblayers.conf file in" + " the expected location.\nMaybe you accidentally" + " invoked bitbake from the wrong directory?") + bb.fatal(msg) + + if not data.getVar("TOPDIR"): + data.setVar("TOPDIR", os.path.abspath(os.getcwd())) + + data = parse_config_file(os.path.join("conf", "bitbake.conf"), data) + + # Parse files for loading *after* bitbake.conf and any includes + for p in postfiles: + data = parse_config_file(p, data) + + # Handle any INHERITs and inherit the base class + bbclasses = ["base"] + (data.getVar('INHERIT') or "").split() + for bbclass in bbclasses: + data = _inherit(bbclass, data) + + # Normally we only register event handlers at the end of parsing .bb files + # We register any handlers we've found so far here... + for var in data.getVar('__BBHANDLERS', False) or []: + handlerfn = data.getVarFlag(var, "filename", False) + if not handlerfn: + parselog.critical("Undefined event handler function '%s'" % var) + raise bb.BBHandledException() + handlerln = int(data.getVarFlag(var, "lineno", False)) + bb.event.register(var, data.getVar(var, False), (data.getVarFlag(var, "eventmask") or "").split(), handlerfn, handlerln, data) + + data.setVar('BBINCLUDED',bb.parse.get_file_depends(data)) + + return data + diff --git a/poky/bitbake/lib/bb/daemonize.py b/poky/bitbake/lib/bb/daemonize.py new file mode 100644 index 0000000..7689404 --- /dev/null +++ b/poky/bitbake/lib/bb/daemonize.py @@ -0,0 +1,101 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +""" +Python Daemonizing helper + +Originally based on code Copyright (C) 2005 Chad J. Schroeder but now heavily modified +to allow a function to be daemonized and return for bitbake use by Richard Purdie +""" + +import os +import sys +import io +import traceback + +import bb + +def createDaemon(function, logfile): + """ + Detach a process from the controlling terminal and run it in the + background as a daemon, returning control to the caller. + """ + + # Ensure stdout/stderror are flushed before forking to avoid duplicate output + sys.stdout.flush() + sys.stderr.flush() + + try: + # Fork a child process so the parent can exit. This returns control to + # the command-line or shell. It also guarantees that the child will not + # be a process group leader, since the child receives a new process ID + # and inherits the parent's process group ID. This step is required + # to insure that the next call to os.setsid is successful. + pid = os.fork() + except OSError as e: + raise Exception("%s [%d]" % (e.strerror, e.errno)) + + if (pid == 0): # The first child. + # To become the session leader of this new session and the process group + # leader of the new process group, we call os.setsid(). The process is + # also guaranteed not to have a controlling terminal. + os.setsid() + try: + # Fork a second child and exit immediately to prevent zombies. This + # causes the second child process to be orphaned, making the init + # process responsible for its cleanup. And, since the first child is + # a session leader without a controlling terminal, it's possible for + # it to acquire one by opening a terminal in the future (System V- + # based systems). This second fork guarantees that the child is no + # longer a session leader, preventing the daemon from ever acquiring + # a controlling terminal. + pid = os.fork() # Fork a second child. + except OSError as e: + raise Exception("%s [%d]" % (e.strerror, e.errno)) + + if (pid != 0): + # Parent (the first child) of the second child. + # exit() or _exit()? + # _exit is like exit(), but it doesn't call any functions registered + # with atexit (and on_exit) or any registered signal handlers. It also + # closes any open file descriptors, but doesn't flush any buffered output. + # Using exit() may cause all any temporary files to be unexpectedly + # removed. It's therefore recommended that child branches of a fork() + # and the parent branch(es) of a daemon use _exit(). + os._exit(0) + else: + os.waitpid(pid, 0) + return + + # The second child. + + # Replace standard fds with our own + with open('/dev/null', 'r') as si: + os.dup2(si.fileno(), sys.stdin.fileno()) + + with open(logfile, 'a+') as so: + try: + os.dup2(so.fileno(), sys.stdout.fileno()) + os.dup2(so.fileno(), sys.stderr.fileno()) + except io.UnsupportedOperation: + sys.stdout = so + + # Have stdout and stderr be the same so log output matches chronologically + # and there aren't two separate buffers + sys.stderr = sys.stdout + + try: + function() + except Exception as e: + traceback.print_exc() + finally: + bb.event.print_ui_queue() + # os._exit() doesn't flush open files like os.exit() does. Manually flush + # stdout and stderr so that any logging output will be seen, particularly + # exception tracebacks. + sys.stdout.flush() + sys.stderr.flush() + os._exit(0) diff --git a/poky/bitbake/lib/bb/data.py b/poky/bitbake/lib/bb/data.py new file mode 100644 index 0000000..c09d9b0 --- /dev/null +++ b/poky/bitbake/lib/bb/data.py @@ -0,0 +1,448 @@ +""" +BitBake 'Data' implementations + +Functions for interacting with the data structure used by the +BitBake build tools. + +The expandKeys and update_data are the most expensive +operations. At night the cookie monster came by and +suggested 'give me cookies on setting the variables and +things will work out'. Taking this suggestion into account +applying the skills from the not yet passed 'Entwurf und +Analyse von Algorithmen' lecture and the cookie +monster seems to be right. We will track setVar more carefully +to have faster update_data and expandKeys operations. + +This is a trade-off between speed and memory again but +the speed is more critical here. +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2005 Holger Hans Peter Freyther +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import sys, os, re +import hashlib +if sys.argv[0][-5:] == "pydoc": + path = os.path.dirname(os.path.dirname(sys.argv[1])) +else: + path = os.path.dirname(os.path.dirname(sys.argv[0])) +sys.path.insert(0, path) +from itertools import groupby + +from bb import data_smart +from bb import codeparser +import bb + +logger = data_smart.logger +_dict_type = data_smart.DataSmart + +def init(): + """Return a new object representing the Bitbake data""" + return _dict_type() + +def init_db(parent = None): + """Return a new object representing the Bitbake data, + optionally based on an existing object""" + if parent is not None: + return parent.createCopy() + else: + return _dict_type() + +def createCopy(source): + """Link the source set to the destination + If one does not find the value in the destination set, + search will go on to the source set to get the value. + Value from source are copy-on-write. i.e. any try to + modify one of them will end up putting the modified value + in the destination set. + """ + return source.createCopy() + +def initVar(var, d): + """Non-destructive var init for data structure""" + d.initVar(var) + +def keys(d): + """Return a list of keys in d""" + return d.keys() + + +__expand_var_regexp__ = re.compile(r"\${[^{}]+}") +__expand_python_regexp__ = re.compile(r"\${@.+?}") + +def expand(s, d, varname = None): + """Variable expansion using the data store""" + return d.expand(s, varname) + +def expandKeys(alterdata, readdata = None): + if readdata is None: + readdata = alterdata + + todolist = {} + for key in alterdata: + if not '${' in key: + continue + + ekey = expand(key, readdata) + if key == ekey: + continue + todolist[key] = ekey + + # These two for loops are split for performance to maximise the + # usefulness of the expand cache + for key in sorted(todolist): + ekey = todolist[key] + newval = alterdata.getVar(ekey, False) + if newval is not None: + val = alterdata.getVar(key, False) + if val is not None: + bb.warn("Variable key %s (%s) replaces original key %s (%s)." % (key, val, ekey, newval)) + alterdata.renameVar(key, ekey) + +def inheritFromOS(d, savedenv, permitted): + """Inherit variables from the initial environment.""" + exportlist = bb.utils.preserved_envvars_exported() + for s in savedenv.keys(): + if s in permitted: + try: + d.setVar(s, savedenv.getVar(s), op = 'from env') + if s in exportlist: + d.setVarFlag(s, "export", True, op = 'auto env export') + except TypeError: + pass + +def emit_var(var, o=sys.__stdout__, d = init(), all=False): + """Emit a variable to be sourced by a shell.""" + func = d.getVarFlag(var, "func", False) + if d.getVarFlag(var, 'python', False) and func: + return False + + export = d.getVarFlag(var, "export", False) + unexport = d.getVarFlag(var, "unexport", False) + if not all and not export and not unexport and not func: + return False + + try: + if all: + oval = d.getVar(var, False) + val = d.getVar(var) + except (KeyboardInterrupt): + raise + except Exception as exc: + o.write('# expansion of %s threw %s: %s\n' % (var, exc.__class__.__name__, str(exc))) + return False + + if all: + d.varhistory.emit(var, oval, val, o, d) + + if (var.find("-") != -1 or var.find(".") != -1 or var.find('{') != -1 or var.find('}') != -1 or var.find('+') != -1) and not all: + return False + + varExpanded = d.expand(var) + + if unexport: + o.write('unset %s\n' % varExpanded) + return False + + if val is None: + return False + + val = str(val) + + if varExpanded.startswith("BASH_FUNC_"): + varExpanded = varExpanded[10:-2] + val = val[3:] # Strip off "() " + o.write("%s() %s\n" % (varExpanded, val)) + o.write("export -f %s\n" % (varExpanded)) + return True + + if func: + # Write a comment indicating where the shell function came from (line number and filename) to make it easier + # for the user to diagnose task failures. This comment is also used by build.py to determine the metadata + # location of shell functions. + o.write("# line: {0}, file: {1}\n".format( + d.getVarFlag(var, "lineno", False), + d.getVarFlag(var, "filename", False))) + # NOTE: should probably check for unbalanced {} within the var + val = val.rstrip('\n') + o.write("%s() {\n%s\n}\n" % (varExpanded, val)) + return 1 + + if export: + o.write('export ') + + # if we're going to output this within doublequotes, + # to a shell, we need to escape the quotes in the var + alter = re.sub('"', '\\"', val) + alter = re.sub('\n', ' \\\n', alter) + alter = re.sub('\\$', '\\\\$', alter) + o.write('%s="%s"\n' % (varExpanded, alter)) + return False + +def emit_env(o=sys.__stdout__, d = init(), all=False): + """Emits all items in the data store in a format such that it can be sourced by a shell.""" + + isfunc = lambda key: bool(d.getVarFlag(key, "func", False)) + keys = sorted((key for key in d.keys() if not key.startswith("__")), key=isfunc) + grouped = groupby(keys, isfunc) + for isfunc, keys in grouped: + for key in sorted(keys): + emit_var(key, o, d, all and not isfunc) and o.write('\n') + +def exported_keys(d): + return (key for key in d.keys() if not key.startswith('__') and + d.getVarFlag(key, 'export', False) and + not d.getVarFlag(key, 'unexport', False)) + +def exported_vars(d): + k = list(exported_keys(d)) + for key in k: + try: + value = d.getVar(key) + except Exception as err: + bb.warn("%s: Unable to export ${%s}: %s" % (d.getVar("FILE"), key, err)) + continue + + if value is not None: + yield key, str(value) + +def emit_func(func, o=sys.__stdout__, d = init()): + """Emits all items in the data store in a format such that it can be sourced by a shell.""" + + keys = (key for key in d.keys() if not key.startswith("__") and not d.getVarFlag(key, "func", False)) + for key in sorted(keys): + emit_var(key, o, d, False) + + o.write('\n') + emit_var(func, o, d, False) and o.write('\n') + newdeps = bb.codeparser.ShellParser(func, logger).parse_shell(d.getVar(func)) + newdeps |= set((d.getVarFlag(func, "vardeps") or "").split()) + seen = set() + while newdeps: + deps = newdeps + seen |= deps + newdeps = set() + for dep in sorted(deps): + if d.getVarFlag(dep, "func", False) and not d.getVarFlag(dep, "python", False): + emit_var(dep, o, d, False) and o.write('\n') + newdeps |= bb.codeparser.ShellParser(dep, logger).parse_shell(d.getVar(dep)) + newdeps |= set((d.getVarFlag(dep, "vardeps") or "").split()) + newdeps -= seen + +_functionfmt = """ +def {function}(d): +{body}""" + +def emit_func_python(func, o=sys.__stdout__, d = init()): + """Emits all items in the data store in a format such that it can be sourced by a shell.""" + + def write_func(func, o, call = False): + body = d.getVar(func, False) + if not body.startswith("def"): + body = _functionfmt.format(function=func, body=body) + + o.write(body.strip() + "\n\n") + if call: + o.write(func + "(d)" + "\n\n") + + write_func(func, o, True) + pp = bb.codeparser.PythonParser(func, logger) + pp.parse_python(d.getVar(func, False)) + newdeps = pp.execs + newdeps |= set((d.getVarFlag(func, "vardeps") or "").split()) + seen = set() + while newdeps: + deps = newdeps + seen |= deps + newdeps = set() + for dep in deps: + if d.getVarFlag(dep, "func", False) and d.getVarFlag(dep, "python", False): + write_func(dep, o) + pp = bb.codeparser.PythonParser(dep, logger) + pp.parse_python(d.getVar(dep, False)) + newdeps |= pp.execs + newdeps |= set((d.getVarFlag(dep, "vardeps") or "").split()) + newdeps -= seen + +def update_data(d): + """Performs final steps upon the datastore, including application of overrides""" + d.finalize(parent = True) + +def build_dependencies(key, keys, shelldeps, varflagsexcl, ignored_vars, d): + deps = set() + try: + if key[-1] == ']': + vf = key[:-1].split('[') + if vf[1] == "vardepvalueexclude": + return deps, "" + value, parser = d.getVarFlag(vf[0], vf[1], False, retparser=True) + deps |= parser.references + deps = deps | (keys & parser.execs) + return deps, value + varflags = d.getVarFlags(key, ["vardeps", "vardepvalue", "vardepsexclude", "exports", "postfuncs", "prefuncs", "lineno", "filename"]) or {} + vardeps = varflags.get("vardeps") + exclusions = varflags.get("vardepsexclude", "").split() + + def handle_contains(value, contains, exclusions, d): + newvalue = [] + if value: + newvalue.append(str(value)) + for k in sorted(contains): + if k in exclusions or k in ignored_vars: + continue + l = (d.getVar(k) or "").split() + for item in sorted(contains[k]): + for word in item.split(): + if not word in l: + newvalue.append("\n%s{%s} = Unset" % (k, item)) + break + else: + newvalue.append("\n%s{%s} = Set" % (k, item)) + return "".join(newvalue) + + def handle_remove(value, deps, removes, d): + for r in sorted(removes): + r2 = d.expandWithRefs(r, None) + value += "\n_remove of %s" % r + deps |= r2.references + deps = deps | (keys & r2.execs) + return value + + if "vardepvalue" in varflags: + value = varflags.get("vardepvalue") + elif varflags.get("func"): + if varflags.get("python"): + value = d.getVarFlag(key, "_content", False) + parser = bb.codeparser.PythonParser(key, logger) + parser.parse_python(value, filename=varflags.get("filename"), lineno=varflags.get("lineno")) + deps = deps | parser.references + deps = deps | (keys & parser.execs) + value = handle_contains(value, parser.contains, exclusions, d) + else: + value, parsedvar = d.getVarFlag(key, "_content", False, retparser=True) + parser = bb.codeparser.ShellParser(key, logger) + parser.parse_shell(parsedvar.value) + deps = deps | shelldeps + deps = deps | parsedvar.references + deps = deps | (keys & parser.execs) | (keys & parsedvar.execs) + value = handle_contains(value, parsedvar.contains, exclusions, d) + if hasattr(parsedvar, "removes"): + value = handle_remove(value, deps, parsedvar.removes, d) + if vardeps is None: + parser.log.flush() + if "prefuncs" in varflags: + deps = deps | set(varflags["prefuncs"].split()) + if "postfuncs" in varflags: + deps = deps | set(varflags["postfuncs"].split()) + if "exports" in varflags: + deps = deps | set(varflags["exports"].split()) + else: + value, parser = d.getVarFlag(key, "_content", False, retparser=True) + deps |= parser.references + deps = deps | (keys & parser.execs) + value = handle_contains(value, parser.contains, exclusions, d) + if hasattr(parser, "removes"): + value = handle_remove(value, deps, parser.removes, d) + + if "vardepvalueexclude" in varflags: + exclude = varflags.get("vardepvalueexclude") + for excl in exclude.split('|'): + if excl: + value = value.replace(excl, '') + + # Add varflags, assuming an exclusion list is set + if varflagsexcl: + varfdeps = [] + for f in varflags: + if f not in varflagsexcl: + varfdeps.append('%s[%s]' % (key, f)) + if varfdeps: + deps |= set(varfdeps) + + deps |= set((vardeps or "").split()) + deps -= set(exclusions) + except bb.parse.SkipRecipe: + raise + except Exception as e: + bb.warn("Exception during build_dependencies for %s" % key) + raise + return deps, value + #bb.note("Variable %s references %s and calls %s" % (key, str(deps), str(execs))) + #d.setVarFlag(key, "vardeps", deps) + +def generate_dependencies(d, ignored_vars): + + keys = set(key for key in d if not key.startswith("__")) + shelldeps = set(key for key in d.getVar("__exportlist", False) if d.getVarFlag(key, "export", False) and not d.getVarFlag(key, "unexport", False)) + varflagsexcl = d.getVar('BB_SIGNATURE_EXCLUDE_FLAGS') + + deps = {} + values = {} + + tasklist = d.getVar('__BBTASKS', False) or [] + for task in tasklist: + deps[task], values[task] = build_dependencies(task, keys, shelldeps, varflagsexcl, ignored_vars, d) + newdeps = deps[task] + seen = set() + while newdeps: + nextdeps = newdeps - ignored_vars + seen |= nextdeps + newdeps = set() + for dep in nextdeps: + if dep not in deps: + deps[dep], values[dep] = build_dependencies(dep, keys, shelldeps, varflagsexcl, ignored_vars, d) + newdeps |= deps[dep] + newdeps -= seen + #print "For %s: %s" % (task, str(deps[task])) + return tasklist, deps, values + +def generate_dependency_hash(tasklist, gendeps, lookupcache, ignored_vars, fn): + taskdeps = {} + basehash = {} + + for task in tasklist: + data = lookupcache[task] + + if data is None: + bb.error("Task %s from %s seems to be empty?!" % (task, fn)) + data = [] + else: + data = [data] + + gendeps[task] -= ignored_vars + newdeps = gendeps[task] + seen = set() + while newdeps: + nextdeps = newdeps + seen |= nextdeps + newdeps = set() + for dep in nextdeps: + if dep in ignored_vars: + continue + gendeps[dep] -= ignored_vars + newdeps |= gendeps[dep] + newdeps -= seen + + alldeps = sorted(seen) + for dep in alldeps: + data.append(dep) + var = lookupcache[dep] + if var is not None: + data.append(str(var)) + k = fn + ":" + task + basehash[k] = hashlib.sha256("".join(data).encode("utf-8")).hexdigest() + taskdeps[task] = alldeps + + return taskdeps, basehash + +def inherits_class(klass, d): + val = d.getVar('__inherit_cache', False) or [] + needle = os.path.join('classes', '%s.bbclass' % klass) + for v in val: + if v.endswith(needle): + return True + return False diff --git a/poky/bitbake/lib/bb/data_smart.py b/poky/bitbake/lib/bb/data_smart.py new file mode 100644 index 0000000..dd20ca5 --- /dev/null +++ b/poky/bitbake/lib/bb/data_smart.py @@ -0,0 +1,1107 @@ +""" +BitBake Smart Dictionary Implementation + +Functions for interacting with the data structure used by the +BitBake build tools. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2004, 2005 Seb Frankengul +# Copyright (C) 2005, 2006 Holger Hans Peter Freyther +# Copyright (C) 2005 Uli Luckas +# Copyright (C) 2005 ROAD GmbH +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import copy, re, sys, traceback +from collections.abc import MutableMapping +import logging +import hashlib +import bb, bb.codeparser +from bb import utils +from bb.COW import COWDictBase + +logger = logging.getLogger("BitBake.Data") + +__setvar_keyword__ = [":append", ":prepend", ":remove"] +__setvar_regexp__ = re.compile(r'(?P.*?)(?P:append|:prepend|:remove)(:(?P[^A-Z]*))?$') +__expand_var_regexp__ = re.compile(r"\${[a-zA-Z0-9\-_+./~:]+?}") +__expand_python_regexp__ = re.compile(r"\${@.+?}") +__whitespace_split__ = re.compile(r'(\s)') +__override_regexp__ = re.compile(r'[a-z0-9]+') + +bitbake_renamed_vars = { + "BB_ENV_WHITELIST": "BB_ENV_PASSTHROUGH", + "BB_ENV_EXTRAWHITE": "BB_ENV_PASSTHROUGH_ADDITIONS", + "BB_HASHBASE_WHITELIST": "BB_BASEHASH_IGNORE_VARS", + "BB_HASHCONFIG_WHITELIST": "BB_HASHCONFIG_IGNORE_VARS", + "BB_HASHTASK_WHITELIST": "BB_TASKHASH_IGNORE_TASKS", + "BB_SETSCENE_ENFORCE_WHITELIST": "BB_SETSCENE_ENFORCE_IGNORE_TASKS", + "MULTI_PROVIDER_WHITELIST": "BB_MULTI_PROVIDER_ALLOWED", + "BB_STAMP_WHITELIST": "is a deprecated variable and support has been removed", + "BB_STAMP_POLICY": "is a deprecated variable and support has been removed", +} + +def infer_caller_details(loginfo, parent = False, varval = True): + """Save the caller the trouble of specifying everything.""" + # Save effort. + if 'ignore' in loginfo and loginfo['ignore']: + return + # If nothing was provided, mark this as possibly unneeded. + if not loginfo: + loginfo['ignore'] = True + return + # Infer caller's likely values for variable (var) and value (value), + # to reduce clutter in the rest of the code. + above = None + def set_above(): + try: + raise Exception + except Exception: + tb = sys.exc_info()[2] + if parent: + return tb.tb_frame.f_back.f_back.f_back + else: + return tb.tb_frame.f_back.f_back + + if varval and ('variable' not in loginfo or 'detail' not in loginfo): + if not above: + above = set_above() + lcls = above.f_locals.items() + for k, v in lcls: + if k == 'value' and 'detail' not in loginfo: + loginfo['detail'] = v + if k == 'var' and 'variable' not in loginfo: + loginfo['variable'] = v + # Infer file/line/function from traceback + # Don't use traceback.extract_stack() since it fills the line contents which + # we don't need and that hits stat syscalls + if 'file' not in loginfo: + if not above: + above = set_above() + f = above.f_back + line = f.f_lineno + file = f.f_code.co_filename + func = f.f_code.co_name + loginfo['file'] = file + loginfo['line'] = line + if func not in loginfo: + loginfo['func'] = func + +class VariableParse: + def __init__(self, varname, d, val = None): + self.varname = varname + self.d = d + self.value = val + + self.references = set() + self.execs = set() + self.contains = {} + + def var_sub(self, match): + key = match.group()[2:-1] + if self.varname and key: + if self.varname == key: + raise Exception("variable %s references itself!" % self.varname) + var = self.d.getVarFlag(key, "_content") + self.references.add(key) + if var is not None: + return var + else: + return match.group() + + def python_sub(self, match): + if isinstance(match, str): + code = match + else: + code = match.group()[3:-1] + + if self.varname: + varname = 'Var <%s>' % self.varname + else: + varname = '' + codeobj = compile(code.strip(), varname, "eval") + + parser = bb.codeparser.PythonParser(self.varname, logger) + parser.parse_python(code) + if self.varname: + vardeps = self.d.getVarFlag(self.varname, "vardeps") + if vardeps is None: + parser.log.flush() + else: + parser.log.flush() + self.references |= parser.references + self.execs |= parser.execs + + for k in parser.contains: + if k not in self.contains: + self.contains[k] = parser.contains[k].copy() + else: + self.contains[k].update(parser.contains[k]) + value = utils.better_eval(codeobj, DataContext(self.d), {'d' : self.d}) + return str(value) + + +class DataContext(dict): + def __init__(self, metadata, **kwargs): + self.metadata = metadata + dict.__init__(self, **kwargs) + self['d'] = metadata + + def __missing__(self, key): + # Skip commonly accessed invalid variables + if key in ['bb', 'oe', 'int', 'bool', 'time', 'str', 'os']: + raise KeyError(key) + value = self.metadata.getVar(key) + if value is None or self.metadata.getVarFlag(key, 'func', False): + raise KeyError(key) + else: + return value + +class ExpansionError(Exception): + def __init__(self, varname, expression, exception): + self.expression = expression + self.variablename = varname + self.exception = exception + self.varlist = [varname or expression or ""] + if varname: + if expression: + self.msg = "Failure expanding variable %s, expression was %s which triggered exception %s: %s" % (varname, expression, type(exception).__name__, exception) + else: + self.msg = "Failure expanding variable %s: %s: %s" % (varname, type(exception).__name__, exception) + else: + self.msg = "Failure expanding expression %s which triggered exception %s: %s" % (expression, type(exception).__name__, exception) + Exception.__init__(self, self.msg) + self.args = (varname, expression, exception) + + def addVar(self, varname): + if varname: + self.varlist.append(varname) + + def __str__(self): + chain = "\nThe variable dependency chain for the failure is: " + " -> ".join(self.varlist) + return self.msg + chain + +class IncludeHistory(object): + def __init__(self, parent = None, filename = '[TOP LEVEL]'): + self.parent = parent + self.filename = filename + self.children = [] + self.current = self + + def copy(self): + new = IncludeHistory(self.parent, self.filename) + for c in self.children: + new.children.append(c) + return new + + def include(self, filename): + newfile = IncludeHistory(self.current, filename) + self.current.children.append(newfile) + self.current = newfile + return self + + def __enter__(self): + pass + + def __exit__(self, a, b, c): + if self.current.parent: + self.current = self.current.parent + else: + bb.warn("Include log: Tried to finish '%s' at top level." % self.filename) + return False + + def emit(self, o, level = 0): + """Emit an include history file, and its children.""" + if level: + spaces = " " * (level - 1) + o.write("# %s%s" % (spaces, self.filename)) + if len(self.children) > 0: + o.write(" includes:") + else: + o.write("#\n# INCLUDE HISTORY:\n#") + level = level + 1 + for child in self.children: + o.write("\n") + child.emit(o, level) + +class VariableHistory(object): + def __init__(self, dataroot): + self.dataroot = dataroot + self.variables = COWDictBase.copy() + + def copy(self): + new = VariableHistory(self.dataroot) + new.variables = self.variables.copy() + return new + + def __getstate__(self): + vardict = {} + for k, v in self.variables.iteritems(): + vardict[k] = v + return {'dataroot': self.dataroot, + 'variables': vardict} + + def __setstate__(self, state): + self.dataroot = state['dataroot'] + self.variables = COWDictBase.copy() + for k, v in state['variables'].items(): + self.variables[k] = v + + def record(self, *kwonly, **loginfo): + if not self.dataroot._tracking: + return + if len(kwonly) > 0: + raise TypeError + infer_caller_details(loginfo, parent = True) + if 'ignore' in loginfo and loginfo['ignore']: + return + if 'op' not in loginfo or not loginfo['op']: + loginfo['op'] = 'set' + if 'detail' in loginfo: + loginfo['detail'] = str(loginfo['detail']) + if 'variable' not in loginfo or 'file' not in loginfo: + raise ValueError("record() missing variable or file.") + var = loginfo['variable'] + + if var not in self.variables: + self.variables[var] = [] + if not isinstance(self.variables[var], list): + return + if 'nodups' in loginfo and loginfo in self.variables[var]: + return + self.variables[var].append(loginfo.copy()) + + def rename_variable_hist(self, oldvar, newvar): + if not self.dataroot._tracking: + return + if oldvar not in self.variables: + return + if newvar not in self.variables: + self.variables[newvar] = [] + for i in self.variables[oldvar]: + self.variables[newvar].append(i.copy()) + + def variable(self, var): + varhistory = [] + if var in self.variables: + varhistory.extend(self.variables[var]) + return varhistory + + def emit(self, var, oval, val, o, d): + history = self.variable(var) + + # Append override history + if var in d.overridedata: + for (r, override) in d.overridedata[var]: + for event in self.variable(r): + loginfo = event.copy() + if 'flag' in loginfo and not loginfo['flag'].startswith(("_", ":")): + continue + loginfo['variable'] = var + loginfo['op'] = 'override[%s]:%s' % (override, loginfo['op']) + history.append(loginfo) + + commentVal = re.sub('\n', '\n#', str(oval)) + if history: + if len(history) == 1: + o.write("#\n# $%s\n" % var) + else: + o.write("#\n# $%s [%d operations]\n" % (var, len(history))) + for event in history: + # o.write("# %s\n" % str(event)) + if 'func' in event: + # If we have a function listed, this is internal + # code, not an operation in a config file, and the + # full path is distracting. + event['file'] = re.sub('.*/', '', event['file']) + display_func = ' [%s]' % event['func'] + else: + display_func = '' + if 'flag' in event: + flag = '[%s] ' % (event['flag']) + else: + flag = '' + o.write("# %s %s:%s%s\n# %s\"%s\"\n" % (event['op'], event['file'], event['line'], display_func, flag, re.sub('\n', '\n# ', event['detail']))) + if len(history) > 1: + o.write("# pre-expansion value:\n") + o.write('# "%s"\n' % (commentVal)) + else: + o.write("#\n# $%s\n# [no history recorded]\n#\n" % var) + o.write('# "%s"\n' % (commentVal)) + + def get_variable_files(self, var): + """Get the files where operations are made on a variable""" + var_history = self.variable(var) + files = [] + for event in var_history: + files.append(event['file']) + return files + + def get_variable_lines(self, var, f): + """Get the line where a operation is made on a variable in file f""" + var_history = self.variable(var) + lines = [] + for event in var_history: + if f== event['file']: + line = event['line'] + lines.append(line) + return lines + + def get_variable_refs(self, var): + """Return a dict of file/line references""" + var_history = self.variable(var) + refs = {} + for event in var_history: + if event['file'] not in refs: + refs[event['file']] = [] + refs[event['file']].append(event['line']) + return refs + + def get_variable_items_files(self, var): + """ + Use variable history to map items added to a list variable and + the files in which they were added. + """ + d = self.dataroot + history = self.variable(var) + finalitems = (d.getVar(var) or '').split() + filemap = {} + isset = False + for event in history: + if 'flag' in event: + continue + if event['op'] == ':remove': + continue + if isset and event['op'] == 'set?': + continue + isset = True + items = d.expand(event['detail']).split() + for item in items: + # This is a little crude but is belt-and-braces to avoid us + # having to handle every possible operation type specifically + if item in finalitems and not item in filemap: + filemap[item] = event['file'] + return filemap + + def del_var_history(self, var, f=None, line=None): + """If file f and line are not given, the entire history of var is deleted""" + if var in self.variables: + if f and line: + self.variables[var] = [ x for x in self.variables[var] if x['file']!=f and x['line']!=line] + else: + self.variables[var] = [] + +def _print_rename_error(var, loginfo, renamedvars, fullvar=None): + info = "" + if "file" in loginfo: + info = " file: %s" % loginfo["file"] + if "line" in loginfo: + info += " line: %s" % loginfo["line"] + if fullvar and fullvar != var: + info += " referenced as: %s" % fullvar + if info: + info = " (%s)" % info.strip() + renameinfo = renamedvars[var] + if " " in renameinfo: + # A space signals a string to display instead of a rename + bb.erroronce('Variable %s %s%s' % (var, renameinfo, info)) + else: + bb.erroronce('Variable %s has been renamed to %s%s' % (var, renameinfo, info)) + +class DataSmart(MutableMapping): + def __init__(self): + self.dict = {} + + self.inchistory = IncludeHistory() + self.varhistory = VariableHistory(self) + self._tracking = False + self._var_renames = {} + self._var_renames.update(bitbake_renamed_vars) + + self.expand_cache = {} + + # cookie monster tribute + # Need to be careful about writes to overridedata as + # its only a shallow copy, could influence other data store + # copies! + self.overridedata = {} + self.overrides = None + self.overridevars = set(["OVERRIDES", "FILE"]) + self.inoverride = False + + def enableTracking(self): + self._tracking = True + + def disableTracking(self): + self._tracking = False + + def expandWithRefs(self, s, varname): + + if not isinstance(s, str): # sanity check + return VariableParse(varname, self, s) + + varparse = VariableParse(varname, self) + + while s.find('${') != -1: + olds = s + try: + s = __expand_var_regexp__.sub(varparse.var_sub, s) + try: + s = __expand_python_regexp__.sub(varparse.python_sub, s) + except SyntaxError as e: + # Likely unmatched brackets, just don't expand the expression + if e.msg != "EOL while scanning string literal" and not e.msg.startswith("unterminated string literal"): + raise + if s == olds: + break + except ExpansionError as e: + e.addVar(varname) + raise + except bb.parse.SkipRecipe: + raise + except bb.BBHandledException: + raise + except Exception as exc: + tb = sys.exc_info()[2] + raise ExpansionError(varname, s, exc).with_traceback(tb) from exc + + varparse.value = s + + return varparse + + def expand(self, s, varname = None): + return self.expandWithRefs(s, varname).value + + def finalize(self, parent = False): + return + + def internal_finalize(self, parent = False): + """Performs final steps upon the datastore, including application of overrides""" + self.overrides = None + + def need_overrides(self): + if self.overrides is not None: + return + if self.inoverride: + return + for count in range(5): + self.inoverride = True + # Can end up here recursively so setup dummy values + self.overrides = [] + self.overridesset = set() + self.overrides = (self.getVar("OVERRIDES") or "").split(":") or [] + self.overridesset = set(self.overrides) + self.inoverride = False + self.expand_cache = {} + newoverrides = (self.getVar("OVERRIDES") or "").split(":") or [] + if newoverrides == self.overrides: + break + self.overrides = newoverrides + self.overridesset = set(self.overrides) + else: + bb.fatal("Overrides could not be expanded into a stable state after 5 iterations, overrides must be being referenced by other overridden variables in some recursive fashion. Please provide your configuration to bitbake-devel so we can laugh, er, I mean try and understand how to make it work.") + + def initVar(self, var): + self.expand_cache = {} + if not var in self.dict: + self.dict[var] = {} + + def _findVar(self, var): + dest = self.dict + while dest: + if var in dest: + return dest[var], self.overridedata.get(var, None) + + if "_data" not in dest: + break + dest = dest["_data"] + return None, self.overridedata.get(var, None) + + def _makeShadowCopy(self, var): + if var in self.dict: + return + + local_var, _ = self._findVar(var) + + if local_var: + self.dict[var] = copy.copy(local_var) + else: + self.initVar(var) + + def hasOverrides(self, var): + return var in self.overridedata + + def setVar(self, var, value, **loginfo): + #print("var=" + str(var) + " val=" + str(value)) + + if not var.startswith("__anon_") and ("_append" in var or "_prepend" in var or "_remove" in var): + info = "%s" % var + if "file" in loginfo: + info += " file: %s" % loginfo["file"] + if "line" in loginfo: + info += " line: %s" % loginfo["line"] + bb.fatal("Variable %s contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake." % info) + + shortvar = var.split(":", 1)[0] + if shortvar in self._var_renames: + _print_rename_error(shortvar, loginfo, self._var_renames, fullvar=var) + # Mark that we have seen a renamed variable + self.setVar("_FAILPARSINGERRORHANDLED", True) + + self.expand_cache = {} + parsing=False + if 'parsing' in loginfo: + parsing=True + + if 'op' not in loginfo: + loginfo['op'] = "set" + + match = __setvar_regexp__.match(var) + if match and match.group("keyword") in __setvar_keyword__: + base = match.group('base') + keyword = match.group("keyword") + override = match.group('add') + l = self.getVarFlag(base, keyword, False) or [] + l.append([value, override]) + self.setVarFlag(base, keyword, l, ignore=True) + # And cause that to be recorded: + loginfo['detail'] = value + loginfo['variable'] = base + if override: + loginfo['op'] = '%s[%s]' % (keyword, override) + else: + loginfo['op'] = keyword + self.varhistory.record(**loginfo) + # todo make sure keyword is not __doc__ or __module__ + # pay the cookie monster + + # more cookies for the cookie monster + if ':' in var: + self._setvar_update_overrides(base, **loginfo) + + if base in self.overridevars: + self._setvar_update_overridevars(var, value) + return + + if not var in self.dict: + self._makeShadowCopy(var) + + if not parsing: + if ":append" in self.dict[var]: + del self.dict[var][":append"] + if ":prepend" in self.dict[var]: + del self.dict[var][":prepend"] + if ":remove" in self.dict[var]: + del self.dict[var][":remove"] + if var in self.overridedata: + active = [] + self.need_overrides() + for (r, o) in self.overridedata[var]: + if o in self.overridesset: + active.append(r) + elif ":" in o: + if set(o.split(":")).issubset(self.overridesset): + active.append(r) + for a in active: + self.delVar(a) + del self.overridedata[var] + + # more cookies for the cookie monster + if ':' in var: + self._setvar_update_overrides(var, **loginfo) + + # setting var + self.dict[var]["_content"] = value + self.varhistory.record(**loginfo) + + if var in self.overridevars: + self._setvar_update_overridevars(var, value) + + def _setvar_update_overridevars(self, var, value): + vardata = self.expandWithRefs(value, var) + new = vardata.references + new.update(vardata.contains.keys()) + while not new.issubset(self.overridevars): + nextnew = set() + self.overridevars.update(new) + for i in new: + vardata = self.expandWithRefs(self.getVar(i), i) + nextnew.update(vardata.references) + nextnew.update(vardata.contains.keys()) + new = nextnew + self.internal_finalize(True) + + def _setvar_update_overrides(self, var, **loginfo): + # aka pay the cookie monster + override = var[var.rfind(':')+1:] + shortvar = var[:var.rfind(':')] + while override and __override_regexp__.match(override): + if shortvar not in self.overridedata: + self.overridedata[shortvar] = [] + if [var, override] not in self.overridedata[shortvar]: + # Force CoW by recreating the list first + self.overridedata[shortvar] = list(self.overridedata[shortvar]) + self.overridedata[shortvar].append([var, override]) + override = None + if ":" in shortvar: + override = var[shortvar.rfind(':')+1:] + shortvar = var[:shortvar.rfind(':')] + if len(shortvar) == 0: + override = None + + def getVar(self, var, expand=True, noweakdefault=False, parsing=False): + return self.getVarFlag(var, "_content", expand, noweakdefault, parsing) + + def renameVar(self, key, newkey, **loginfo): + """ + Rename the variable key to newkey + """ + if key == newkey: + bb.warn("Calling renameVar with equivalent keys (%s) is invalid" % key) + return + + val = self.getVar(key, 0, parsing=True) + if val is not None: + self.varhistory.rename_variable_hist(key, newkey) + loginfo['variable'] = newkey + loginfo['op'] = 'rename from %s' % key + loginfo['detail'] = val + self.varhistory.record(**loginfo) + self.setVar(newkey, val, ignore=True, parsing=True) + + srcflags = self.getVarFlags(key, False, True) or {} + for i in srcflags: + if i not in (__setvar_keyword__): + continue + src = srcflags[i] + + dest = self.getVarFlag(newkey, i, False) or [] + dest.extend(src) + self.setVarFlag(newkey, i, dest, ignore=True) + + if key in self.overridedata: + self.overridedata[newkey] = [] + for (v, o) in self.overridedata[key]: + self.overridedata[newkey].append([v.replace(key, newkey), o]) + self.renameVar(v, v.replace(key, newkey)) + + if ':' in newkey and val is None: + self._setvar_update_overrides(newkey, **loginfo) + + loginfo['variable'] = key + loginfo['op'] = 'rename (to)' + loginfo['detail'] = newkey + self.varhistory.record(**loginfo) + self.delVar(key, ignore=True) + + def appendVar(self, var, value, **loginfo): + loginfo['op'] = 'append' + self.varhistory.record(**loginfo) + self.setVar(var + ":append", value, ignore=True, parsing=True) + + def prependVar(self, var, value, **loginfo): + loginfo['op'] = 'prepend' + self.varhistory.record(**loginfo) + self.setVar(var + ":prepend", value, ignore=True, parsing=True) + + def delVar(self, var, **loginfo): + self.expand_cache = {} + + loginfo['detail'] = "" + loginfo['op'] = 'del' + self.varhistory.record(**loginfo) + self.dict[var] = {} + if var in self.overridedata: + del self.overridedata[var] + if ':' in var: + override = var[var.rfind(':')+1:] + shortvar = var[:var.rfind(':')] + while override and override.islower(): + try: + if shortvar in self.overridedata: + # Force CoW by recreating the list first + self.overridedata[shortvar] = list(self.overridedata[shortvar]) + self.overridedata[shortvar].remove([var, override]) + except ValueError as e: + pass + override = None + if ":" in shortvar: + override = var[shortvar.rfind(':')+1:] + shortvar = var[:shortvar.rfind(':')] + if len(shortvar) == 0: + override = None + + def setVarFlag(self, var, flag, value, **loginfo): + self.expand_cache = {} + + if var == "BB_RENAMED_VARIABLES": + self._var_renames[flag] = value + + if var in self._var_renames: + _print_rename_error(var, loginfo, self._var_renames) + # Mark that we have seen a renamed variable + self.setVar("_FAILPARSINGERRORHANDLED", True) + + if 'op' not in loginfo: + loginfo['op'] = "set" + loginfo['flag'] = flag + self.varhistory.record(**loginfo) + if not var in self.dict: + self._makeShadowCopy(var) + self.dict[var][flag] = value + + if flag == "_defaultval" and ':' in var: + self._setvar_update_overrides(var, **loginfo) + if flag == "_defaultval" and var in self.overridevars: + self._setvar_update_overridevars(var, value) + + if flag == "unexport" or flag == "export": + if not "__exportlist" in self.dict: + self._makeShadowCopy("__exportlist") + if not "_content" in self.dict["__exportlist"]: + self.dict["__exportlist"]["_content"] = set() + self.dict["__exportlist"]["_content"].add(var) + + def getVarFlag(self, var, flag, expand=True, noweakdefault=False, parsing=False, retparser=False): + if flag == "_content": + cachename = var + else: + if not flag: + bb.warn("Calling getVarFlag with flag unset is invalid") + return None + cachename = var + "[" + flag + "]" + + if expand and cachename in self.expand_cache: + return self.expand_cache[cachename].value + + local_var, overridedata = self._findVar(var) + value = None + removes = set() + if flag == "_content" and overridedata is not None and not parsing: + match = False + active = {} + self.need_overrides() + for (r, o) in overridedata: + # FIXME What about double overrides both with "_" in the name? + if o in self.overridesset: + active[o] = r + elif ":" in o: + if set(o.split(":")).issubset(self.overridesset): + active[o] = r + + mod = True + while mod: + mod = False + for o in self.overrides: + for a in active.copy(): + if a.endswith(":" + o): + t = active[a] + del active[a] + active[a.replace(":" + o, "")] = t + mod = True + elif a == o: + match = active[a] + del active[a] + if match: + value, subparser = self.getVarFlag(match, "_content", False, retparser=True) + if hasattr(subparser, "removes"): + # We have to carry the removes from the overridden variable to apply at the + # end of processing + removes = subparser.removes + + if local_var is not None and value is None: + if flag in local_var: + value = copy.copy(local_var[flag]) + elif flag == "_content" and "_defaultval" in local_var and not noweakdefault: + value = copy.copy(local_var["_defaultval"]) + + + if flag == "_content" and local_var is not None and ":append" in local_var and not parsing: + self.need_overrides() + for (r, o) in local_var[":append"]: + match = True + if o: + for o2 in o.split(":"): + if not o2 in self.overrides: + match = False + if match: + if value is None: + value = "" + value = value + r + + if flag == "_content" and local_var is not None and ":prepend" in local_var and not parsing: + self.need_overrides() + for (r, o) in local_var[":prepend"]: + + match = True + if o: + for o2 in o.split(":"): + if not o2 in self.overrides: + match = False + if match: + if value is None: + value = "" + value = r + value + + parser = None + if expand or retparser: + parser = self.expandWithRefs(value, cachename) + if expand: + value = parser.value + + if value and flag == "_content" and local_var is not None and ":remove" in local_var and not parsing: + self.need_overrides() + for (r, o) in local_var[":remove"]: + match = True + if o: + for o2 in o.split(":"): + if not o2 in self.overrides: + match = False + if match: + removes.add(r) + + if value and flag == "_content" and not parsing: + if removes and parser: + expanded_removes = {} + for r in removes: + expanded_removes[r] = self.expand(r).split() + + parser.removes = set() + val = [] + for v in __whitespace_split__.split(parser.value): + skip = False + for r in removes: + if v in expanded_removes[r]: + parser.removes.add(r) + skip = True + if skip: + continue + val.append(v) + parser.value = "".join(val) + if expand: + value = parser.value + + if parser: + self.expand_cache[cachename] = parser + + if retparser: + return value, parser + + return value + + def delVarFlag(self, var, flag, **loginfo): + self.expand_cache = {} + + local_var, _ = self._findVar(var) + if not local_var: + return + if not var in self.dict: + self._makeShadowCopy(var) + + if var in self.dict and flag in self.dict[var]: + loginfo['detail'] = "" + loginfo['op'] = 'delFlag' + loginfo['flag'] = flag + self.varhistory.record(**loginfo) + + del self.dict[var][flag] + + def appendVarFlag(self, var, flag, value, **loginfo): + loginfo['op'] = 'append' + loginfo['flag'] = flag + self.varhistory.record(**loginfo) + newvalue = (self.getVarFlag(var, flag, False) or "") + value + self.setVarFlag(var, flag, newvalue, ignore=True) + + def prependVarFlag(self, var, flag, value, **loginfo): + loginfo['op'] = 'prepend' + loginfo['flag'] = flag + self.varhistory.record(**loginfo) + newvalue = value + (self.getVarFlag(var, flag, False) or "") + self.setVarFlag(var, flag, newvalue, ignore=True) + + def setVarFlags(self, var, flags, **loginfo): + self.expand_cache = {} + infer_caller_details(loginfo) + if not var in self.dict: + self._makeShadowCopy(var) + + for i in flags: + if i == "_content": + continue + loginfo['flag'] = i + loginfo['detail'] = flags[i] + self.varhistory.record(**loginfo) + self.dict[var][i] = flags[i] + + def getVarFlags(self, var, expand = False, internalflags=False): + local_var, _ = self._findVar(var) + flags = {} + + if local_var: + for i in local_var: + if i.startswith(("_", ":")) and not internalflags: + continue + flags[i] = local_var[i] + if expand and i in expand: + flags[i] = self.expand(flags[i], var + "[" + i + "]") + if len(flags) == 0: + return None + return flags + + + def delVarFlags(self, var, **loginfo): + self.expand_cache = {} + if not var in self.dict: + self._makeShadowCopy(var) + + if var in self.dict: + content = None + + loginfo['op'] = 'delete flags' + self.varhistory.record(**loginfo) + + # try to save the content + if "_content" in self.dict[var]: + content = self.dict[var]["_content"] + self.dict[var] = {} + self.dict[var]["_content"] = content + else: + del self.dict[var] + + def createCopy(self): + """ + Create a copy of self by setting _data to self + """ + # we really want this to be a DataSmart... + data = DataSmart() + data.dict["_data"] = self.dict + data.varhistory = self.varhistory.copy() + data.varhistory.dataroot = data + data.inchistory = self.inchistory.copy() + + data._tracking = self._tracking + data._var_renames = self._var_renames + + data.overrides = None + data.overridevars = copy.copy(self.overridevars) + # Should really be a deepcopy but has heavy overhead. + # Instead, we're careful with writes. + data.overridedata = copy.copy(self.overridedata) + + return data + + def expandVarref(self, variable, parents=False): + """Find all references to variable in the data and expand it + in place, optionally descending to parent datastores.""" + + if parents: + keys = iter(self) + else: + keys = self.localkeys() + + ref = '${%s}' % variable + value = self.getVar(variable, False) + for key in keys: + referrervalue = self.getVar(key, False) + if referrervalue and isinstance(referrervalue, str) and ref in referrervalue: + self.setVar(key, referrervalue.replace(ref, value)) + + def localkeys(self): + for key in self.dict: + if key not in ['_data']: + yield key + + def __iter__(self): + deleted = set() + overrides = set() + def keylist(d): + klist = set() + for key in d: + if key in ["_data"]: + continue + if key in deleted: + continue + if key in overrides: + continue + if not d[key]: + deleted.add(key) + continue + klist.add(key) + + if "_data" in d: + klist |= keylist(d["_data"]) + + return klist + + self.need_overrides() + for var in self.overridedata: + for (r, o) in self.overridedata[var]: + if o in self.overridesset: + overrides.add(var) + elif ":" in o: + if set(o.split(":")).issubset(self.overridesset): + overrides.add(var) + + for k in keylist(self.dict): + yield k + + for k in overrides: + yield k + + def __len__(self): + return len(frozenset(iter(self))) + + def __getitem__(self, item): + value = self.getVar(item, False) + if value is None: + raise KeyError(item) + else: + return value + + def __setitem__(self, var, value): + self.setVar(var, value) + + def __delitem__(self, var): + self.delVar(var) + + def get_hash(self): + data = {} + d = self.createCopy() + bb.data.expandKeys(d) + + config_ignore_vars = set((d.getVar("BB_HASHCONFIG_IGNORE_VARS") or "").split()) + keys = set(key for key in iter(d) if not key.startswith("__")) + for key in keys: + if key in config_ignore_vars: + continue + + value = d.getVar(key, False) or "" + if type(value) is type(self): + data.update({key:value.get_hash()}) + else: + data.update({key:value}) + + varflags = d.getVarFlags(key, internalflags = True, expand=["vardepvalue"]) + if not varflags: + continue + for f in varflags: + if f == "_content": + continue + data.update({'%s[%s]' % (key, f):varflags[f]}) + + for key in ["__BBTASKS", "__BBANONFUNCS", "__BBHANDLERS"]: + bb_list = d.getVar(key, False) or [] + data.update({key:str(bb_list)}) + + if key == "__BBANONFUNCS": + for i in bb_list: + value = d.getVar(i, False) or "" + data.update({i:value}) + + data_str = str([(k, data[k]) for k in sorted(data.keys())]) + return hashlib.sha256(data_str.encode("utf-8")).hexdigest() diff --git a/poky/bitbake/lib/bb/event.py b/poky/bitbake/lib/bb/event.py new file mode 100644 index 0000000..9766860 --- /dev/null +++ b/poky/bitbake/lib/bb/event.py @@ -0,0 +1,853 @@ +""" +BitBake 'Event' implementation + +Classes and functions for manipulating 'events' in the +BitBake build tools. +""" + +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import ast +import atexit +import collections +import logging +import pickle +import sys +import threading +import traceback + +import bb.exceptions +import bb.utils + +# This is the pid for which we should generate the event. This is set when +# the runqueue forks off. +worker_pid = 0 +worker_fire = None + +logger = logging.getLogger('BitBake.Event') + +class Event(object): + """Base class for events""" + + def __init__(self): + self.pid = worker_pid + + +class HeartbeatEvent(Event): + """Triggered at regular time intervals of 10 seconds. Other events can fire much more often + (runQueueTaskStarted when there are many short tasks) or not at all for long periods + of time (again runQueueTaskStarted, when there is just one long-running task), so this + event is more suitable for doing some task-independent work occasionally.""" + def __init__(self, time): + Event.__init__(self) + self.time = time + +Registered = 10 +AlreadyRegistered = 14 + +def get_class_handlers(): + return _handlers + +def set_class_handlers(h): + global _handlers + _handlers = h + +def clean_class_handlers(): + return collections.OrderedDict() + +# Internal +_handlers = clean_class_handlers() +_ui_handlers = {} +_ui_logfilters = {} +_ui_handler_seq = 0 +_event_handler_map = {} +_catchall_handlers = {} +_eventfilter = None +_uiready = False +_thread_lock = threading.Lock() +_thread_lock_enabled = False + +if hasattr(__builtins__, '__setitem__'): + builtins = __builtins__ +else: + builtins = __builtins__.__dict__ + +def enable_threadlock(): + global _thread_lock_enabled + _thread_lock_enabled = True + +def disable_threadlock(): + global _thread_lock_enabled + _thread_lock_enabled = False + +def execute_handler(name, handler, event, d): + event.data = d + addedd = False + if 'd' not in builtins: + builtins['d'] = d + addedd = True + try: + ret = handler(event) + except (bb.parse.SkipRecipe, bb.BBHandledException): + raise + except Exception: + etype, value, tb = sys.exc_info() + logger.error("Execution of event handler '%s' failed" % name, + exc_info=(etype, value, tb.tb_next)) + raise + except SystemExit as exc: + if exc.code != 0: + logger.error("Execution of event handler '%s' failed" % name) + raise + finally: + del event.data + if addedd: + del builtins['d'] + +def fire_class_handlers(event, d): + if isinstance(event, logging.LogRecord): + return + + eid = str(event.__class__)[8:-2] + evt_hmap = _event_handler_map.get(eid, {}) + for name, handler in list(_handlers.items()): + if name in _catchall_handlers or name in evt_hmap: + if _eventfilter: + if not _eventfilter(name, handler, event, d): + continue + if d is not None and not name in (d.getVar("__BBHANDLERS_MC") or set()): + continue + execute_handler(name, handler, event, d) + +ui_queue = [] +@atexit.register +def print_ui_queue(): + global ui_queue + """If we're exiting before a UI has been spawned, display any queued + LogRecords to the console.""" + logger = logging.getLogger("BitBake") + if not _uiready: + from bb.msg import BBLogFormatter + # Flush any existing buffered content + try: + sys.stdout.flush() + except: + pass + try: + sys.stderr.flush() + except: + pass + stdout = logging.StreamHandler(sys.stdout) + stderr = logging.StreamHandler(sys.stderr) + formatter = BBLogFormatter("%(levelname)s: %(message)s") + stdout.setFormatter(formatter) + stderr.setFormatter(formatter) + + # First check to see if we have any proper messages + msgprint = False + msgerrs = False + + # Should we print to stderr? + for event in ui_queue[:]: + if isinstance(event, logging.LogRecord) and event.levelno >= logging.WARNING: + msgerrs = True + break + + if msgerrs: + logger.addHandler(stderr) + else: + logger.addHandler(stdout) + + for event in ui_queue[:]: + if isinstance(event, logging.LogRecord): + if event.levelno > logging.DEBUG: + logger.handle(event) + msgprint = True + + # Nope, so just print all of the messages we have (including debug messages) + if not msgprint: + for event in ui_queue[:]: + if isinstance(event, logging.LogRecord): + logger.handle(event) + if msgerrs: + logger.removeHandler(stderr) + else: + logger.removeHandler(stdout) + ui_queue = [] + +def fire_ui_handlers(event, d): + global _thread_lock + global _thread_lock_enabled + + if not _uiready: + # No UI handlers registered yet, queue up the messages + ui_queue.append(event) + return + + if _thread_lock_enabled: + _thread_lock.acquire() + + errors = [] + for h in _ui_handlers: + #print "Sending event %s" % event + try: + if not _ui_logfilters[h].filter(event): + continue + # We use pickle here since it better handles object instances + # which xmlrpc's marshaller does not. Events *must* be serializable + # by pickle. + if hasattr(_ui_handlers[h].event, "sendpickle"): + _ui_handlers[h].event.sendpickle((pickle.dumps(event))) + else: + _ui_handlers[h].event.send(event) + except: + errors.append(h) + for h in errors: + del _ui_handlers[h] + + if _thread_lock_enabled: + _thread_lock.release() + +def fire(event, d): + """Fire off an Event""" + + # We can fire class handlers in the worker process context and this is + # desired so they get the task based datastore. + # UI handlers need to be fired in the server context so we defer this. They + # don't have a datastore so the datastore context isn't a problem. + + fire_class_handlers(event, d) + if worker_fire: + worker_fire(event, d) + else: + # If messages have been queued up, clear the queue + global _uiready, ui_queue + if _uiready and ui_queue: + for queue_event in ui_queue: + fire_ui_handlers(queue_event, d) + ui_queue = [] + fire_ui_handlers(event, d) + +def fire_from_worker(event, d): + fire_ui_handlers(event, d) + +noop = lambda _: None +def register(name, handler, mask=None, filename=None, lineno=None, data=None): + """Register an Event handler""" + + if data is not None and data.getVar("BB_CURRENT_MC"): + mc = data.getVar("BB_CURRENT_MC") + name = '%s%s' % (mc.replace('-', '_'), name) + + # already registered + if name in _handlers: + if data is not None: + bbhands_mc = (data.getVar("__BBHANDLERS_MC") or set()) + bbhands_mc.add(name) + data.setVar("__BBHANDLERS_MC", bbhands_mc) + return AlreadyRegistered + + if handler is not None: + # handle string containing python code + if isinstance(handler, str): + tmp = "def %s(e):\n%s" % (name, handler) + try: + code = bb.methodpool.compile_cache(tmp) + if not code: + if filename is None: + filename = "%s(e)" % name + code = compile(tmp, filename, "exec", ast.PyCF_ONLY_AST) + if lineno is not None: + ast.increment_lineno(code, lineno-1) + code = compile(code, filename, "exec") + bb.methodpool.compile_cache_add(tmp, code) + except SyntaxError: + logger.error("Unable to register event handler '%s':\n%s", name, + ''.join(traceback.format_exc(limit=0))) + _handlers[name] = noop + return + env = {} + bb.utils.better_exec(code, env) + func = bb.utils.better_eval(name, env) + _handlers[name] = func + else: + _handlers[name] = handler + + if not mask or '*' in mask: + _catchall_handlers[name] = True + else: + for m in mask: + if _event_handler_map.get(m, None) is None: + _event_handler_map[m] = {} + _event_handler_map[m][name] = True + + if data is not None: + bbhands_mc = (data.getVar("__BBHANDLERS_MC") or set()) + bbhands_mc.add(name) + data.setVar("__BBHANDLERS_MC", bbhands_mc) + + return Registered + +def remove(name, handler, data=None): + """Remove an Event handler""" + if data is not None: + if data.getVar("BB_CURRENT_MC"): + mc = data.getVar("BB_CURRENT_MC") + name = '%s%s' % (mc.replace('-', '_'), name) + + _handlers.pop(name) + if name in _catchall_handlers: + _catchall_handlers.pop(name) + for event in _event_handler_map.keys(): + if name in _event_handler_map[event]: + _event_handler_map[event].pop(name) + + if data is not None: + bbhands_mc = (data.getVar("__BBHANDLERS_MC") or set()) + if name in bbhands_mc: + bbhands_mc.remove(name) + data.setVar("__BBHANDLERS_MC", bbhands_mc) + +def get_handlers(): + return _handlers + +def set_handlers(handlers): + global _handlers + _handlers = handlers + +def set_eventfilter(func): + global _eventfilter + _eventfilter = func + +def register_UIHhandler(handler, mainui=False): + bb.event._ui_handler_seq = bb.event._ui_handler_seq + 1 + _ui_handlers[_ui_handler_seq] = handler + level, debug_domains = bb.msg.constructLogOptions() + _ui_logfilters[_ui_handler_seq] = UIEventFilter(level, debug_domains) + if mainui: + global _uiready + _uiready = _ui_handler_seq + return _ui_handler_seq + +def unregister_UIHhandler(handlerNum, mainui=False): + if mainui: + global _uiready + _uiready = False + if handlerNum in _ui_handlers: + del _ui_handlers[handlerNum] + return + +def get_uihandler(): + if _uiready is False: + return None + return _uiready + +# Class to allow filtering of events and specific filtering of LogRecords *before* we put them over the IPC +class UIEventFilter(object): + def __init__(self, level, debug_domains): + self.update(None, level, debug_domains) + + def update(self, eventmask, level, debug_domains): + self.eventmask = eventmask + self.stdlevel = level + self.debug_domains = debug_domains + + def filter(self, event): + if isinstance(event, logging.LogRecord): + if event.levelno >= self.stdlevel: + return True + if event.name in self.debug_domains and event.levelno >= self.debug_domains[event.name]: + return True + return False + eid = str(event.__class__)[8:-2] + if self.eventmask and eid not in self.eventmask: + return False + return True + +def set_UIHmask(handlerNum, level, debug_domains, mask): + if not handlerNum in _ui_handlers: + return False + if '*' in mask: + _ui_logfilters[handlerNum].update(None, level, debug_domains) + else: + _ui_logfilters[handlerNum].update(mask, level, debug_domains) + return True + +def getName(e): + """Returns the name of a class or class instance""" + if getattr(e, "__name__", None) is None: + return e.__class__.__name__ + else: + return e.__name__ + +class OperationStarted(Event): + """An operation has begun""" + def __init__(self, msg = "Operation Started"): + Event.__init__(self) + self.msg = msg + +class OperationCompleted(Event): + """An operation has completed""" + def __init__(self, total, msg = "Operation Completed"): + Event.__init__(self) + self.total = total + self.msg = msg + +class OperationProgress(Event): + """An operation is in progress""" + def __init__(self, current, total, msg = "Operation in Progress"): + Event.__init__(self) + self.current = current + self.total = total + self.msg = msg + ": %s/%s" % (current, total); + +class ConfigParsed(Event): + """Configuration Parsing Complete""" + +class MultiConfigParsed(Event): + """Multi-Config Parsing Complete""" + def __init__(self, mcdata): + self.mcdata = mcdata + Event.__init__(self) + +class RecipeEvent(Event): + def __init__(self, fn): + self.fn = fn + Event.__init__(self) + +class RecipePreFinalise(RecipeEvent): + """ Recipe Parsing Complete but not yet finalised""" + +class RecipePostKeyExpansion(RecipeEvent): + """ Recipe Parsing Complete but not yet finalised""" + + +class RecipeTaskPreProcess(RecipeEvent): + """ + Recipe Tasks about to be finalised + The list of tasks should be final at this point and handlers + are only able to change interdependencies + """ + def __init__(self, fn, tasklist): + self.fn = fn + self.tasklist = tasklist + Event.__init__(self) + +class RecipeParsed(RecipeEvent): + """ Recipe Parsing Complete """ + +class BuildBase(Event): + """Base class for bitbake build events""" + + def __init__(self, n, p, failures = 0): + self._name = n + self._pkgs = p + Event.__init__(self) + self._failures = failures + + def getPkgs(self): + return self._pkgs + + def setPkgs(self, pkgs): + self._pkgs = pkgs + + def getName(self): + return self._name + + def setName(self, name): + self._name = name + + def getFailures(self): + """ + Return the number of failed packages + """ + return self._failures + + pkgs = property(getPkgs, setPkgs, None, "pkgs property") + name = property(getName, setName, None, "name property") + +class BuildInit(BuildBase): + """buildFile or buildTargets was invoked""" + def __init__(self, p=[]): + name = None + BuildBase.__init__(self, name, p) + +class BuildStarted(BuildBase, OperationStarted): + """Event when builds start""" + def __init__(self, n, p, failures = 0): + OperationStarted.__init__(self, "Building Started") + BuildBase.__init__(self, n, p, failures) + +class BuildCompleted(BuildBase, OperationCompleted): + """Event when builds have completed""" + def __init__(self, total, n, p, failures=0, interrupted=0): + if not failures: + OperationCompleted.__init__(self, total, "Building Succeeded") + else: + OperationCompleted.__init__(self, total, "Building Failed") + self._interrupted = interrupted + BuildBase.__init__(self, n, p, failures) + +class DiskFull(Event): + """Disk full case build halted""" + def __init__(self, dev, type, freespace, mountpoint): + Event.__init__(self) + self._dev = dev + self._type = type + self._free = freespace + self._mountpoint = mountpoint + +class DiskUsageSample: + def __init__(self, available_bytes, free_bytes, total_bytes): + # Number of bytes available to non-root processes. + self.available_bytes = available_bytes + # Number of bytes available to root processes. + self.free_bytes = free_bytes + # Total capacity of the volume. + self.total_bytes = total_bytes + +class MonitorDiskEvent(Event): + """If BB_DISKMON_DIRS is set, then this event gets triggered each time disk space is checked. + Provides information about devices that are getting monitored.""" + def __init__(self, disk_usage): + Event.__init__(self) + # hash of device root path -> DiskUsageSample + self.disk_usage = disk_usage + +class NoProvider(Event): + """No Provider for an Event""" + + def __init__(self, item, runtime=False, dependees=None, reasons=None, close_matches=None): + Event.__init__(self) + self._item = item + self._runtime = runtime + self._dependees = dependees + self._reasons = reasons + self._close_matches = close_matches + + def getItem(self): + return self._item + + def isRuntime(self): + return self._runtime + + def __str__(self): + msg = '' + if self._runtime: + r = "R" + else: + r = "" + + extra = '' + if not self._reasons: + if self._close_matches: + extra = ". Close matches:\n %s" % '\n '.join(sorted(set(self._close_matches))) + + if self._dependees: + msg = "Nothing %sPROVIDES '%s' (but %s %sDEPENDS on or otherwise requires it)%s" % (r, self._item, ", ".join(self._dependees), r, extra) + else: + msg = "Nothing %sPROVIDES '%s'%s" % (r, self._item, extra) + if self._reasons: + for reason in self._reasons: + msg += '\n' + reason + return msg + + +class MultipleProviders(Event): + """Multiple Providers""" + + def __init__(self, item, candidates, runtime = False): + Event.__init__(self) + self._item = item + self._candidates = candidates + self._is_runtime = runtime + + def isRuntime(self): + """ + Is this a runtime issue? + """ + return self._is_runtime + + def getItem(self): + """ + The name for the to be build item + """ + return self._item + + def getCandidates(self): + """ + Get the possible Candidates for a PROVIDER. + """ + return self._candidates + + def __str__(self): + msg = "Multiple providers are available for %s%s (%s)" % (self._is_runtime and "runtime " or "", + self._item, + ", ".join(self._candidates)) + rtime = "" + if self._is_runtime: + rtime = "R" + msg += "\nConsider defining a PREFERRED_%sPROVIDER entry to match %s" % (rtime, self._item) + return msg + +class ParseStarted(OperationStarted): + """Recipe parsing for the runqueue has begun""" + def __init__(self, total): + OperationStarted.__init__(self, "Recipe parsing Started") + self.total = total + +class ParseCompleted(OperationCompleted): + """Recipe parsing for the runqueue has completed""" + def __init__(self, cached, parsed, skipped, masked, virtuals, errors, total): + OperationCompleted.__init__(self, total, "Recipe parsing Completed") + self.cached = cached + self.parsed = parsed + self.skipped = skipped + self.virtuals = virtuals + self.masked = masked + self.errors = errors + self.sofar = cached + parsed + +class ParseProgress(OperationProgress): + """Recipe parsing progress""" + def __init__(self, current, total): + OperationProgress.__init__(self, current, total, "Recipe parsing") + + +class CacheLoadStarted(OperationStarted): + """Loading of the dependency cache has begun""" + def __init__(self, total): + OperationStarted.__init__(self, "Loading cache Started") + self.total = total + +class CacheLoadProgress(OperationProgress): + """Cache loading progress""" + def __init__(self, current, total): + OperationProgress.__init__(self, current, total, "Loading cache") + +class CacheLoadCompleted(OperationCompleted): + """Cache loading is complete""" + def __init__(self, total, num_entries): + OperationCompleted.__init__(self, total, "Loading cache Completed") + self.num_entries = num_entries + +class TreeDataPreparationStarted(OperationStarted): + """Tree data preparation started""" + def __init__(self): + OperationStarted.__init__(self, "Preparing tree data Started") + +class TreeDataPreparationProgress(OperationProgress): + """Tree data preparation is in progress""" + def __init__(self, current, total): + OperationProgress.__init__(self, current, total, "Preparing tree data") + +class TreeDataPreparationCompleted(OperationCompleted): + """Tree data preparation completed""" + def __init__(self, total): + OperationCompleted.__init__(self, total, "Preparing tree data Completed") + +class DepTreeGenerated(Event): + """ + Event when a dependency tree has been generated + """ + + def __init__(self, depgraph): + Event.__init__(self) + self._depgraph = depgraph + +class TargetsTreeGenerated(Event): + """ + Event when a set of buildable targets has been generated + """ + def __init__(self, model): + Event.__init__(self) + self._model = model + +class ReachableStamps(Event): + """ + An event listing all stamps reachable after parsing + which the metadata may use to clean up stale data + """ + + def __init__(self, stamps): + Event.__init__(self) + self.stamps = stamps + +class StaleSetSceneTasks(Event): + """ + An event listing setscene tasks which are 'stale' and will + be rerun. The metadata may use to clean up stale data. + tasks is a mapping of tasks and matching stale stamps. + """ + + def __init__(self, tasks): + Event.__init__(self) + self.tasks = tasks + +class FilesMatchingFound(Event): + """ + Event when a list of files matching the supplied pattern has + been generated + """ + def __init__(self, pattern, matches): + Event.__init__(self) + self._pattern = pattern + self._matches = matches + +class ConfigFilesFound(Event): + """ + Event when a list of appropriate config files has been generated + """ + def __init__(self, variable, values): + Event.__init__(self) + self._variable = variable + self._values = values + +class ConfigFilePathFound(Event): + """ + Event when a path for a config file has been found + """ + def __init__(self, path): + Event.__init__(self) + self._path = path + +class MsgBase(Event): + """Base class for messages""" + + def __init__(self, msg): + self._message = msg + Event.__init__(self) + +class MsgDebug(MsgBase): + """Debug Message""" + +class MsgNote(MsgBase): + """Note Message""" + +class MsgWarn(MsgBase): + """Warning Message""" + +class MsgError(MsgBase): + """Error Message""" + +class MsgFatal(MsgBase): + """Fatal Message""" + +class MsgPlain(MsgBase): + """General output""" + +class LogExecTTY(Event): + """Send event containing program to spawn on tty of the logger""" + def __init__(self, msg, prog, sleep_delay, retries): + Event.__init__(self) + self.msg = msg + self.prog = prog + self.sleep_delay = sleep_delay + self.retries = retries + +class LogHandler(logging.Handler): + """Dispatch logging messages as bitbake events""" + + def emit(self, record): + if record.exc_info: + etype, value, tb = record.exc_info + if hasattr(tb, 'tb_next'): + tb = list(bb.exceptions.extract_traceback(tb, context=3)) + # Need to turn the value into something the logging system can pickle + record.bb_exc_info = (etype, value, tb) + record.bb_exc_formatted = bb.exceptions.format_exception(etype, value, tb, limit=5) + value = str(value) + record.exc_info = None + fire(record, None) + + def filter(self, record): + record.taskpid = worker_pid + return True + +class MetadataEvent(Event): + """ + Generic event that target for OE-Core classes + to report information during asynchronous execution + """ + def __init__(self, eventtype, eventdata): + Event.__init__(self) + self.type = eventtype + self._localdata = eventdata + +class ProcessStarted(Event): + """ + Generic process started event (usually part of the initial startup) + where further progress events will be delivered + """ + def __init__(self, processname, total): + Event.__init__(self) + self.processname = processname + self.total = total + +class ProcessProgress(Event): + """ + Generic process progress event (usually part of the initial startup) + """ + def __init__(self, processname, progress): + Event.__init__(self) + self.processname = processname + self.progress = progress + +class ProcessFinished(Event): + """ + Generic process finished event (usually part of the initial startup) + """ + def __init__(self, processname): + Event.__init__(self) + self.processname = processname + +class SanityCheck(Event): + """ + Event to run sanity checks, either raise errors or generate events as return status. + """ + def __init__(self, generateevents = True): + Event.__init__(self) + self.generateevents = generateevents + +class SanityCheckPassed(Event): + """ + Event to indicate sanity check has passed + """ + +class SanityCheckFailed(Event): + """ + Event to indicate sanity check has failed + """ + def __init__(self, msg, network_error=False): + Event.__init__(self) + self._msg = msg + self._network_error = network_error + +class NetworkTest(Event): + """ + Event to run network connectivity tests, either raise errors or generate events as return status. + """ + def __init__(self, generateevents = True): + Event.__init__(self) + self.generateevents = generateevents + +class NetworkTestPassed(Event): + """ + Event to indicate network test has passed + """ + +class NetworkTestFailed(Event): + """ + Event to indicate network test has failed + """ + +class FindSigInfoResult(Event): + """ + Event to return results from findSigInfo command + """ + def __init__(self, result): + Event.__init__(self) + self.result = result diff --git a/poky/bitbake/lib/bb/exceptions.py b/poky/bitbake/lib/bb/exceptions.py new file mode 100644 index 0000000..801db9c --- /dev/null +++ b/poky/bitbake/lib/bb/exceptions.py @@ -0,0 +1,96 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import inspect +import traceback +import bb.namedtuple_with_abc +from collections import namedtuple + + +class TracebackEntry(namedtuple.abc): + """Pickleable representation of a traceback entry""" + _fields = 'filename lineno function args code_context index' + _header = ' File "{0.filename}", line {0.lineno}, in {0.function}{0.args}' + + def format(self, formatter=None): + if not self.code_context: + return self._header.format(self) + '\n' + + formatted = [self._header.format(self) + ':\n'] + + for lineindex, line in enumerate(self.code_context): + if formatter: + line = formatter(line) + + if lineindex == self.index: + formatted.append(' >%s' % line) + else: + formatted.append(' %s' % line) + return formatted + + def __str__(self): + return ''.join(self.format()) + +def _get_frame_args(frame): + """Get the formatted arguments and class (if available) for a frame""" + arginfo = inspect.getargvalues(frame) + + try: + if not arginfo.args: + return '', None + # There have been reports from the field of python 2.6 which doesn't + # return a namedtuple here but simply a tuple so fallback gracefully if + # args isn't present. + except AttributeError: + return '', None + + firstarg = arginfo.args[0] + if firstarg == 'self': + self = arginfo.locals['self'] + cls = self.__class__.__name__ + + arginfo.args.pop(0) + del arginfo.locals['self'] + else: + cls = None + + formatted = inspect.formatargvalues(*arginfo) + return formatted, cls + +def extract_traceback(tb, context=1): + frames = inspect.getinnerframes(tb, context) + for frame, filename, lineno, function, code_context, index in frames: + formatted_args, cls = _get_frame_args(frame) + if cls: + function = '%s.%s' % (cls, function) + yield TracebackEntry(filename, lineno, function, formatted_args, + code_context, index) + +def format_extracted(extracted, formatter=None, limit=None): + if limit: + extracted = extracted[-limit:] + + formatted = [] + for tracebackinfo in extracted: + formatted.extend(tracebackinfo.format(formatter)) + return formatted + + +def format_exception(etype, value, tb, context=1, limit=None, formatter=None): + formatted = ['Traceback (most recent call last):\n'] + + if hasattr(tb, 'tb_next'): + tb = extract_traceback(tb, context) + + formatted.extend(format_extracted(tb, formatter, limit)) + formatted.extend(traceback.format_exception_only(etype, value)) + return formatted + +def to_string(exc): + if isinstance(exc, SystemExit): + if not isinstance(exc.code, str): + return 'Exited with "%d"' % exc.code + return str(exc) diff --git a/poky/bitbake/lib/bb/fetch2/README b/poky/bitbake/lib/bb/fetch2/README new file mode 100644 index 0000000..67b787e --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/README @@ -0,0 +1,57 @@ +There are expectations of users of the fetcher code. This file attempts to document +some of the constraints that are present. Some are obvious, some are less so. It is +documented in the context of how OE uses it but the API calls are generic. + +a) network access for sources is only expected to happen in the do_fetch task. + This is not enforced or tested but is required so that we can: + + i) audit the sources used (i.e. for license/manifest reasons) + ii) support offline builds with a suitable cache + iii) allow work to continue even with downtime upstream + iv) allow for changes upstream in incompatible ways + v) allow rebuilding of the software in X years time + +b) network access is not expected in do_unpack task. + +c) you can take DL_DIR and use it as a mirror for offline builds. + +d) access to the network is only made when explicitly configured in recipes + (e.g. use of AUTOREV, or use of git tags which change revision). + +e) fetcher output is deterministic (i.e. if you fetch configuration XXX now it + will match in future exactly in a clean build with a new DL_DIR). + One specific pain point example are git tags. They can be replaced and change + so the git fetcher has to resolve them with the network. We use git revisions + where possible to avoid this and ensure determinism. + +f) network access is expected to work with the standard linux proxy variables + so that access behind firewalls works (the fetcher sets these in the + environment but only in the do_fetch tasks). + +g) access during parsing has to be minimal, a "git ls-remote" for an AUTOREV + git recipe might be ok but you can't expect to checkout a git tree. + +h) we need to provide revision information during parsing such that a version + for the recipe can be constructed. + +i) versions are expected to be able to increase in a way which sorts allowing + package feeds to operate (see PR server required for git revisions to sort). + +j) API to query for possible version upgrades of a url is highly desireable to + allow our automated upgrage code to function (it is implied this does always + have network access). + +k) Where fixes or changes to behaviour in the fetcher are made, we ask that + test cases are added (run with "bitbake-selftest bb.tests.fetch"). We do + have fairly extensive test coverage of the fetcher as it is the only way + to track all of its corner cases, it still doesn't give entire coverage + though sadly. + +l) If using tools during parse time, they will have to be in ASSUME_PROVIDED + in OE's context as we can't build git-native, then parse a recipe and use + git ls-remote. + +Not all fetchers support all features, autorev is optional and doesn't make +sense for some. Upgrade detection means different things in different contexts +too. + diff --git a/poky/bitbake/lib/bb/fetch2/__init__.py b/poky/bitbake/lib/bb/fetch2/__init__.py new file mode 100644 index 0000000..a314062 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/__init__.py @@ -0,0 +1,1984 @@ +""" +BitBake 'Fetch' implementations + +Classes for obtaining upstream sources for the +BitBake build tools. +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2012 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import os, re +import signal +import logging +import urllib.request, urllib.parse, urllib.error +if 'git' not in urllib.parse.uses_netloc: + urllib.parse.uses_netloc.append('git') +import operator +import collections +import subprocess +import pickle +import errno +import bb.persist_data, bb.utils +import bb.checksum +import bb.process +import bb.event + +__version__ = "2" +_checksum_cache = bb.checksum.FileChecksumCache() + +logger = logging.getLogger("BitBake.Fetcher") + +CHECKSUM_LIST = [ "md5", "sha256", "sha1", "sha384", "sha512" ] +SHOWN_CHECKSUM_LIST = ["sha256"] + +class BBFetchException(Exception): + """Class all fetch exceptions inherit from""" + def __init__(self, message): + self.msg = message + Exception.__init__(self, message) + + def __str__(self): + return self.msg + +class UntrustedUrl(BBFetchException): + """Exception raised when encountering a host not listed in BB_ALLOWED_NETWORKS""" + def __init__(self, url, message=''): + if message: + msg = message + else: + msg = "The URL: '%s' is not trusted and cannot be used" % url + self.url = url + BBFetchException.__init__(self, msg) + self.args = (url,) + +class MalformedUrl(BBFetchException): + """Exception raised when encountering an invalid url""" + def __init__(self, url, message=''): + if message: + msg = message + else: + msg = "The URL: '%s' is invalid and cannot be interpreted" % url + self.url = url + BBFetchException.__init__(self, msg) + self.args = (url,) + +class FetchError(BBFetchException): + """General fetcher exception when something happens incorrectly""" + def __init__(self, message, url = None): + if url: + msg = "Fetcher failure for URL: '%s'. %s" % (url, message) + else: + msg = "Fetcher failure: %s" % message + self.url = url + BBFetchException.__init__(self, msg) + self.args = (message, url) + +class ChecksumError(FetchError): + """Exception when mismatched checksum encountered""" + def __init__(self, message, url = None, checksum = None): + self.checksum = checksum + FetchError.__init__(self, message, url) + +class NoChecksumError(FetchError): + """Exception when no checksum is specified, but BB_STRICT_CHECKSUM is set""" + +class UnpackError(BBFetchException): + """General fetcher exception when something happens incorrectly when unpacking""" + def __init__(self, message, url): + msg = "Unpack failure for URL: '%s'. %s" % (url, message) + self.url = url + BBFetchException.__init__(self, msg) + self.args = (message, url) + +class NoMethodError(BBFetchException): + """Exception raised when there is no method to obtain a supplied url or set of urls""" + def __init__(self, url): + msg = "Could not find a fetcher which supports the URL: '%s'" % url + self.url = url + BBFetchException.__init__(self, msg) + self.args = (url,) + +class MissingParameterError(BBFetchException): + """Exception raised when a fetch method is missing a critical parameter in the url""" + def __init__(self, missing, url): + msg = "URL: '%s' is missing the required parameter '%s'" % (url, missing) + self.url = url + self.missing = missing + BBFetchException.__init__(self, msg) + self.args = (missing, url) + +class ParameterError(BBFetchException): + """Exception raised when a url cannot be processed due to invalid parameters.""" + def __init__(self, message, url): + msg = "URL: '%s' has invalid parameters. %s" % (url, message) + self.url = url + BBFetchException.__init__(self, msg) + self.args = (message, url) + +class NetworkAccess(BBFetchException): + """Exception raised when network access is disabled but it is required.""" + def __init__(self, url, cmd): + msg = "Network access disabled through BB_NO_NETWORK (or set indirectly due to use of BB_FETCH_PREMIRRORONLY) but access requested with command %s (for url %s)" % (cmd, url) + self.url = url + self.cmd = cmd + BBFetchException.__init__(self, msg) + self.args = (url, cmd) + +class NonLocalMethod(Exception): + def __init__(self): + Exception.__init__(self) + +class MissingChecksumEvent(bb.event.Event): + def __init__(self, url, **checksums): + self.url = url + self.checksums = checksums + bb.event.Event.__init__(self) + + +class URI(object): + """ + A class representing a generic URI, with methods for + accessing the URI components, and stringifies to the + URI. + + It is constructed by calling it with a URI, or setting + the attributes manually: + + uri = URI("http://example.com/") + + uri = URI() + uri.scheme = 'http' + uri.hostname = 'example.com' + uri.path = '/' + + It has the following attributes: + + * scheme (read/write) + * userinfo (authentication information) (read/write) + * username (read/write) + * password (read/write) + + Note, password is deprecated as of RFC 3986. + + * hostname (read/write) + * port (read/write) + * hostport (read only) + "hostname:port", if both are set, otherwise just "hostname" + * path (read/write) + * path_quoted (read/write) + A URI quoted version of path + * params (dict) (read/write) + * query (dict) (read/write) + * relative (bool) (read only) + True if this is a "relative URI", (e.g. file:foo.diff) + + It stringifies to the URI itself. + + Some notes about relative URIs: while it's specified that + a URI beginning with :// should either be directly + followed by a hostname or a /, the old URI handling of the + fetch2 library did not conform to this. Therefore, this URI + class has some kludges to make sure that URIs are parsed in + a way comforming to bitbake's current usage. This URI class + supports the following: + + file:relative/path.diff (IETF compliant) + git:relative/path.git (IETF compliant) + git:///absolute/path.git (IETF compliant) + file:///absolute/path.diff (IETF compliant) + + file://relative/path.diff (not IETF compliant) + + But it does not support the following: + + file://hostname/absolute/path.diff (would be IETF compliant) + + Note that the last case only applies to a list of + explicitly allowed schemes (currently only file://), that requires + its URIs to not have a network location. + """ + + _relative_schemes = ['file', 'git'] + _netloc_forbidden = ['file'] + + def __init__(self, uri=None): + self.scheme = '' + self.userinfo = '' + self.hostname = '' + self.port = None + self._path = '' + self.params = {} + self.query = {} + self.relative = False + + if not uri: + return + + # We hijack the URL parameters, since the way bitbake uses + # them are not quite RFC compliant. + uri, param_str = (uri.split(";", 1) + [None])[:2] + + urlp = urllib.parse.urlparse(uri) + self.scheme = urlp.scheme + + reparse = 0 + + # Coerce urlparse to make URI scheme use netloc + if not self.scheme in urllib.parse.uses_netloc: + urllib.parse.uses_params.append(self.scheme) + reparse = 1 + + # Make urlparse happy(/ier) by converting local resources + # to RFC compliant URL format. E.g.: + # file://foo.diff -> file:foo.diff + if urlp.scheme in self._netloc_forbidden: + uri = re.sub("(?<=:)//(?!/)", "", uri, 1) + reparse = 1 + + if reparse: + urlp = urllib.parse.urlparse(uri) + + # Identify if the URI is relative or not + if urlp.scheme in self._relative_schemes and \ + re.compile(r"^\w+:(?!//)").match(uri): + self.relative = True + + if not self.relative: + self.hostname = urlp.hostname or '' + self.port = urlp.port + + self.userinfo += urlp.username or '' + + if urlp.password: + self.userinfo += ':%s' % urlp.password + + self.path = urllib.parse.unquote(urlp.path) + + if param_str: + self.params = self._param_str_split(param_str, ";") + if urlp.query: + self.query = self._param_str_split(urlp.query, "&") + + def __str__(self): + userinfo = self.userinfo + if userinfo: + userinfo += '@' + + return "%s:%s%s%s%s%s%s" % ( + self.scheme, + '' if self.relative else '//', + userinfo, + self.hostport, + self.path_quoted, + self._query_str(), + self._param_str()) + + def _param_str(self): + return ( + ''.join([';', self._param_str_join(self.params, ";")]) + if self.params else '') + + def _query_str(self): + return ( + ''.join(['?', self._param_str_join(self.query, "&")]) + if self.query else '') + + def _param_str_split(self, string, elmdelim, kvdelim="="): + ret = collections.OrderedDict() + for k, v in [x.split(kvdelim, 1) for x in string.split(elmdelim) if x]: + ret[k] = v + return ret + + def _param_str_join(self, dict_, elmdelim, kvdelim="="): + return elmdelim.join([kvdelim.join([k, v]) for k, v in dict_.items()]) + + @property + def hostport(self): + if not self.port: + return self.hostname + return "%s:%d" % (self.hostname, self.port) + + @property + def path_quoted(self): + return urllib.parse.quote(self.path) + + @path_quoted.setter + def path_quoted(self, path): + self.path = urllib.parse.unquote(path) + + @property + def path(self): + return self._path + + @path.setter + def path(self, path): + self._path = path + + if not path or re.compile("^/").match(path): + self.relative = False + else: + self.relative = True + + @property + def username(self): + if self.userinfo: + return (self.userinfo.split(":", 1))[0] + return '' + + @username.setter + def username(self, username): + password = self.password + self.userinfo = username + if password: + self.userinfo += ":%s" % password + + @property + def password(self): + if self.userinfo and ":" in self.userinfo: + return (self.userinfo.split(":", 1))[1] + return '' + + @password.setter + def password(self, password): + self.userinfo = "%s:%s" % (self.username, password) + +def decodeurl(url): + """Decodes an URL into the tokens (scheme, network location, path, + user, password, parameters). + """ + + m = re.compile('(?P[^:]*)://((?P[^/;]+)@)?(?P[^;]+)(;(?P.*))?').match(url) + if not m: + raise MalformedUrl(url) + + type = m.group('type') + location = m.group('location') + if not location: + raise MalformedUrl(url) + user = m.group('user') + parm = m.group('parm') + + locidx = location.find('/') + if locidx != -1 and type.lower() != 'file': + host = location[:locidx] + path = location[locidx:] + elif type.lower() == 'file': + host = "" + path = location + else: + host = location + path = "/" + if user: + m = re.compile('(?P[^:]+)(:?(?P.*))').match(user) + if m: + user = m.group('user') + pswd = m.group('pswd') + else: + user = '' + pswd = '' + + p = collections.OrderedDict() + if parm: + for s in parm.split(';'): + if s: + if not '=' in s: + raise MalformedUrl(url, "The URL: '%s' is invalid: parameter %s does not specify a value (missing '=')" % (url, s)) + s1, s2 = s.split('=') + p[s1] = s2 + + return type, host, urllib.parse.unquote(path), user, pswd, p + +def encodeurl(decoded): + """Encodes a URL from tokens (scheme, network location, path, + user, password, parameters). + """ + + type, host, path, user, pswd, p = decoded + + if not type: + raise MissingParameterError('type', "encoded from the data %s" % str(decoded)) + url = ['%s://' % type] + if user and type != "file": + url.append("%s" % user) + if pswd: + url.append(":%s" % pswd) + url.append("@") + if host and type != "file": + url.append("%s" % host) + if path: + # Standardise path to ensure comparisons work + while '//' in path: + path = path.replace("//", "/") + url.append("%s" % urllib.parse.quote(path)) + if p: + for parm in p: + url.append(";%s=%s" % (parm, p[parm])) + + return "".join(url) + +def uri_replace(ud, uri_find, uri_replace, replacements, d, mirrortarball=None): + if not ud.url or not uri_find or not uri_replace: + logger.error("uri_replace: passed an undefined value, not replacing") + return None + uri_decoded = list(decodeurl(ud.url)) + uri_find_decoded = list(decodeurl(uri_find)) + uri_replace_decoded = list(decodeurl(uri_replace)) + logger.debug2("For url %s comparing %s to %s" % (uri_decoded, uri_find_decoded, uri_replace_decoded)) + result_decoded = ['', '', '', '', '', {}] + # 0 - type, 1 - host, 2 - path, 3 - user, 4- pswd, 5 - params + for loc, i in enumerate(uri_find_decoded): + result_decoded[loc] = uri_decoded[loc] + regexp = i + if loc == 0 and regexp and not regexp.endswith("$"): + # Leaving the type unanchored can mean "https" matching "file" can become "files" + # which is clearly undesirable. + regexp += "$" + if loc == 5: + # Handle URL parameters + if i: + # Any specified URL parameters must match + for k in uri_find_decoded[loc]: + if uri_decoded[loc][k] != uri_find_decoded[loc][k]: + return None + # Overwrite any specified replacement parameters + for k in uri_replace_decoded[loc]: + for l in replacements: + uri_replace_decoded[loc][k] = uri_replace_decoded[loc][k].replace(l, replacements[l]) + result_decoded[loc][k] = uri_replace_decoded[loc][k] + elif (loc == 3 or loc == 4) and uri_replace_decoded[loc]: + # User/password in the replacement is just a straight replacement + result_decoded[loc] = uri_replace_decoded[loc] + elif (re.match(regexp, uri_decoded[loc])): + if not uri_replace_decoded[loc]: + result_decoded[loc] = "" + else: + for k in replacements: + uri_replace_decoded[loc] = uri_replace_decoded[loc].replace(k, replacements[k]) + #bb.note("%s %s %s" % (regexp, uri_replace_decoded[loc], uri_decoded[loc])) + result_decoded[loc] = re.sub(regexp, uri_replace_decoded[loc], uri_decoded[loc], 1) + if loc == 2: + # Handle path manipulations + basename = None + if uri_decoded[0] != uri_replace_decoded[0] and mirrortarball: + # If the source and destination url types differ, must be a mirrortarball mapping + basename = os.path.basename(mirrortarball) + # Kill parameters, they make no sense for mirror tarballs + uri_decoded[5] = {} + elif ud.localpath and ud.method.supports_checksum(ud): + basename = os.path.basename(ud.localpath) + if basename: + uri_basename = os.path.basename(uri_decoded[loc]) + # Prefix with a slash as a sentinel in case + # result_decoded[loc] does not contain one. + path = "/" + result_decoded[loc] + if uri_basename and basename != uri_basename and path.endswith("/" + uri_basename): + result_decoded[loc] = path[1:-len(uri_basename)] + basename + elif not path.endswith("/" + basename): + result_decoded[loc] = os.path.join(path[1:], basename) + else: + return None + result = encodeurl(result_decoded) + if result == ud.url: + return None + logger.debug2("For url %s returning %s" % (ud.url, result)) + return result + +methods = [] +urldata_cache = {} +saved_headrevs = {} + +def fetcher_init(d): + """ + Called to initialize the fetchers once the configuration data is known. + Calls before this must not hit the cache. + """ + + revs = bb.persist_data.persist('BB_URI_HEADREVS', d) + try: + # fetcher_init is called multiple times, so make sure we only save the + # revs the first time it is called. + if not bb.fetch2.saved_headrevs: + bb.fetch2.saved_headrevs = dict(revs) + except: + pass + + # When to drop SCM head revisions controlled by user policy + srcrev_policy = d.getVar('BB_SRCREV_POLICY') or "clear" + if srcrev_policy == "cache": + logger.debug("Keeping SRCREV cache due to cache policy of: %s", srcrev_policy) + elif srcrev_policy == "clear": + logger.debug("Clearing SRCREV cache due to cache policy of: %s", srcrev_policy) + revs.clear() + else: + raise FetchError("Invalid SRCREV cache policy of: %s" % srcrev_policy) + + _checksum_cache.init_cache(d) + + for m in methods: + if hasattr(m, "init"): + m.init(d) + +def fetcher_parse_save(): + _checksum_cache.save_extras() + +def fetcher_parse_done(): + _checksum_cache.save_merge() + +def fetcher_compare_revisions(d): + """ + Compare the revisions in the persistent cache with the saved values from + when bitbake was started and return true if they have changed. + """ + + headrevs = dict(bb.persist_data.persist('BB_URI_HEADREVS', d)) + return headrevs != bb.fetch2.saved_headrevs + +def mirror_from_string(data): + mirrors = (data or "").replace('\\n',' ').split() + # Split into pairs + if len(mirrors) % 2 != 0: + bb.warn('Invalid mirror data %s, should have paired members.' % data) + return list(zip(*[iter(mirrors)]*2)) + +def verify_checksum(ud, d, precomputed={}): + """ + verify the MD5 and SHA256 checksum for downloaded src + + Raises a FetchError if one or both of the SRC_URI checksums do not match + the downloaded file, or if BB_STRICT_CHECKSUM is set and there are no + checksums specified. + + Returns a dict of checksums that can be stored in a done stamp file and + passed in as precomputed parameter in a later call to avoid re-computing + the checksums from the file. This allows verifying the checksums of the + file against those in the recipe each time, rather than only after + downloading. See https://bugzilla.yoctoproject.org/show_bug.cgi?id=5571. + """ + + if ud.ignore_checksums or not ud.method.supports_checksum(ud): + return {} + + def compute_checksum_info(checksum_id): + checksum_name = getattr(ud, "%s_name" % checksum_id) + + if checksum_id in precomputed: + checksum_data = precomputed[checksum_id] + else: + checksum_data = getattr(bb.utils, "%s_file" % checksum_id)(ud.localpath) + + checksum_expected = getattr(ud, "%s_expected" % checksum_id) + + if checksum_expected == '': + checksum_expected = None + + return { + "id": checksum_id, + "name": checksum_name, + "data": checksum_data, + "expected": checksum_expected + } + + checksum_infos = [] + for checksum_id in CHECKSUM_LIST: + checksum_infos.append(compute_checksum_info(checksum_id)) + + checksum_dict = {ci["id"] : ci["data"] for ci in checksum_infos} + checksum_event = {"%ssum" % ci["id"] : ci["data"] for ci in checksum_infos} + + for ci in checksum_infos: + if ci["id"] in SHOWN_CHECKSUM_LIST: + checksum_lines = ["SRC_URI[%s] = \"%s\"" % (ci["name"], ci["data"])] + + # If no checksum has been provided + if ud.method.recommends_checksum(ud) and all(ci["expected"] is None for ci in checksum_infos): + messages = [] + strict = d.getVar("BB_STRICT_CHECKSUM") or "0" + + # If strict checking enabled and neither sum defined, raise error + if strict == "1": + messages.append("No checksum specified for '%s', please add at " \ + "least one to the recipe:" % ud.localpath) + messages.extend(checksum_lines) + logger.error("\n".join(messages)) + raise NoChecksumError("Missing SRC_URI checksum", ud.url) + + bb.event.fire(MissingChecksumEvent(ud.url, **checksum_event), d) + + if strict == "ignore": + return checksum_dict + + # Log missing sums so user can more easily add them + messages.append("Missing checksum for '%s', consider adding at " \ + "least one to the recipe:" % ud.localpath) + messages.extend(checksum_lines) + logger.warning("\n".join(messages)) + + # We want to alert the user if a checksum is defined in the recipe but + # it does not match. + messages = [] + messages.append("Checksum mismatch!") + bad_checksum = None + + for ci in checksum_infos: + if ci["expected"] and ci["expected"] != ci["data"]: + messages.append("File: '%s' has %s checksum '%s' when '%s' was " \ + "expected" % (ud.localpath, ci["id"], ci["data"], ci["expected"])) + bad_checksum = ci["data"] + + if bad_checksum: + messages.append("If this change is expected (e.g. you have upgraded " \ + "to a new version without updating the checksums) " \ + "then you can use these lines within the recipe:") + messages.extend(checksum_lines) + messages.append("Otherwise you should retry the download and/or " \ + "check with upstream to determine if the file has " \ + "become corrupted or otherwise unexpectedly modified.") + raise ChecksumError("\n".join(messages), ud.url, bad_checksum) + + return checksum_dict + +def verify_donestamp(ud, d, origud=None): + """ + Check whether the done stamp file has the right checksums (if the fetch + method supports them). If it doesn't, delete the done stamp and force + a re-download. + + Returns True, if the donestamp exists and is valid, False otherwise. When + returning False, any existing done stamps are removed. + """ + if not ud.needdonestamp or (origud and not origud.needdonestamp): + return True + + if not os.path.exists(ud.localpath): + # local path does not exist + if os.path.exists(ud.donestamp): + # done stamp exists, but the downloaded file does not; the done stamp + # must be incorrect, re-trigger the download + bb.utils.remove(ud.donestamp) + return False + + if (not ud.method.supports_checksum(ud) or + (origud and not origud.method.supports_checksum(origud))): + # if done stamp exists and checksums not supported; assume the local + # file is current + return os.path.exists(ud.donestamp) + + precomputed_checksums = {} + # Only re-use the precomputed checksums if the donestamp is newer than the + # file. Do not rely on the mtime of directories, though. If ud.localpath is + # a directory, there will probably not be any checksums anyway. + if os.path.exists(ud.donestamp) and (os.path.isdir(ud.localpath) or + os.path.getmtime(ud.localpath) < os.path.getmtime(ud.donestamp)): + try: + with open(ud.donestamp, "rb") as cachefile: + pickled = pickle.Unpickler(cachefile) + precomputed_checksums.update(pickled.load()) + except Exception as e: + # Avoid the warnings on the upgrade path from emtpy done stamp + # files to those containing the checksums. + if not isinstance(e, EOFError): + # Ignore errors, they aren't fatal + logger.warning("Couldn't load checksums from donestamp %s: %s " + "(msg: %s)" % (ud.donestamp, type(e).__name__, + str(e))) + + try: + checksums = verify_checksum(ud, d, precomputed_checksums) + # If the cache file did not have the checksums, compute and store them + # as an upgrade path from the previous done stamp file format. + if checksums != precomputed_checksums: + with open(ud.donestamp, "wb") as cachefile: + p = pickle.Pickler(cachefile, 2) + p.dump(checksums) + return True + except ChecksumError as e: + # Checksums failed to verify, trigger re-download and remove the + # incorrect stamp file. + logger.warning("Checksum mismatch for local file %s\n" + "Cleaning and trying again." % ud.localpath) + if os.path.exists(ud.localpath): + rename_bad_checksum(ud, e.checksum) + bb.utils.remove(ud.donestamp) + return False + + +def update_stamp(ud, d): + """ + donestamp is file stamp indicating the whole fetching is done + this function update the stamp after verifying the checksum + """ + if not ud.needdonestamp: + return + + if os.path.exists(ud.donestamp): + # Touch the done stamp file to show active use of the download + try: + os.utime(ud.donestamp, None) + except: + # Errors aren't fatal here + pass + else: + try: + checksums = verify_checksum(ud, d) + # Store the checksums for later re-verification against the recipe + with open(ud.donestamp, "wb") as cachefile: + p = pickle.Pickler(cachefile, 2) + p.dump(checksums) + except ChecksumError as e: + # Checksums failed to verify, trigger re-download and remove the + # incorrect stamp file. + logger.warning("Checksum mismatch for local file %s\n" + "Cleaning and trying again." % ud.localpath) + if os.path.exists(ud.localpath): + rename_bad_checksum(ud, e.checksum) + bb.utils.remove(ud.donestamp) + raise + +def subprocess_setup(): + # Python installs a SIGPIPE handler by default. This is usually not what + # non-Python subprocesses expect. + # SIGPIPE errors are known issues with gzip/bash + signal.signal(signal.SIGPIPE, signal.SIG_DFL) + +def get_autorev(d): + # only not cache src rev in autorev case + if d.getVar('BB_SRCREV_POLICY') != "cache": + d.setVar('BB_DONT_CACHE', '1') + return "AUTOINC" + +def get_srcrev(d, method_name='sortable_revision'): + """ + Return the revision string, usually for use in the version string (PV) of the current package + Most packages usually only have one SCM so we just pass on the call. + In the multi SCM case, we build a value based on SRCREV_FORMAT which must + have been set. + + The idea here is that we put the string "AUTOINC+" into return value if the revisions are not + incremental, other code is then responsible for turning that into an increasing value (if needed) + + A method_name can be supplied to retrieve an alternatively formatted revision from a fetcher, if + that fetcher provides a method with the given name and the same signature as sortable_revision. + """ + + d.setVar("__BBSEENSRCREV", "1") + recursion = d.getVar("__BBINSRCREV") + if recursion: + raise FetchError("There are recursive references in fetcher variables, likely through SRC_URI") + d.setVar("__BBINSRCREV", True) + + scms = [] + fetcher = Fetch(d.getVar('SRC_URI').split(), d) + urldata = fetcher.ud + for u in urldata: + if urldata[u].method.supports_srcrev(): + scms.append(u) + + if not scms: + raise FetchError("SRCREV was used yet no valid SCM was found in SRC_URI") + + if len(scms) == 1 and len(urldata[scms[0]].names) == 1: + autoinc, rev = getattr(urldata[scms[0]].method, method_name)(urldata[scms[0]], d, urldata[scms[0]].names[0]) + if len(rev) > 10: + rev = rev[:10] + d.delVar("__BBINSRCREV") + if autoinc: + return "AUTOINC+" + rev + return rev + + # + # Mutiple SCMs are in SRC_URI so we resort to SRCREV_FORMAT + # + format = d.getVar('SRCREV_FORMAT') + if not format: + raise FetchError("The SRCREV_FORMAT variable must be set when multiple SCMs are used.\n"\ + "The SCMs are:\n%s" % '\n'.join(scms)) + + name_to_rev = {} + seenautoinc = False + for scm in scms: + ud = urldata[scm] + for name in ud.names: + autoinc, rev = getattr(ud.method, method_name)(ud, d, name) + seenautoinc = seenautoinc or autoinc + if len(rev) > 10: + rev = rev[:10] + name_to_rev[name] = rev + # Replace names by revisions in the SRCREV_FORMAT string. The approach used + # here can handle names being prefixes of other names and names appearing + # as substrings in revisions (in which case the name should not be + # expanded). The '|' regular expression operator tries matches from left to + # right, so we need to sort the names with the longest ones first. + names_descending_len = sorted(name_to_rev, key=len, reverse=True) + name_to_rev_re = "|".join(re.escape(name) for name in names_descending_len) + format = re.sub(name_to_rev_re, lambda match: name_to_rev[match.group(0)], format) + + if seenautoinc: + format = "AUTOINC+" + format + + d.delVar("__BBINSRCREV") + return format + +def localpath(url, d): + fetcher = bb.fetch2.Fetch([url], d) + return fetcher.localpath(url) + +# Need to export PATH as binary could be in metadata paths +# rather than host provided +# Also include some other variables. +FETCH_EXPORT_VARS = ['HOME', 'PATH', + 'HTTP_PROXY', 'http_proxy', + 'HTTPS_PROXY', 'https_proxy', + 'FTP_PROXY', 'ftp_proxy', + 'FTPS_PROXY', 'ftps_proxy', + 'NO_PROXY', 'no_proxy', + 'ALL_PROXY', 'all_proxy', + 'GIT_PROXY_COMMAND', + 'GIT_SSH', + 'GIT_SSH_COMMAND', + 'GIT_SSL_CAINFO', + 'GIT_SMART_HTTP', + 'SSH_AUTH_SOCK', 'SSH_AGENT_PID', + 'SOCKS5_USER', 'SOCKS5_PASSWD', + 'DBUS_SESSION_BUS_ADDRESS', + 'P4CONFIG', + 'SSL_CERT_FILE', + 'AWS_PROFILE', + 'AWS_ACCESS_KEY_ID', + 'AWS_SECRET_ACCESS_KEY', + 'AWS_DEFAULT_REGION'] + +def get_fetcher_environment(d): + newenv = {} + origenv = d.getVar("BB_ORIGENV") + for name in bb.fetch2.FETCH_EXPORT_VARS: + value = d.getVar(name) + if not value and origenv: + value = origenv.getVar(name) + if value: + newenv[name] = value + return newenv + +def runfetchcmd(cmd, d, quiet=False, cleanup=None, log=None, workdir=None): + """ + Run cmd returning the command output + Raise an error if interrupted or cmd fails + Optionally echo command output to stdout + Optionally remove the files/directories listed in cleanup upon failure + """ + + exportvars = FETCH_EXPORT_VARS + + if not cleanup: + cleanup = [] + + # If PATH contains WORKDIR which contains PV-PR which contains SRCPV we + # can end up in circular recursion here so give the option of breaking it + # in a data store copy. + try: + d.getVar("PV") + d.getVar("PR") + except bb.data_smart.ExpansionError: + d = bb.data.createCopy(d) + d.setVar("PV", "fetcheravoidrecurse") + d.setVar("PR", "fetcheravoidrecurse") + + origenv = d.getVar("BB_ORIGENV", False) + for var in exportvars: + val = d.getVar(var) or (origenv and origenv.getVar(var)) + if val: + cmd = 'export ' + var + '=\"%s\"; %s' % (val, cmd) + + # Disable pseudo as it may affect ssh, potentially causing it to hang. + cmd = 'export PSEUDO_DISABLED=1; ' + cmd + + if workdir: + logger.debug("Running '%s' in %s" % (cmd, workdir)) + else: + logger.debug("Running %s", cmd) + + success = False + error_message = "" + + try: + (output, errors) = bb.process.run(cmd, log=log, shell=True, stderr=subprocess.PIPE, cwd=workdir) + success = True + except bb.process.NotFoundError as e: + error_message = "Fetch command %s not found" % (e.command) + except bb.process.ExecutionError as e: + if e.stdout: + output = "output:\n%s\n%s" % (e.stdout, e.stderr) + elif e.stderr: + output = "output:\n%s" % e.stderr + else: + output = "no output" + error_message = "Fetch command %s failed with exit code %s, %s" % (e.command, e.exitcode, output) + except bb.process.CmdError as e: + error_message = "Fetch command %s could not be run:\n%s" % (e.command, e.msg) + if not success: + for f in cleanup: + try: + bb.utils.remove(f, True) + except OSError: + pass + + raise FetchError(error_message) + + return output + +def check_network_access(d, info, url): + """ + log remote network access, and error if BB_NO_NETWORK is set or the given + URI is untrusted + """ + if bb.utils.to_boolean(d.getVar("BB_NO_NETWORK")): + raise NetworkAccess(url, info) + elif not trusted_network(d, url): + raise UntrustedUrl(url, info) + else: + logger.debug("Fetcher accessed the network with the command %s" % info) + +def build_mirroruris(origud, mirrors, ld): + uris = [] + uds = [] + + replacements = {} + replacements["TYPE"] = origud.type + replacements["HOST"] = origud.host + replacements["PATH"] = origud.path + replacements["BASENAME"] = origud.path.split("/")[-1] + replacements["MIRRORNAME"] = origud.host.replace(':','.') + origud.path.replace('/', '.').replace('*', '.') + + def adduri(ud, uris, uds, mirrors, tarballs): + for line in mirrors: + try: + (find, replace) = line + except ValueError: + continue + + for tarball in tarballs: + newuri = uri_replace(ud, find, replace, replacements, ld, tarball) + if not newuri or newuri in uris or newuri == origud.url: + continue + + if not trusted_network(ld, newuri): + logger.debug("Mirror %s not in the list of trusted networks, skipping" % (newuri)) + continue + + # Create a local copy of the mirrors minus the current line + # this will prevent us from recursively processing the same line + # as well as indirect recursion A -> B -> C -> A + localmirrors = list(mirrors) + localmirrors.remove(line) + + try: + newud = FetchData(newuri, ld) + newud.setup_localpath(ld) + except bb.fetch2.BBFetchException as e: + logger.debug("Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url)) + logger.debug(str(e)) + try: + # setup_localpath of file:// urls may fail, we should still see + # if mirrors of the url exist + adduri(newud, uris, uds, localmirrors, tarballs) + except UnboundLocalError: + pass + continue + uris.append(newuri) + uds.append(newud) + + adduri(newud, uris, uds, localmirrors, tarballs) + + adduri(origud, uris, uds, mirrors, origud.mirrortarballs or [None]) + + return uris, uds + +def rename_bad_checksum(ud, suffix): + """ + Renames files to have suffix from parameter + """ + + if ud.localpath is None: + return + + new_localpath = "%s_bad-checksum_%s" % (ud.localpath, suffix) + bb.warn("Renaming %s to %s" % (ud.localpath, new_localpath)) + if not bb.utils.movefile(ud.localpath, new_localpath): + bb.warn("Renaming %s to %s failed, grep movefile in log.do_fetch to see why" % (ud.localpath, new_localpath)) + + +def try_mirror_url(fetch, origud, ud, ld, check = False): + # Return of None or a value means we're finished + # False means try another url + + if ud.lockfile and ud.lockfile != origud.lockfile: + lf = bb.utils.lockfile(ud.lockfile) + + try: + if check: + found = ud.method.checkstatus(fetch, ud, ld) + if found: + return found + return False + + if not verify_donestamp(ud, ld, origud) or ud.method.need_update(ud, ld): + ud.method.download(ud, ld) + if hasattr(ud.method,"build_mirror_data"): + ud.method.build_mirror_data(ud, ld) + + if not ud.localpath or not os.path.exists(ud.localpath): + return False + + if ud.localpath == origud.localpath: + return ud.localpath + + # We may be obtaining a mirror tarball which needs further processing by the real fetcher + # If that tarball is a local file:// we need to provide a symlink to it + dldir = ld.getVar("DL_DIR") + + if origud.mirrortarballs and os.path.basename(ud.localpath) in origud.mirrortarballs and os.path.basename(ud.localpath) != os.path.basename(origud.localpath): + # Create donestamp in old format to avoid triggering a re-download + if ud.donestamp: + bb.utils.mkdirhier(os.path.dirname(ud.donestamp)) + open(ud.donestamp, 'w').close() + dest = os.path.join(dldir, os.path.basename(ud.localpath)) + if not os.path.exists(dest): + # In case this is executing without any file locks held (as is + # the case for file:// URLs), two tasks may end up here at the + # same time, in which case we do not want the second task to + # fail when the link has already been created by the first task. + try: + os.symlink(ud.localpath, dest) + except FileExistsError: + pass + if not verify_donestamp(origud, ld) or origud.method.need_update(origud, ld): + origud.method.download(origud, ld) + if hasattr(origud.method, "build_mirror_data"): + origud.method.build_mirror_data(origud, ld) + return origud.localpath + # Otherwise the result is a local file:// and we symlink to it + ensure_symlink(ud.localpath, origud.localpath) + update_stamp(origud, ld) + return ud.localpath + + except bb.fetch2.NetworkAccess: + raise + + except IOError as e: + if e.errno in [errno.ESTALE]: + logger.warning("Stale Error Observed %s." % ud.url) + return False + raise + + except bb.fetch2.BBFetchException as e: + if isinstance(e, ChecksumError): + logger.warning("Mirror checksum failure for url %s (original url: %s)\nCleaning and trying again." % (ud.url, origud.url)) + logger.warning(str(e)) + if os.path.exists(ud.localpath): + rename_bad_checksum(ud, e.checksum) + elif isinstance(e, NoChecksumError): + raise + else: + logger.debug("Mirror fetch failure for url %s (original url: %s)" % (ud.url, origud.url)) + logger.debug(str(e)) + try: + ud.method.clean(ud, ld) + except UnboundLocalError: + pass + return False + finally: + if ud.lockfile and ud.lockfile != origud.lockfile: + bb.utils.unlockfile(lf) + + +def ensure_symlink(target, link_name): + if not os.path.exists(link_name): + dirname = os.path.dirname(link_name) + bb.utils.mkdirhier(dirname) + if os.path.islink(link_name): + # Broken symbolic link + os.unlink(link_name) + + # In case this is executing without any file locks held (as is + # the case for file:// URLs), two tasks may end up here at the + # same time, in which case we do not want the second task to + # fail when the link has already been created by the first task. + try: + os.symlink(target, link_name) + except FileExistsError: + pass + + +def try_mirrors(fetch, d, origud, mirrors, check = False): + """ + Try to use a mirrored version of the sources. + This method will be automatically called before the fetchers go. + + d Is a bb.data instance + uri is the original uri we're trying to download + mirrors is the list of mirrors we're going to try + """ + ld = d.createCopy() + + uris, uds = build_mirroruris(origud, mirrors, ld) + + for index, uri in enumerate(uris): + ret = try_mirror_url(fetch, origud, uds[index], ld, check) + if ret: + return ret + return None + +def trusted_network(d, url): + """ + Use a trusted url during download if networking is enabled and + BB_ALLOWED_NETWORKS is set globally or for a specific recipe. + Note: modifies SRC_URI & mirrors. + """ + if bb.utils.to_boolean(d.getVar("BB_NO_NETWORK")): + return True + + pkgname = d.expand(d.getVar('PN', False)) + trusted_hosts = None + if pkgname: + trusted_hosts = d.getVarFlag('BB_ALLOWED_NETWORKS', pkgname, False) + + if not trusted_hosts: + trusted_hosts = d.getVar('BB_ALLOWED_NETWORKS') + + # Not enabled. + if not trusted_hosts: + return True + + scheme, network, path, user, passwd, param = decodeurl(url) + + if not network: + return True + + network = network.split(':')[0] + network = network.lower() + + for host in trusted_hosts.split(" "): + host = host.lower() + if host.startswith("*.") and ("." + network).endswith(host[1:]): + return True + if host == network: + return True + + return False + +def srcrev_internal_helper(ud, d, name): + """ + Return: + a) a source revision if specified + b) latest revision if SRCREV="AUTOINC" + c) None if not specified + """ + + srcrev = None + pn = d.getVar("PN") + attempts = [] + if name != '' and pn: + attempts.append("SRCREV_%s:pn-%s" % (name, pn)) + if name != '': + attempts.append("SRCREV_%s" % name) + if pn: + attempts.append("SRCREV:pn-%s" % pn) + attempts.append("SRCREV") + + for a in attempts: + srcrev = d.getVar(a) + if srcrev and srcrev != "INVALID": + break + + if 'rev' in ud.parm and 'tag' in ud.parm: + raise FetchError("Please specify a ;rev= parameter or a ;tag= parameter in the url %s but not both." % (ud.url)) + + if 'rev' in ud.parm or 'tag' in ud.parm: + if 'rev' in ud.parm: + parmrev = ud.parm['rev'] + else: + parmrev = ud.parm['tag'] + if srcrev == "INVALID" or not srcrev: + return parmrev + if srcrev != parmrev: + raise FetchError("Conflicting revisions (%s from SRCREV and %s from the url) found, please specify one valid value" % (srcrev, parmrev)) + return parmrev + + if srcrev == "INVALID" or not srcrev: + raise FetchError("Please set a valid SRCREV for url %s (possible key names are %s, or use a ;rev=X URL parameter)" % (str(attempts), ud.url), ud.url) + if srcrev == "AUTOINC": + srcrev = ud.method.latest_revision(ud, d, name) + + return srcrev + +def get_checksum_file_list(d): + """ Get a list of files checksum in SRC_URI + + Returns the resolved local paths of all local file entries in + SRC_URI as a space-separated string + """ + fetch = Fetch([], d, cache = False, localonly = True) + + dl_dir = d.getVar('DL_DIR') + filelist = [] + for u in fetch.urls: + ud = fetch.ud[u] + + if ud and isinstance(ud.method, local.Local): + paths = ud.method.localpaths(ud, d) + for f in paths: + pth = ud.decodedurl + if f.startswith(dl_dir): + # The local fetcher's behaviour is to return a path under DL_DIR if it couldn't find the file anywhere else + if os.path.exists(f): + bb.warn("Getting checksum for %s SRC_URI entry %s: file not found except in DL_DIR" % (d.getVar('PN'), os.path.basename(f))) + else: + bb.warn("Unable to get checksum for %s SRC_URI entry %s: file could not be found" % (d.getVar('PN'), os.path.basename(f))) + filelist.append(f + ":" + str(os.path.exists(f))) + + return " ".join(filelist) + +def get_file_checksums(filelist, pn, localdirsexclude): + """Get a list of the checksums for a list of local files + + Returns the checksums for a list of local files, caching the results as + it proceeds + + """ + return _checksum_cache.get_checksums(filelist, pn, localdirsexclude) + + +class FetchData(object): + """ + A class which represents the fetcher state for a given URI. + """ + def __init__(self, url, d, localonly = False): + # localpath is the location of a downloaded result. If not set, the file is local. + self.donestamp = None + self.needdonestamp = True + self.localfile = "" + self.localpath = None + self.lockfile = None + self.mirrortarballs = [] + self.basename = None + self.basepath = None + (self.type, self.host, self.path, self.user, self.pswd, self.parm) = decodeurl(d.expand(url)) + self.date = self.getSRCDate(d) + self.url = url + if not self.user and "user" in self.parm: + self.user = self.parm["user"] + if not self.pswd and "pswd" in self.parm: + self.pswd = self.parm["pswd"] + self.setup = False + + def configure_checksum(checksum_id): + if "name" in self.parm: + checksum_name = "%s.%ssum" % (self.parm["name"], checksum_id) + else: + checksum_name = "%ssum" % checksum_id + + setattr(self, "%s_name" % checksum_id, checksum_name) + + if checksum_name in self.parm: + checksum_expected = self.parm[checksum_name] + elif self.type not in ["http", "https", "ftp", "ftps", "sftp", "s3", "az"]: + checksum_expected = None + else: + checksum_expected = d.getVarFlag("SRC_URI", checksum_name) + + setattr(self, "%s_expected" % checksum_id, checksum_expected) + + for checksum_id in CHECKSUM_LIST: + configure_checksum(checksum_id) + + self.ignore_checksums = False + + self.names = self.parm.get("name",'default').split(',') + + self.method = None + for m in methods: + if m.supports(self, d): + self.method = m + break + + if not self.method: + raise NoMethodError(url) + + if localonly and not isinstance(self.method, local.Local): + raise NonLocalMethod() + + if self.parm.get("proto", None) and "protocol" not in self.parm: + logger.warning('Consider updating %s recipe to use "protocol" not "proto" in SRC_URI.', d.getVar('PN')) + self.parm["protocol"] = self.parm.get("proto", None) + + if hasattr(self.method, "urldata_init"): + self.method.urldata_init(self, d) + + if "localpath" in self.parm: + # if user sets localpath for file, use it instead. + self.localpath = self.parm["localpath"] + self.basename = os.path.basename(self.localpath) + elif self.localfile: + self.localpath = self.method.localpath(self, d) + + dldir = d.getVar("DL_DIR") + + if not self.needdonestamp: + return + + # Note: .done and .lock files should always be in DL_DIR whereas localpath may not be. + if self.localpath and self.localpath.startswith(dldir): + basepath = self.localpath + elif self.localpath: + basepath = dldir + os.sep + os.path.basename(self.localpath) + elif self.basepath or self.basename: + basepath = dldir + os.sep + (self.basepath or self.basename) + else: + bb.fatal("Can't determine lock path for url %s" % url) + + self.donestamp = basepath + '.done' + self.lockfile = basepath + '.lock' + + def setup_revisions(self, d): + self.revisions = {} + for name in self.names: + self.revisions[name] = srcrev_internal_helper(self, d, name) + + # add compatibility code for non name specified case + if len(self.names) == 1: + self.revision = self.revisions[self.names[0]] + + def setup_localpath(self, d): + if not self.localpath: + self.localpath = self.method.localpath(self, d) + + def getSRCDate(self, d): + """ + Return the SRC Date for the component + + d the bb.data module + """ + if "srcdate" in self.parm: + return self.parm['srcdate'] + + pn = d.getVar("PN") + + if pn: + return d.getVar("SRCDATE_%s" % pn) or d.getVar("SRCDATE") or d.getVar("DATE") + + return d.getVar("SRCDATE") or d.getVar("DATE") + +class FetchMethod(object): + """Base class for 'fetch'ing data""" + + def __init__(self, urls=None): + self.urls = [] + + def supports(self, urldata, d): + """ + Check to see if this fetch class supports a given url. + """ + return 0 + + def localpath(self, urldata, d): + """ + Return the local filename of a given url assuming a successful fetch. + Can also setup variables in urldata for use in go (saving code duplication + and duplicate code execution) + """ + return os.path.join(d.getVar("DL_DIR"), urldata.localfile) + + def supports_checksum(self, urldata): + """ + Is localpath something that can be represented by a checksum? + """ + + # We cannot compute checksums for directories + if os.path.isdir(urldata.localpath): + return False + return True + + def recommends_checksum(self, urldata): + """ + Is the backend on where checksumming is recommended (should warnings + be displayed if there is no checksum)? + """ + return False + + def verify_donestamp(self, ud, d): + """ + Verify the donestamp file + """ + return verify_donestamp(ud, d) + + def update_donestamp(self, ud, d): + """ + Update the donestamp file + """ + update_stamp(ud, d) + + def _strip_leading_slashes(self, relpath): + """ + Remove leading slash as os.path.join can't cope + """ + while os.path.isabs(relpath): + relpath = relpath[1:] + return relpath + + def setUrls(self, urls): + self.__urls = urls + + def getUrls(self): + return self.__urls + + urls = property(getUrls, setUrls, None, "Urls property") + + def need_update(self, ud, d): + """ + Force a fetch, even if localpath exists? + """ + if os.path.exists(ud.localpath): + return False + return True + + def supports_srcrev(self): + """ + The fetcher supports auto source revisions (SRCREV) + """ + return False + + def download(self, urldata, d): + """ + Fetch urls + Assumes localpath was called first + """ + raise NoMethodError(urldata.url) + + def unpack(self, urldata, rootdir, data): + iterate = False + file = urldata.localpath + + try: + unpack = bb.utils.to_boolean(urldata.parm.get('unpack'), True) + except ValueError as exc: + bb.fatal("Invalid value for 'unpack' parameter for %s: %s" % + (file, urldata.parm.get('unpack'))) + + base, ext = os.path.splitext(file) + if ext in ['.gz', '.bz2', '.Z', '.xz', '.lz']: + efile = os.path.join(rootdir, os.path.basename(base)) + else: + efile = file + cmd = None + + if unpack: + tar_cmd = 'tar --extract --no-same-owner' + if 'striplevel' in urldata.parm: + tar_cmd += ' --strip-components=%s' % urldata.parm['striplevel'] + if file.endswith('.tar'): + cmd = '%s -f %s' % (tar_cmd, file) + elif file.endswith('.tgz') or file.endswith('.tar.gz') or file.endswith('.tar.Z'): + cmd = '%s -z -f %s' % (tar_cmd, file) + elif file.endswith('.tbz') or file.endswith('.tbz2') or file.endswith('.tar.bz2'): + cmd = 'bzip2 -dc %s | %s -f -' % (file, tar_cmd) + elif file.endswith('.gz') or file.endswith('.Z') or file.endswith('.z'): + cmd = 'gzip -dc %s > %s' % (file, efile) + elif file.endswith('.bz2'): + cmd = 'bzip2 -dc %s > %s' % (file, efile) + elif file.endswith('.txz') or file.endswith('.tar.xz'): + cmd = 'xz -dc %s | %s -f -' % (file, tar_cmd) + elif file.endswith('.xz'): + cmd = 'xz -dc %s > %s' % (file, efile) + elif file.endswith('.tar.lz'): + cmd = 'lzip -dc %s | %s -f -' % (file, tar_cmd) + elif file.endswith('.lz'): + cmd = 'lzip -dc %s > %s' % (file, efile) + elif file.endswith('.tar.7z'): + cmd = '7z x -so %s | %s -f -' % (file, tar_cmd) + elif file.endswith('.7z'): + cmd = '7za x -y %s 1>/dev/null' % file + elif file.endswith('.tzst') or file.endswith('.tar.zst'): + cmd = 'zstd --decompress --stdout %s | %s -f -' % (file, tar_cmd) + elif file.endswith('.zst'): + cmd = 'zstd --decompress --stdout %s > %s' % (file, efile) + elif file.endswith('.zip') or file.endswith('.jar'): + try: + dos = bb.utils.to_boolean(urldata.parm.get('dos'), False) + except ValueError as exc: + bb.fatal("Invalid value for 'dos' parameter for %s: %s" % + (file, urldata.parm.get('dos'))) + cmd = 'unzip -q -o' + if dos: + cmd = '%s -a' % cmd + cmd = "%s '%s'" % (cmd, file) + elif file.endswith('.rpm') or file.endswith('.srpm'): + if 'extract' in urldata.parm: + unpack_file = urldata.parm.get('extract') + cmd = 'rpm2cpio.sh %s | cpio -id %s' % (file, unpack_file) + iterate = True + iterate_file = unpack_file + else: + cmd = 'rpm2cpio.sh %s | cpio -id' % (file) + elif file.endswith('.deb') or file.endswith('.ipk'): + output = subprocess.check_output(['ar', '-t', file], preexec_fn=subprocess_setup) + datafile = None + if output: + for line in output.decode().splitlines(): + if line.startswith('data.tar.'): + datafile = line + break + else: + raise UnpackError("Unable to unpack deb/ipk package - does not contain data.tar.* file", urldata.url) + else: + raise UnpackError("Unable to unpack deb/ipk package - could not list contents", urldata.url) + cmd = 'ar x %s %s && %s -p -f %s && rm %s' % (file, datafile, tar_cmd, datafile, datafile) + + # If 'subdir' param exists, create a dir and use it as destination for unpack cmd + if 'subdir' in urldata.parm: + subdir = urldata.parm.get('subdir') + if os.path.isabs(subdir): + if not os.path.realpath(subdir).startswith(os.path.realpath(rootdir)): + raise UnpackError("subdir argument isn't a subdirectory of unpack root %s" % rootdir, urldata.url) + unpackdir = subdir + else: + unpackdir = os.path.join(rootdir, subdir) + bb.utils.mkdirhier(unpackdir) + else: + unpackdir = rootdir + + if not unpack or not cmd: + # If file == dest, then avoid any copies, as we already put the file into dest! + dest = os.path.join(unpackdir, os.path.basename(file)) + if file != dest and not (os.path.exists(dest) and os.path.samefile(file, dest)): + destdir = '.' + # For file:// entries all intermediate dirs in path must be created at destination + if urldata.type == "file": + # Trailing '/' does a copying to wrong place + urlpath = urldata.path.rstrip('/') + # Want files places relative to cwd so no leading '/' + urlpath = urlpath.lstrip('/') + if urlpath.find("/") != -1: + destdir = urlpath.rsplit("/", 1)[0] + '/' + bb.utils.mkdirhier("%s/%s" % (unpackdir, destdir)) + cmd = 'cp -fpPRH "%s" "%s"' % (file, destdir) + + if not cmd: + return + + path = data.getVar('PATH') + if path: + cmd = "PATH=\"%s\" %s" % (path, cmd) + bb.note("Unpacking %s to %s/" % (file, unpackdir)) + ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True, cwd=unpackdir) + + if ret != 0: + raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url) + + if iterate is True: + iterate_urldata = urldata + iterate_urldata.localpath = "%s/%s" % (rootdir, iterate_file) + self.unpack(urldata, rootdir, data) + + return + + def clean(self, urldata, d): + """ + Clean any existing full or partial download + """ + bb.utils.remove(urldata.localpath) + + def try_premirror(self, urldata, d): + """ + Should premirrors be used? + """ + return True + + def try_mirrors(self, fetch, urldata, d, mirrors, check=False): + """ + Try to use a mirror + """ + return bool(try_mirrors(fetch, d, urldata, mirrors, check)) + + def checkstatus(self, fetch, urldata, d): + """ + Check the status of a URL + Assumes localpath was called first + """ + logger.info("URL %s could not be checked for status since no method exists.", urldata.url) + return True + + def latest_revision(self, ud, d, name): + """ + Look in the cache for the latest revision, if not present ask the SCM. + """ + if not hasattr(self, "_latest_revision"): + raise ParameterError("The fetcher for this URL does not support _latest_revision", ud.url) + + revs = bb.persist_data.persist('BB_URI_HEADREVS', d) + key = self.generate_revision_key(ud, d, name) + try: + return revs[key] + except KeyError: + revs[key] = rev = self._latest_revision(ud, d, name) + return rev + + def sortable_revision(self, ud, d, name): + latest_rev = self._build_revision(ud, d, name) + return True, str(latest_rev) + + def generate_revision_key(self, ud, d, name): + return self._revision_key(ud, d, name) + + def latest_versionstring(self, ud, d): + """ + Compute the latest release name like "x.y.x" in "x.y.x+gitHASH" + by searching through the tags output of ls-remote, comparing + versions and returning the highest match as a (version, revision) pair. + """ + return ('', '') + + def done(self, ud, d): + """ + Is the download done ? + """ + if os.path.exists(ud.localpath): + return True + return False + + def implicit_urldata(self, ud, d): + """ + Get a list of FetchData objects for any implicit URLs that will also + be downloaded when we fetch the given URL. + """ + return [] + +class Fetch(object): + def __init__(self, urls, d, cache = True, localonly = False, connection_cache = None): + if localonly and cache: + raise Exception("bb.fetch2.Fetch.__init__: cannot set cache and localonly at same time") + + if not urls: + urls = d.getVar("SRC_URI").split() + self.urls = urls + self.d = d + self.ud = {} + self.connection_cache = connection_cache + + fn = d.getVar('FILE') + mc = d.getVar('__BBMULTICONFIG') or "" + key = None + if cache and fn: + key = mc + fn + str(id(d)) + if key in urldata_cache: + self.ud = urldata_cache[key] + + for url in urls: + if url not in self.ud: + try: + self.ud[url] = FetchData(url, d, localonly) + except NonLocalMethod: + if localonly: + self.ud[url] = None + pass + + if key: + urldata_cache[key] = self.ud + + def localpath(self, url): + if url not in self.urls: + self.ud[url] = FetchData(url, self.d) + + self.ud[url].setup_localpath(self.d) + return self.d.expand(self.ud[url].localpath) + + def localpaths(self): + """ + Return a list of the local filenames, assuming successful fetch + """ + local = [] + + for u in self.urls: + ud = self.ud[u] + ud.setup_localpath(self.d) + local.append(ud.localpath) + + return local + + def download(self, urls=None): + """ + Fetch all urls + """ + if not urls: + urls = self.urls + + network = self.d.getVar("BB_NO_NETWORK") + premirroronly = bb.utils.to_boolean(self.d.getVar("BB_FETCH_PREMIRRORONLY")) + + for u in urls: + ud = self.ud[u] + ud.setup_localpath(self.d) + m = ud.method + done = False + + if ud.lockfile: + lf = bb.utils.lockfile(ud.lockfile) + + try: + self.d.setVar("BB_NO_NETWORK", network) + + if m.verify_donestamp(ud, self.d) and not m.need_update(ud, self.d): + done = True + elif m.try_premirror(ud, self.d): + logger.debug("Trying PREMIRRORS") + mirrors = mirror_from_string(self.d.getVar('PREMIRRORS')) + done = m.try_mirrors(self, ud, self.d, mirrors) + if done: + try: + # early checksum verification so that if the checksum of the premirror + # contents mismatch the fetcher can still try upstream and mirrors + m.update_donestamp(ud, self.d) + except ChecksumError as e: + logger.warning("Checksum failure encountered with premirror download of %s - will attempt other sources." % u) + logger.debug(str(e)) + done = False + + if premirroronly: + self.d.setVar("BB_NO_NETWORK", "1") + + firsterr = None + verified_stamp = False + if done: + verified_stamp = m.verify_donestamp(ud, self.d) + if not done and (not verified_stamp or m.need_update(ud, self.d)): + try: + if not trusted_network(self.d, ud.url): + raise UntrustedUrl(ud.url) + logger.debug("Trying Upstream") + m.download(ud, self.d) + if hasattr(m, "build_mirror_data"): + m.build_mirror_data(ud, self.d) + done = True + # early checksum verify, so that if checksum mismatched, + # fetcher still have chance to fetch from mirror + m.update_donestamp(ud, self.d) + + except bb.fetch2.NetworkAccess: + raise + + except BBFetchException as e: + if isinstance(e, ChecksumError): + logger.warning("Checksum failure encountered with download of %s - will attempt other sources if available" % u) + logger.debug(str(e)) + if os.path.exists(ud.localpath): + rename_bad_checksum(ud, e.checksum) + elif isinstance(e, NoChecksumError): + raise + else: + logger.warning('Failed to fetch URL %s, attempting MIRRORS if available' % u) + logger.debug(str(e)) + firsterr = e + # Remove any incomplete fetch + if not verified_stamp: + m.clean(ud, self.d) + logger.debug("Trying MIRRORS") + mirrors = mirror_from_string(self.d.getVar('MIRRORS')) + done = m.try_mirrors(self, ud, self.d, mirrors) + + if not done or not m.done(ud, self.d): + if firsterr: + logger.error(str(firsterr)) + raise FetchError("Unable to fetch URL from any source.", u) + + m.update_donestamp(ud, self.d) + + except IOError as e: + if e.errno in [errno.ESTALE]: + logger.error("Stale Error Observed %s." % u) + raise ChecksumError("Stale Error Detected") + + except BBFetchException as e: + if isinstance(e, ChecksumError): + logger.error("Checksum failure fetching %s" % u) + raise + + finally: + if ud.lockfile: + bb.utils.unlockfile(lf) + + def checkstatus(self, urls=None): + """ + Check all URLs exist upstream. + + Returns None if the URLs exist, raises FetchError if the check wasn't + successful but there wasn't an error (such as file not found), and + raises other exceptions in error cases. + """ + + if not urls: + urls = self.urls + + for u in urls: + ud = self.ud[u] + ud.setup_localpath(self.d) + m = ud.method + logger.debug("Testing URL %s", u) + # First try checking uri, u, from PREMIRRORS + mirrors = mirror_from_string(self.d.getVar('PREMIRRORS')) + ret = m.try_mirrors(self, ud, self.d, mirrors, True) + if not ret: + # Next try checking from the original uri, u + ret = m.checkstatus(self, ud, self.d) + if not ret: + # Finally, try checking uri, u, from MIRRORS + mirrors = mirror_from_string(self.d.getVar('MIRRORS')) + ret = m.try_mirrors(self, ud, self.d, mirrors, True) + + if not ret: + raise FetchError("URL %s doesn't work" % u, u) + + def unpack(self, root, urls=None): + """ + Unpack urls to root + """ + + if not urls: + urls = self.urls + + for u in urls: + ud = self.ud[u] + ud.setup_localpath(self.d) + + if ud.lockfile: + lf = bb.utils.lockfile(ud.lockfile) + + ud.method.unpack(ud, root, self.d) + + if ud.lockfile: + bb.utils.unlockfile(lf) + + def clean(self, urls=None): + """ + Clean files that the fetcher gets or places + """ + + if not urls: + urls = self.urls + + for url in urls: + if url not in self.ud: + self.ud[url] = FetchData(url, self.d) + ud = self.ud[url] + ud.setup_localpath(self.d) + + if not ud.localfile and ud.localpath is None: + continue + + if ud.lockfile: + lf = bb.utils.lockfile(ud.lockfile) + + ud.method.clean(ud, self.d) + if ud.donestamp: + bb.utils.remove(ud.donestamp) + + if ud.lockfile: + bb.utils.unlockfile(lf) + + def expanded_urldata(self, urls=None): + """ + Get an expanded list of FetchData objects covering both the given + URLS and any additional implicit URLs that are added automatically by + the appropriate FetchMethod. + """ + + if not urls: + urls = self.urls + + urldata = [] + for url in urls: + ud = self.ud[url] + urldata.append(ud) + urldata += ud.method.implicit_urldata(ud, self.d) + + return urldata + +class FetchConnectionCache(object): + """ + A class which represents an container for socket connections. + """ + def __init__(self): + self.cache = {} + + def get_connection_name(self, host, port): + return host + ':' + str(port) + + def add_connection(self, host, port, connection): + cn = self.get_connection_name(host, port) + + if cn not in self.cache: + self.cache[cn] = connection + + def get_connection(self, host, port): + connection = None + + cn = self.get_connection_name(host, port) + if cn in self.cache: + connection = self.cache[cn] + + return connection + + def remove_connection(self, host, port): + cn = self.get_connection_name(host, port) + if cn in self.cache: + self.cache[cn].close() + del self.cache[cn] + + def close_connections(self): + for cn in list(self.cache.keys()): + self.cache[cn].close() + del self.cache[cn] + +from . import cvs +from . import git +from . import gitsm +from . import gitannex +from . import local +from . import svn +from . import wget +from . import ssh +from . import sftp +from . import s3 +from . import perforce +from . import bzr +from . import hg +from . import osc +from . import repo +from . import clearcase +from . import npm +from . import npmsw +from . import az +from . import crate + +methods.append(local.Local()) +methods.append(wget.Wget()) +methods.append(svn.Svn()) +methods.append(git.Git()) +methods.append(gitsm.GitSM()) +methods.append(gitannex.GitANNEX()) +methods.append(cvs.Cvs()) +methods.append(ssh.SSH()) +methods.append(sftp.SFTP()) +methods.append(s3.S3()) +methods.append(perforce.Perforce()) +methods.append(bzr.Bzr()) +methods.append(hg.Hg()) +methods.append(osc.Osc()) +methods.append(repo.Repo()) +methods.append(clearcase.ClearCase()) +methods.append(npm.Npm()) +methods.append(npmsw.NpmShrinkWrap()) +methods.append(az.Az()) +methods.append(crate.Crate()) diff --git a/poky/bitbake/lib/bb/fetch2/az.py b/poky/bitbake/lib/bb/fetch2/az.py new file mode 100644 index 0000000..3ccc594 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/az.py @@ -0,0 +1,93 @@ +""" +BitBake 'Fetch' Azure Storage implementation + +""" + +# Copyright (C) 2021 Alejandro Hernandez Samaniego +# +# Based on bb.fetch2.wget: +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import shlex +import os +import bb +from bb.fetch2 import FetchError +from bb.fetch2 import logger +from bb.fetch2.wget import Wget + + +class Az(Wget): + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched from Azure Storage + """ + return ud.type in ['az'] + + + def checkstatus(self, fetch, ud, d, try_again=True): + + # checkstatus discards parameters either way, we need to do this before adding the SAS + ud.url = ud.url.replace('az://','https://').split(';')[0] + + az_sas = d.getVar('AZ_SAS') + if az_sas and az_sas not in ud.url: + ud.url += az_sas + + return Wget.checkstatus(self, fetch, ud, d, try_again) + + # Override download method, include retries + def download(self, ud, d, retries=3): + """Fetch urls""" + + # If were reaching the account transaction limit we might be refused a connection, + # retrying allows us to avoid false negatives since the limit changes over time + fetchcmd = self.basecmd + ' --retry-connrefused --waitretry=5' + + # We need to provide a localpath to avoid wget using the SAS + # ud.localfile either has the downloadfilename or ud.path + localpath = os.path.join(d.getVar("DL_DIR"), ud.localfile) + bb.utils.mkdirhier(os.path.dirname(localpath)) + fetchcmd += " -O %s" % shlex.quote(localpath) + + + if ud.user and ud.pswd: + fetchcmd += " --user=%s --password=%s --auth-no-challenge" % (ud.user, ud.pswd) + + # Check if a Shared Access Signature was given and use it + az_sas = d.getVar('AZ_SAS') + + if az_sas: + azuri = '%s%s%s%s' % ('https://', ud.host, ud.path, az_sas) + else: + azuri = '%s%s%s' % ('https://', ud.host, ud.path) + + if os.path.exists(ud.localpath): + # file exists, but we didnt complete it.. trying again. + fetchcmd += d.expand(" -c -P ${DL_DIR} '%s'" % azuri) + else: + fetchcmd += d.expand(" -P ${DL_DIR} '%s'" % azuri) + + try: + self._runwget(ud, d, fetchcmd, False) + except FetchError as e: + # Azure fails on handshake sometimes when using wget after some stress, producing a + # FetchError from the fetcher, if the artifact exists retyring should succeed + if 'Unable to establish SSL connection' in str(e): + logger.debug2('Unable to establish SSL connection: Retries remaining: %s, Retrying...' % retries) + self.download(ud, d, retries -1) + + # Sanity check since wget can pretend it succeed when it didn't + # Also, this used to happen if sourceforge sent us to the mirror page + if not os.path.exists(ud.localpath): + raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (azuri, ud.localpath), azuri) + + if os.path.getsize(ud.localpath) == 0: + os.remove(ud.localpath) + raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this isn't right." % (azuri), azuri) + + return True diff --git a/poky/bitbake/lib/bb/fetch2/bzr.py b/poky/bitbake/lib/bb/fetch2/bzr.py new file mode 100644 index 0000000..fc558f5 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/bzr.py @@ -0,0 +1,128 @@ +""" +BitBake 'Fetch' implementation for bzr. + +""" + +# Copyright (C) 2007 Ross Burton +# Copyright (C) 2007 Richard Purdie +# +# Classes for obtaining upstream sources for the +# BitBake build tools. +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import bb +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger + +class Bzr(FetchMethod): + def supports(self, ud, d): + return ud.type in ['bzr'] + + def urldata_init(self, ud, d): + """ + init bzr specific variable within url data + """ + # Create paths to bzr checkouts + bzrdir = d.getVar("BZRDIR") or (d.getVar("DL_DIR") + "/bzr") + relpath = self._strip_leading_slashes(ud.path) + ud.pkgdir = os.path.join(bzrdir, ud.host, relpath) + + ud.setup_revisions(d) + + if not ud.revision: + ud.revision = self.latest_revision(ud, d) + + ud.localfile = d.expand('bzr_%s_%s_%s.tar.gz' % (ud.host, ud.path.replace('/', '.'), ud.revision)) + + def _buildbzrcommand(self, ud, d, command): + """ + Build up an bzr commandline based on ud + command is "fetch", "update", "revno" + """ + + basecmd = d.getVar("FETCHCMD_bzr") or "/usr/bin/env bzr" + + proto = ud.parm.get('protocol', 'http') + + bzrroot = ud.host + ud.path + + options = [] + + if command == "revno": + bzrcmd = "%s revno %s %s://%s" % (basecmd, " ".join(options), proto, bzrroot) + else: + if ud.revision: + options.append("-r %s" % ud.revision) + + if command == "fetch": + bzrcmd = "%s branch %s %s://%s" % (basecmd, " ".join(options), proto, bzrroot) + elif command == "update": + bzrcmd = "%s pull %s --overwrite" % (basecmd, " ".join(options)) + else: + raise FetchError("Invalid bzr command %s" % command, ud.url) + + return bzrcmd + + def download(self, ud, d): + """Fetch url""" + + if os.access(os.path.join(ud.pkgdir, os.path.basename(ud.pkgdir), '.bzr'), os.R_OK): + bzrcmd = self._buildbzrcommand(ud, d, "update") + logger.debug("BZR Update %s", ud.url) + bb.fetch2.check_network_access(d, bzrcmd, ud.url) + runfetchcmd(bzrcmd, d, workdir=os.path.join(ud.pkgdir, os.path.basename(ud.path))) + else: + bb.utils.remove(os.path.join(ud.pkgdir, os.path.basename(ud.pkgdir)), True) + bzrcmd = self._buildbzrcommand(ud, d, "fetch") + bb.fetch2.check_network_access(d, bzrcmd, ud.url) + logger.debug("BZR Checkout %s", ud.url) + bb.utils.mkdirhier(ud.pkgdir) + logger.debug("Running %s", bzrcmd) + runfetchcmd(bzrcmd, d, workdir=ud.pkgdir) + + scmdata = ud.parm.get("scmdata", "") + if scmdata == "keep": + tar_flags = "" + else: + tar_flags = "--exclude='.bzr' --exclude='.bzrtags'" + + # tar them up to a defined filename + runfetchcmd("tar %s -czf %s %s" % (tar_flags, ud.localpath, os.path.basename(ud.pkgdir)), + d, cleanup=[ud.localpath], workdir=ud.pkgdir) + + def supports_srcrev(self): + return True + + def _revision_key(self, ud, d, name): + """ + Return a unique key for the url + """ + return "bzr:" + ud.pkgdir + + def _latest_revision(self, ud, d, name): + """ + Return the latest upstream revision number + """ + logger.debug2("BZR fetcher hitting network for %s", ud.url) + + bb.fetch2.check_network_access(d, self._buildbzrcommand(ud, d, "revno"), ud.url) + + output = runfetchcmd(self._buildbzrcommand(ud, d, "revno"), d, True) + + return output.strip() + + def sortable_revision(self, ud, d, name): + """ + Return a sortable revision number which in our case is the revision number + """ + + return False, self._build_revision(ud, d) + + def _build_revision(self, ud, d): + return ud.revision diff --git a/poky/bitbake/lib/bb/fetch2/clearcase.py b/poky/bitbake/lib/bb/fetch2/clearcase.py new file mode 100644 index 0000000..1a9c863 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/clearcase.py @@ -0,0 +1,247 @@ +""" +BitBake 'Fetch' clearcase implementation + +The clearcase fetcher is used to retrieve files from a ClearCase repository. + +Usage in the recipe: + + SRC_URI = "ccrc://cc.example.org/ccrc;vob=/example_vob;module=/example_module" + SRCREV = "EXAMPLE_CLEARCASE_TAG" + PV = "${@d.getVar("SRCREV", False).replace("/", "+")}" + +The fetcher uses the rcleartool or cleartool remote client, depending on which one is available. + +Supported SRC_URI options are: + +- vob + (required) The name of the clearcase VOB (with prepending "/") + +- module + The module in the selected VOB (with prepending "/") + + The module and vob parameters are combined to create + the following load rule in the view config spec: + load + +- proto + http or https + +Related variables: + + CCASE_CUSTOM_CONFIG_SPEC + Write a config spec to this variable in your recipe to use it instead + of the default config spec generated by this fetcher. + Please note that the SRCREV loses its functionality if you specify + this variable. SRCREV is still used to label the archive after a fetch, + but it doesn't define what's fetched. + +User credentials: + cleartool: + The login of cleartool is handled by the system. No special steps needed. + + rcleartool: + In order to use rcleartool with authenticated users an `rcleartool login` is + necessary before using the fetcher. +""" +# Copyright (C) 2014 Siemens AG +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import shutil +import bb +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import MissingParameterError +from bb.fetch2 import ParameterError +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger + +class ClearCase(FetchMethod): + """Class to fetch urls via 'clearcase'""" + def init(self, d): + pass + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with Clearcase. + """ + return ud.type in ['ccrc'] + + def debug(self, msg): + logger.debug("ClearCase: %s", msg) + + def urldata_init(self, ud, d): + """ + init ClearCase specific variable within url data + """ + ud.proto = "https" + if 'protocol' in ud.parm: + ud.proto = ud.parm['protocol'] + if not ud.proto in ('http', 'https'): + raise ParameterError("Invalid protocol type", ud.url) + + ud.vob = '' + if 'vob' in ud.parm: + ud.vob = ud.parm['vob'] + else: + msg = ud.url+": vob must be defined so the fetcher knows what to get." + raise MissingParameterError('vob', msg) + + if 'module' in ud.parm: + ud.module = ud.parm['module'] + else: + ud.module = "" + + ud.basecmd = d.getVar("FETCHCMD_ccrc") or "/usr/bin/env cleartool || rcleartool" + + if d.getVar("SRCREV") == "INVALID": + raise FetchError("Set a valid SRCREV for the clearcase fetcher in your recipe, e.g. SRCREV = \"/main/LATEST\" or any other label of your choice.") + + ud.label = d.getVar("SRCREV", False) + ud.customspec = d.getVar("CCASE_CUSTOM_CONFIG_SPEC") + + ud.server = "%s://%s%s" % (ud.proto, ud.host, ud.path) + + ud.identifier = "clearcase-%s%s-%s" % ( ud.vob.replace("/", ""), + ud.module.replace("/", "."), + ud.label.replace("/", ".")) + + ud.viewname = "%s-view%s" % (ud.identifier, d.getVar("DATETIME", d, True)) + ud.csname = "%s-config-spec" % (ud.identifier) + ud.ccasedir = os.path.join(d.getVar("DL_DIR"), ud.type) + ud.viewdir = os.path.join(ud.ccasedir, ud.viewname) + ud.configspecfile = os.path.join(ud.ccasedir, ud.csname) + ud.localfile = "%s.tar.gz" % (ud.identifier) + + self.debug("host = %s" % ud.host) + self.debug("path = %s" % ud.path) + self.debug("server = %s" % ud.server) + self.debug("proto = %s" % ud.proto) + self.debug("type = %s" % ud.type) + self.debug("vob = %s" % ud.vob) + self.debug("module = %s" % ud.module) + self.debug("basecmd = %s" % ud.basecmd) + self.debug("label = %s" % ud.label) + self.debug("ccasedir = %s" % ud.ccasedir) + self.debug("viewdir = %s" % ud.viewdir) + self.debug("viewname = %s" % ud.viewname) + self.debug("configspecfile = %s" % ud.configspecfile) + self.debug("localfile = %s" % ud.localfile) + + ud.localfile = os.path.join(d.getVar("DL_DIR"), ud.localfile) + + def _build_ccase_command(self, ud, command): + """ + Build up a commandline based on ud + command is: mkview, setcs, rmview + """ + options = [] + + if "rcleartool" in ud.basecmd: + options.append("-server %s" % ud.server) + + basecmd = "%s %s" % (ud.basecmd, command) + + if command == 'mkview': + if not "rcleartool" in ud.basecmd: + # Cleartool needs a -snapshot view + options.append("-snapshot") + options.append("-tag %s" % ud.viewname) + options.append(ud.viewdir) + + elif command == 'rmview': + options.append("-force") + options.append("%s" % ud.viewdir) + + elif command == 'setcs': + options.append("-overwrite") + options.append(ud.configspecfile) + + else: + raise FetchError("Invalid ccase command %s" % command) + + ccasecmd = "%s %s" % (basecmd, " ".join(options)) + self.debug("ccasecmd = %s" % ccasecmd) + return ccasecmd + + def _write_configspec(self, ud, d): + """ + Create config spec file (ud.configspecfile) for ccase view + """ + config_spec = "" + custom_config_spec = d.getVar("CCASE_CUSTOM_CONFIG_SPEC", d) + if custom_config_spec is not None: + for line in custom_config_spec.split("\\n"): + config_spec += line+"\n" + bb.warn("A custom config spec has been set, SRCREV is only relevant for the tarball name.") + else: + config_spec += "element * CHECKEDOUT\n" + config_spec += "element * %s\n" % ud.label + config_spec += "load %s%s\n" % (ud.vob, ud.module) + + logger.info("Using config spec: \n%s" % config_spec) + + with open(ud.configspecfile, 'w') as f: + f.write(config_spec) + + def _remove_view(self, ud, d): + if os.path.exists(ud.viewdir): + cmd = self._build_ccase_command(ud, 'rmview'); + logger.info("cleaning up [VOB=%s label=%s view=%s]", ud.vob, ud.label, ud.viewname) + bb.fetch2.check_network_access(d, cmd, ud.url) + output = runfetchcmd(cmd, d, workdir=ud.ccasedir) + logger.info("rmview output: %s", output) + + def need_update(self, ud, d): + if ("LATEST" in ud.label) or (ud.customspec and "LATEST" in ud.customspec): + ud.identifier += "-%s" % d.getVar("DATETIME",d, True) + return True + if os.path.exists(ud.localpath): + return False + return True + + def supports_srcrev(self): + return True + + def sortable_revision(self, ud, d, name): + return False, ud.identifier + + def download(self, ud, d): + """Fetch url""" + + # Make a fresh view + bb.utils.mkdirhier(ud.ccasedir) + self._write_configspec(ud, d) + cmd = self._build_ccase_command(ud, 'mkview') + logger.info("creating view [VOB=%s label=%s view=%s]", ud.vob, ud.label, ud.viewname) + bb.fetch2.check_network_access(d, cmd, ud.url) + try: + runfetchcmd(cmd, d) + except FetchError as e: + if "CRCLI2008E" in e.msg: + raise FetchError("%s\n%s\n" % (e.msg, "Call `rcleartool login` in your console to authenticate to the clearcase server before running bitbake.")) + else: + raise e + + # Set configspec: Setting the configspec effectively fetches the files as defined in the configspec + cmd = self._build_ccase_command(ud, 'setcs'); + logger.info("fetching data [VOB=%s label=%s view=%s]", ud.vob, ud.label, ud.viewname) + bb.fetch2.check_network_access(d, cmd, ud.url) + output = runfetchcmd(cmd, d, workdir=ud.viewdir) + logger.info("%s", output) + + # Copy the configspec to the viewdir so we have it in our source tarball later + shutil.copyfile(ud.configspecfile, os.path.join(ud.viewdir, ud.csname)) + + # Clean clearcase meta-data before tar + + runfetchcmd('tar -czf "%s" .' % (ud.localpath), d, cleanup = [ud.localpath], workdir = ud.viewdir) + + # Clean up so we can create a new view next time + self.clean(ud, d); + + def clean(self, ud, d): + self._remove_view(ud, d) + bb.utils.remove(ud.configspecfile) diff --git a/poky/bitbake/lib/bb/fetch2/crate.py b/poky/bitbake/lib/bb/fetch2/crate.py new file mode 100644 index 0000000..f4ddc78 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/crate.py @@ -0,0 +1,136 @@ +# ex:ts=4:sw=4:sts=4:et +# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- +""" +BitBake 'Fetch' implementation for crates.io +""" + +# Copyright (C) 2016 Doug Goldstein +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import hashlib +import json +import os +import subprocess +import bb +from bb.fetch2 import logger, subprocess_setup, UnpackError +from bb.fetch2.wget import Wget + + +class Crate(Wget): + + """Class to fetch crates via wget""" + + def _cargo_bitbake_path(self, rootdir): + return os.path.join(rootdir, "cargo_home", "bitbake") + + def supports(self, ud, d): + """ + Check to see if a given url is for this fetcher + """ + return ud.type in ['crate'] + + def recommends_checksum(self, urldata): + return False + + def urldata_init(self, ud, d): + """ + Sets up to download the respective crate from crates.io + """ + + if ud.type == 'crate': + self._crate_urldata_init(ud, d) + + super(Crate, self).urldata_init(ud, d) + + def _crate_urldata_init(self, ud, d): + """ + Sets up the download for a crate + """ + + # URL syntax is: crate://NAME/VERSION + # break the URL apart by / + parts = ud.url.split('/') + if len(parts) < 5: + raise bb.fetch2.ParameterError("Invalid URL: Must be crate://HOST/NAME/VERSION", ud.url) + + # last field is version + version = parts[len(parts) - 1] + # second to last field is name + name = parts[len(parts) - 2] + # host (this is to allow custom crate registries to be specified + host = '/'.join(parts[2:len(parts) - 2]) + + # if using upstream just fix it up nicely + if host == 'crates.io': + host = 'crates.io/api/v1/crates' + + ud.url = "https://%s/%s/%s/download" % (host, name, version) + ud.parm['downloadfilename'] = "%s-%s.crate" % (name, version) + ud.parm['name'] = name + + logger.debug("Fetching %s to %s" % (ud.url, ud.parm['downloadfilename'])) + + def unpack(self, ud, rootdir, d): + """ + Uses the crate to build the necessary paths for cargo to utilize it + """ + if ud.type == 'crate': + return self._crate_unpack(ud, rootdir, d) + else: + super(Crate, self).unpack(ud, rootdir, d) + + def _crate_unpack(self, ud, rootdir, d): + """ + Unpacks a crate + """ + thefile = ud.localpath + + # possible metadata we need to write out + metadata = {} + + # change to the rootdir to unpack but save the old working dir + save_cwd = os.getcwd() + os.chdir(rootdir) + + pn = d.getVar('BPN') + if pn == ud.parm.get('name'): + cmd = "tar -xz --no-same-owner -f %s" % thefile + else: + cargo_bitbake = self._cargo_bitbake_path(rootdir) + + cmd = "tar -xz --no-same-owner -f %s -C %s" % (thefile, cargo_bitbake) + + # ensure we've got these paths made + bb.utils.mkdirhier(cargo_bitbake) + + # generate metadata necessary + with open(thefile, 'rb') as f: + # get the SHA256 of the original tarball + tarhash = hashlib.sha256(f.read()).hexdigest() + + metadata['files'] = {} + metadata['package'] = tarhash + + path = d.getVar('PATH') + if path: + cmd = "PATH=\"%s\" %s" % (path, cmd) + bb.note("Unpacking %s to %s/" % (thefile, os.getcwd())) + + ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True) + + os.chdir(save_cwd) + + if ret != 0: + raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), ud.url) + + # if we have metadata to write out.. + if len(metadata) > 0: + cratepath = os.path.splitext(os.path.basename(thefile))[0] + bbpath = self._cargo_bitbake_path(rootdir) + mdfile = '.cargo-checksum.json' + mdpath = os.path.join(bbpath, cratepath, mdfile) + with open(mdpath, "w") as f: + json.dump(metadata, f) diff --git a/poky/bitbake/lib/bb/fetch2/cvs.py b/poky/bitbake/lib/bb/fetch2/cvs.py new file mode 100644 index 0000000..01de5ff --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/cvs.py @@ -0,0 +1,157 @@ +""" +BitBake 'Fetch' implementations + +Classes for obtaining upstream sources for the +BitBake build tools. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig +# + +import os +import bb +from bb.fetch2 import FetchMethod, FetchError, MissingParameterError, logger +from bb.fetch2 import runfetchcmd + +class Cvs(FetchMethod): + """ + Class to fetch a module or modules from cvs repositories + """ + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with cvs. + """ + return ud.type in ['cvs'] + + def urldata_init(self, ud, d): + if not "module" in ud.parm: + raise MissingParameterError("module", ud.url) + ud.module = ud.parm["module"] + + ud.tag = ud.parm.get('tag', "") + + # Override the default date in certain cases + if 'date' in ud.parm: + ud.date = ud.parm['date'] + elif ud.tag: + ud.date = "" + + norecurse = '' + if 'norecurse' in ud.parm: + norecurse = '_norecurse' + + fullpath = '' + if 'fullpath' in ud.parm: + fullpath = '_fullpath' + + ud.localfile = d.expand('%s_%s_%s_%s%s%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.tag, ud.date, norecurse, fullpath)) + + pkg = d.getVar('PN') + cvsdir = d.getVar("CVSDIR") or (d.getVar("DL_DIR") + "/cvs") + ud.pkgdir = os.path.join(cvsdir, pkg) + + def need_update(self, ud, d): + if (ud.date == "now"): + return True + if not os.path.exists(ud.localpath): + return True + return False + + def download(self, ud, d): + + method = ud.parm.get('method', 'pserver') + localdir = ud.parm.get('localdir', ud.module) + cvs_port = ud.parm.get('port', '') + + cvs_rsh = None + if method == "ext": + if "rsh" in ud.parm: + cvs_rsh = ud.parm["rsh"] + + if method == "dir": + cvsroot = ud.path + else: + cvsroot = ":" + method + cvsproxyhost = d.getVar('CVS_PROXY_HOST') + if cvsproxyhost: + cvsroot += ";proxy=" + cvsproxyhost + cvsproxyport = d.getVar('CVS_PROXY_PORT') + if cvsproxyport: + cvsroot += ";proxyport=" + cvsproxyport + cvsroot += ":" + ud.user + if ud.pswd: + cvsroot += ":" + ud.pswd + cvsroot += "@" + ud.host + ":" + cvs_port + ud.path + + options = [] + if 'norecurse' in ud.parm: + options.append("-l") + if ud.date: + # treat YYYYMMDDHHMM specially for CVS + if len(ud.date) == 12: + options.append("-D \"%s %s:%s UTC\"" % (ud.date[0:8], ud.date[8:10], ud.date[10:12])) + else: + options.append("-D \"%s UTC\"" % ud.date) + if ud.tag: + options.append("-r %s" % ud.tag) + + cvsbasecmd = d.getVar("FETCHCMD_cvs") or "/usr/bin/env cvs" + cvscmd = cvsbasecmd + " '-d" + cvsroot + "' co " + " ".join(options) + " " + ud.module + cvsupdatecmd = cvsbasecmd + " '-d" + cvsroot + "' update -d -P " + " ".join(options) + + if cvs_rsh: + cvscmd = "CVS_RSH=\"%s\" %s" % (cvs_rsh, cvscmd) + cvsupdatecmd = "CVS_RSH=\"%s\" %s" % (cvs_rsh, cvsupdatecmd) + + # create module directory + logger.debug2("Fetch: checking for module directory") + moddir = os.path.join(ud.pkgdir, localdir) + workdir = None + if os.access(os.path.join(moddir, 'CVS'), os.R_OK): + logger.info("Update " + ud.url) + bb.fetch2.check_network_access(d, cvsupdatecmd, ud.url) + # update sources there + workdir = moddir + cmd = cvsupdatecmd + else: + logger.info("Fetch " + ud.url) + # check out sources there + bb.utils.mkdirhier(ud.pkgdir) + workdir = ud.pkgdir + logger.debug("Running %s", cvscmd) + bb.fetch2.check_network_access(d, cvscmd, ud.url) + cmd = cvscmd + + runfetchcmd(cmd, d, cleanup=[moddir], workdir=workdir) + + if not os.access(moddir, os.R_OK): + raise FetchError("Directory %s was not readable despite sucessful fetch?!" % moddir, ud.url) + + scmdata = ud.parm.get("scmdata", "") + if scmdata == "keep": + tar_flags = "" + else: + tar_flags = "--exclude='CVS'" + + # tar them up to a defined filename + workdir = None + if 'fullpath' in ud.parm: + workdir = ud.pkgdir + cmd = "tar %s -czf %s %s" % (tar_flags, ud.localpath, localdir) + else: + workdir = os.path.dirname(os.path.realpath(moddir)) + cmd = "tar %s -czf %s %s" % (tar_flags, ud.localpath, os.path.basename(moddir)) + + runfetchcmd(cmd, d, cleanup=[ud.localpath], workdir=workdir) + + def clean(self, ud, d): + """ Clean CVS Files and tarballs """ + + bb.utils.remove(ud.pkgdir, True) + bb.utils.remove(ud.localpath) + diff --git a/poky/bitbake/lib/bb/fetch2/git.py b/poky/bitbake/lib/bb/fetch2/git.py new file mode 100644 index 0000000..4d6e57a --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/git.py @@ -0,0 +1,841 @@ +""" +BitBake 'Fetch' git implementation + +git fetcher support the SRC_URI with format of: +SRC_URI = "git://some.host/somepath;OptionA=xxx;OptionB=xxx;..." + +Supported SRC_URI options are: + +- branch + The git branch to retrieve from. The default is "master" + + This option also supports multiple branch fetching, with branches + separated by commas. In multiple branches case, the name option + must have the same number of names to match the branches, which is + used to specify the SRC_REV for the branch + e.g: + SRC_URI="git://some.host/somepath;branch=branchX,branchY;name=nameX,nameY" + SRCREV_nameX = "xxxxxxxxxxxxxxxxxxxx" + SRCREV_nameY = "YYYYYYYYYYYYYYYYYYYY" + +- tag + The git tag to retrieve. The default is "master" + +- protocol + The method to use to access the repository. Common options are "git", + "http", "https", "file", "ssh" and "rsync". The default is "git". + +- rebaseable + rebaseable indicates that the upstream git repo may rebase in the future, + and current revision may disappear from upstream repo. This option will + remind fetcher to preserve local cache carefully for future use. + The default value is "0", set rebaseable=1 for rebaseable git repo. + +- nocheckout + Don't checkout source code when unpacking. set this option for the recipe + who has its own routine to checkout code. + The default is "0", set nocheckout=1 if needed. + +- bareclone + Create a bare clone of the source code and don't checkout the source code + when unpacking. Set this option for the recipe who has its own routine to + checkout code and tracking branch requirements. + The default is "0", set bareclone=1 if needed. + +- nobranch + Don't check the SHA validation for branch. set this option for the recipe + referring to commit which is valid in any namespace (branch, tag, ...) + instead of branch. + The default is "0", set nobranch=1 if needed. + +- usehead + For local git:// urls to use the current branch HEAD as the revision for use with + AUTOREV. Implies nobranch. + +""" + +# Copyright (C) 2005 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import collections +import errno +import fnmatch +import os +import re +import shlex +import subprocess +import tempfile +import bb +import bb.progress +from contextlib import contextmanager +from bb.fetch2 import FetchMethod +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger + + +class GitProgressHandler(bb.progress.LineFilterProgressHandler): + """Extract progress information from git output""" + def __init__(self, d): + self._buffer = '' + self._count = 0 + super(GitProgressHandler, self).__init__(d) + # Send an initial progress event so the bar gets shown + self._fire_progress(-1) + + def write(self, string): + self._buffer += string + stages = ['Counting objects', 'Compressing objects', 'Receiving objects', 'Resolving deltas'] + stage_weights = [0.2, 0.05, 0.5, 0.25] + stagenum = 0 + for i, stage in reversed(list(enumerate(stages))): + if stage in self._buffer: + stagenum = i + self._buffer = '' + break + self._status = stages[stagenum] + percs = re.findall(r'(\d+)%', string) + if percs: + progress = int(round((int(percs[-1]) * stage_weights[stagenum]) + (sum(stage_weights[:stagenum]) * 100))) + rates = re.findall(r'([\d.]+ [a-zA-Z]*/s+)', string) + if rates: + rate = rates[-1] + else: + rate = None + self.update(progress, rate) + else: + if stagenum == 0: + percs = re.findall(r': (\d+)', string) + if percs: + count = int(percs[-1]) + if count > self._count: + self._count = count + self._fire_progress(-count) + super(GitProgressHandler, self).write(string) + + +class Git(FetchMethod): + bitbake_dir = os.path.abspath(os.path.join(os.path.dirname(os.path.join(os.path.abspath(__file__))), '..', '..', '..')) + make_shallow_path = os.path.join(bitbake_dir, 'bin', 'git-make-shallow') + + """Class to fetch a module or modules from git repositories""" + def init(self, d): + pass + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with git. + """ + return ud.type in ['git'] + + def supports_checksum(self, urldata): + return False + + def urldata_init(self, ud, d): + """ + init git specific variable within url data + so that the git method like latest_revision() can work + """ + if 'protocol' in ud.parm: + ud.proto = ud.parm['protocol'] + elif not ud.host: + ud.proto = 'file' + else: + ud.proto = "git" + if ud.host == "github.com" and ud.proto == "git": + # github stopped supporting git protocol + # https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git + ud.proto = "https" + bb.warn("URL: %s uses git protocol which is no longer supported by github. Please change to ;protocol=https in the url." % ud.url) + + if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): + raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) + + ud.nocheckout = ud.parm.get("nocheckout","0") == "1" + + ud.rebaseable = ud.parm.get("rebaseable","0") == "1" + + ud.nobranch = ud.parm.get("nobranch","0") == "1" + + # usehead implies nobranch + ud.usehead = ud.parm.get("usehead","0") == "1" + if ud.usehead: + if ud.proto != "file": + raise bb.fetch2.ParameterError("The usehead option is only for use with local ('protocol=file') git repositories", ud.url) + ud.nobranch = 1 + + # bareclone implies nocheckout + ud.bareclone = ud.parm.get("bareclone","0") == "1" + if ud.bareclone: + ud.nocheckout = 1 + + ud.unresolvedrev = {} + branches = ud.parm.get("branch", "").split(',') + if branches == [""] and not ud.nobranch: + bb.warn("URL: %s does not set any branch parameter. The future default branch used by tools and repositories is uncertain and we will therefore soon require this is set in all git urls." % ud.url) + branches = ["master"] + if len(branches) != len(ud.names): + raise bb.fetch2.ParameterError("The number of name and branch parameters is not balanced", ud.url) + + ud.noshared = d.getVar("BB_GIT_NOSHARED") == "1" + + ud.cloneflags = "-n" + if not ud.noshared: + ud.cloneflags += " -s" + if ud.bareclone: + ud.cloneflags += " --mirror" + + ud.shallow = d.getVar("BB_GIT_SHALLOW") == "1" + ud.shallow_extra_refs = (d.getVar("BB_GIT_SHALLOW_EXTRA_REFS") or "").split() + + depth_default = d.getVar("BB_GIT_SHALLOW_DEPTH") + if depth_default is not None: + try: + depth_default = int(depth_default or 0) + except ValueError: + raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default) + else: + if depth_default < 0: + raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default) + else: + depth_default = 1 + ud.shallow_depths = collections.defaultdict(lambda: depth_default) + + revs_default = d.getVar("BB_GIT_SHALLOW_REVS") + ud.shallow_revs = [] + ud.branches = {} + for pos, name in enumerate(ud.names): + branch = branches[pos] + ud.branches[name] = branch + ud.unresolvedrev[name] = branch + + shallow_depth = d.getVar("BB_GIT_SHALLOW_DEPTH_%s" % name) + if shallow_depth is not None: + try: + shallow_depth = int(shallow_depth or 0) + except ValueError: + raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth)) + else: + if shallow_depth < 0: + raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth)) + ud.shallow_depths[name] = shallow_depth + + revs = d.getVar("BB_GIT_SHALLOW_REVS_%s" % name) + if revs is not None: + ud.shallow_revs.extend(revs.split()) + elif revs_default is not None: + ud.shallow_revs.extend(revs_default.split()) + + if (ud.shallow and + not ud.shallow_revs and + all(ud.shallow_depths[n] == 0 for n in ud.names)): + # Shallow disabled for this URL + ud.shallow = False + + if ud.usehead: + # When usehead is set let's associate 'HEAD' with the unresolved + # rev of this repository. This will get resolved into a revision + # later. If an actual revision happens to have also been provided + # then this setting will be overridden. + for name in ud.names: + ud.unresolvedrev[name] = 'HEAD' + + ud.basecmd = d.getVar("FETCHCMD_git") or "git -c core.fsyncobjectfiles=0 -c gc.autoDetach=false -c core.pager=cat" + + write_tarballs = d.getVar("BB_GENERATE_MIRROR_TARBALLS") or "0" + ud.write_tarballs = write_tarballs != "0" or ud.rebaseable + ud.write_shallow_tarballs = (d.getVar("BB_GENERATE_SHALLOW_TARBALLS") or write_tarballs) != "0" + + ud.setup_revisions(d) + + for name in ud.names: + # Ensure anything that doesn't look like a sha256 checksum/revision is translated into one + if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): + if ud.revisions[name]: + ud.unresolvedrev[name] = ud.revisions[name] + ud.revisions[name] = self.latest_revision(ud, d, name) + + gitsrcname = '%s%s' % (ud.host.replace(':', '.'), ud.path.replace('/', '.').replace('*', '.').replace(' ','_')) + if gitsrcname.startswith('.'): + gitsrcname = gitsrcname[1:] + + # for rebaseable git repo, it is necessary to keep mirror tar ball + # per revision, so that even the revision disappears from the + # upstream repo in the future, the mirror will remain intact and still + # contains the revision + if ud.rebaseable: + for name in ud.names: + gitsrcname = gitsrcname + '_' + ud.revisions[name] + + dl_dir = d.getVar("DL_DIR") + gitdir = d.getVar("GITDIR") or (dl_dir + "/git2") + ud.clonedir = os.path.join(gitdir, gitsrcname) + ud.localfile = ud.clonedir + + mirrortarball = 'git2_%s.tar.gz' % gitsrcname + ud.fullmirror = os.path.join(dl_dir, mirrortarball) + ud.mirrortarballs = [mirrortarball] + if ud.shallow: + tarballname = gitsrcname + if ud.bareclone: + tarballname = "%s_bare" % tarballname + + if ud.shallow_revs: + tarballname = "%s_%s" % (tarballname, "_".join(sorted(ud.shallow_revs))) + + for name, revision in sorted(ud.revisions.items()): + tarballname = "%s_%s" % (tarballname, ud.revisions[name][:7]) + depth = ud.shallow_depths[name] + if depth: + tarballname = "%s-%s" % (tarballname, depth) + + shallow_refs = [] + if not ud.nobranch: + shallow_refs.extend(ud.branches.values()) + if ud.shallow_extra_refs: + shallow_refs.extend(r.replace('refs/heads/', '').replace('*', 'ALL') for r in ud.shallow_extra_refs) + if shallow_refs: + tarballname = "%s_%s" % (tarballname, "_".join(sorted(shallow_refs)).replace('/', '.')) + + fetcher = self.__class__.__name__.lower() + ud.shallowtarball = '%sshallow_%s.tar.gz' % (fetcher, tarballname) + ud.fullshallow = os.path.join(dl_dir, ud.shallowtarball) + ud.mirrortarballs.insert(0, ud.shallowtarball) + + def localpath(self, ud, d): + return ud.clonedir + + def need_update(self, ud, d): + return self.clonedir_need_update(ud, d) or self.shallow_tarball_need_update(ud) or self.tarball_need_update(ud) + + def clonedir_need_update(self, ud, d): + if not os.path.exists(ud.clonedir): + return True + if ud.shallow and ud.write_shallow_tarballs and self.clonedir_need_shallow_revs(ud, d): + return True + for name in ud.names: + if not self._contains_ref(ud, d, name, ud.clonedir): + return True + return False + + def clonedir_need_shallow_revs(self, ud, d): + for rev in ud.shallow_revs: + try: + runfetchcmd('%s rev-parse -q --verify %s' % (ud.basecmd, rev), d, quiet=True, workdir=ud.clonedir) + except bb.fetch2.FetchError: + return rev + return None + + def shallow_tarball_need_update(self, ud): + return ud.shallow and ud.write_shallow_tarballs and not os.path.exists(ud.fullshallow) + + def tarball_need_update(self, ud): + return ud.write_tarballs and not os.path.exists(ud.fullmirror) + + def try_premirror(self, ud, d): + # If we don't do this, updating an existing checkout with only premirrors + # is not possible + if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")): + return True + if os.path.exists(ud.clonedir): + return False + return True + + def download(self, ud, d): + """Fetch url""" + + # A current clone is preferred to either tarball, a shallow tarball is + # preferred to an out of date clone, and a missing clone will use + # either tarball. + if ud.shallow and os.path.exists(ud.fullshallow) and self.need_update(ud, d): + ud.localpath = ud.fullshallow + return + elif os.path.exists(ud.fullmirror) and not os.path.exists(ud.clonedir): + bb.utils.mkdirhier(ud.clonedir) + runfetchcmd("tar -xzf %s" % ud.fullmirror, d, workdir=ud.clonedir) + + repourl = self._get_repo_url(ud) + + # If the repo still doesn't exist, fallback to cloning it + if not os.path.exists(ud.clonedir): + # We do this since git will use a "-l" option automatically for local urls where possible, + # but it doesn't work when git/objects is a symlink, only works when it is a directory. + if repourl.startswith("file://"): + repourl_path = repourl[7:] + objects = os.path.join(repourl_path, 'objects') + if os.path.isdir(objects) and not os.path.islink(objects): + repourl = repourl_path + clone_cmd = "LANG=C %s clone --bare --mirror %s %s --progress" % (ud.basecmd, shlex.quote(repourl), ud.clonedir) + if ud.proto.lower() != 'file': + bb.fetch2.check_network_access(d, clone_cmd, ud.url) + progresshandler = GitProgressHandler(d) + runfetchcmd(clone_cmd, d, log=progresshandler) + + # Update the checkout if needed + if self.clonedir_need_update(ud, d): + output = runfetchcmd("%s remote" % ud.basecmd, d, quiet=True, workdir=ud.clonedir) + if "origin" in output: + runfetchcmd("%s remote rm origin" % ud.basecmd, d, workdir=ud.clonedir) + + runfetchcmd("%s remote add --mirror=fetch origin %s" % (ud.basecmd, shlex.quote(repourl)), d, workdir=ud.clonedir) + + if ud.nobranch: + fetch_cmd = "LANG=C %s fetch -f --progress %s refs/*:refs/*" % (ud.basecmd, shlex.quote(repourl)) + else: + fetch_cmd = "LANG=C %s fetch -f --progress %s refs/heads/*:refs/heads/* refs/tags/*:refs/tags/*" % (ud.basecmd, shlex.quote(repourl)) + if ud.proto.lower() != 'file': + bb.fetch2.check_network_access(d, fetch_cmd, ud.url) + progresshandler = GitProgressHandler(d) + runfetchcmd(fetch_cmd, d, log=progresshandler, workdir=ud.clonedir) + runfetchcmd("%s prune-packed" % ud.basecmd, d, workdir=ud.clonedir) + runfetchcmd("%s pack-refs --all" % ud.basecmd, d, workdir=ud.clonedir) + runfetchcmd("%s pack-redundant --all | xargs -r rm" % ud.basecmd, d, workdir=ud.clonedir) + try: + os.unlink(ud.fullmirror) + except OSError as exc: + if exc.errno != errno.ENOENT: + raise + + for name in ud.names: + if not self._contains_ref(ud, d, name, ud.clonedir): + raise bb.fetch2.FetchError("Unable to find revision %s in branch %s even from upstream" % (ud.revisions[name], ud.branches[name])) + + if ud.shallow and ud.write_shallow_tarballs: + missing_rev = self.clonedir_need_shallow_revs(ud, d) + if missing_rev: + raise bb.fetch2.FetchError("Unable to find revision %s even from upstream" % missing_rev) + + if self._contains_lfs(ud, d, ud.clonedir) and self._need_lfs(ud): + # Unpack temporary working copy, use it to run 'git checkout' to force pre-fetching + # of all LFS blobs needed at the srcrev. + # + # It would be nice to just do this inline here by running 'git-lfs fetch' + # on the bare clonedir, but that operation requires a working copy on some + # releases of Git LFS. + tmpdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR')) + try: + # Do the checkout. This implicitly involves a Git LFS fetch. + Git.unpack(self, ud, tmpdir, d) + + # Scoop up a copy of any stuff that Git LFS downloaded. Merge them into + # the bare clonedir. + # + # As this procedure is invoked repeatedly on incremental fetches as + # a recipe's SRCREV is bumped throughout its lifetime, this will + # result in a gradual accumulation of LFS blobs in /lfs + # corresponding to all the blobs reachable from the different revs + # fetched across time. + # + # Only do this if the unpack resulted in a .git/lfs directory being + # created; this only happens if at least one blob needed to be + # downloaded. + if os.path.exists(os.path.join(tmpdir, "git", ".git", "lfs")): + runfetchcmd("tar -cf - lfs | tar -xf - -C %s" % ud.clonedir, d, workdir="%s/git/.git" % tmpdir) + finally: + bb.utils.remove(tmpdir, recurse=True) + + def build_mirror_data(self, ud, d): + + # Create as a temp file and move atomically into position to avoid races + @contextmanager + def create_atomic(filename): + fd, tfile = tempfile.mkstemp(dir=os.path.dirname(filename)) + try: + yield tfile + umask = os.umask(0o666) + os.umask(umask) + os.chmod(tfile, (0o666 & ~umask)) + os.rename(tfile, filename) + finally: + os.close(fd) + + if ud.shallow and ud.write_shallow_tarballs: + if not os.path.exists(ud.fullshallow): + if os.path.islink(ud.fullshallow): + os.unlink(ud.fullshallow) + tempdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR')) + shallowclone = os.path.join(tempdir, 'git') + try: + self.clone_shallow_local(ud, shallowclone, d) + + logger.info("Creating tarball of git repository") + with create_atomic(ud.fullshallow) as tfile: + runfetchcmd("tar -czf %s ." % tfile, d, workdir=shallowclone) + runfetchcmd("touch %s.done" % ud.fullshallow, d) + finally: + bb.utils.remove(tempdir, recurse=True) + elif ud.write_tarballs and not os.path.exists(ud.fullmirror): + if os.path.islink(ud.fullmirror): + os.unlink(ud.fullmirror) + + logger.info("Creating tarball of git repository") + with create_atomic(ud.fullmirror) as tfile: + mtime = runfetchcmd("git log --all -1 --format=%cD", d, + quiet=True, workdir=ud.clonedir) + runfetchcmd("tar -czf %s --owner oe:0 --group oe:0 --mtime \"%s\" ." + % (tfile, mtime), d, workdir=ud.clonedir) + runfetchcmd("touch %s.done" % ud.fullmirror, d) + + def clone_shallow_local(self, ud, dest, d): + """Clone the repo and make it shallow. + + The upstream url of the new clone isn't set at this time, as it'll be + set correctly when unpacked.""" + runfetchcmd("%s clone %s %s %s" % (ud.basecmd, ud.cloneflags, ud.clonedir, dest), d) + + to_parse, shallow_branches = [], [] + for name in ud.names: + revision = ud.revisions[name] + depth = ud.shallow_depths[name] + if depth: + to_parse.append('%s~%d^{}' % (revision, depth - 1)) + + # For nobranch, we need a ref, otherwise the commits will be + # removed, and for non-nobranch, we truncate the branch to our + # srcrev, to avoid keeping unnecessary history beyond that. + branch = ud.branches[name] + if ud.nobranch: + ref = "refs/shallow/%s" % name + elif ud.bareclone: + ref = "refs/heads/%s" % branch + else: + ref = "refs/remotes/origin/%s" % branch + + shallow_branches.append(ref) + runfetchcmd("%s update-ref %s %s" % (ud.basecmd, ref, revision), d, workdir=dest) + + # Map srcrev+depths to revisions + parsed_depths = runfetchcmd("%s rev-parse %s" % (ud.basecmd, " ".join(to_parse)), d, workdir=dest) + + # Resolve specified revisions + parsed_revs = runfetchcmd("%s rev-parse %s" % (ud.basecmd, " ".join('"%s^{}"' % r for r in ud.shallow_revs)), d, workdir=dest) + shallow_revisions = parsed_depths.splitlines() + parsed_revs.splitlines() + + # Apply extra ref wildcards + all_refs = runfetchcmd('%s for-each-ref "--format=%%(refname)"' % ud.basecmd, + d, workdir=dest).splitlines() + for r in ud.shallow_extra_refs: + if not ud.bareclone: + r = r.replace('refs/heads/', 'refs/remotes/origin/') + + if '*' in r: + matches = filter(lambda a: fnmatch.fnmatchcase(a, r), all_refs) + shallow_branches.extend(matches) + else: + shallow_branches.append(r) + + # Make the repository shallow + shallow_cmd = [self.make_shallow_path, '-s'] + for b in shallow_branches: + shallow_cmd.append('-r') + shallow_cmd.append(b) + shallow_cmd.extend(shallow_revisions) + runfetchcmd(subprocess.list2cmdline(shallow_cmd), d, workdir=dest) + + def unpack(self, ud, destdir, d): + """ unpack the downloaded src to destdir""" + + subdir = ud.parm.get("subdir") + subpath = ud.parm.get("subpath") + readpathspec = "" + def_destsuffix = "git/" + + if subpath: + readpathspec = ":%s" % subpath + def_destsuffix = "%s/" % os.path.basename(subpath.rstrip('/')) + + if subdir: + # If 'subdir' param exists, create a dir and use it as destination for unpack cmd + if os.path.isabs(subdir): + if not os.path.realpath(subdir).startswith(os.path.realpath(destdir)): + raise bb.fetch2.UnpackError("subdir argument isn't a subdirectory of unpack root %s" % destdir, ud.url) + destdir = subdir + else: + destdir = os.path.join(destdir, subdir) + def_destsuffix = "" + + destsuffix = ud.parm.get("destsuffix", def_destsuffix) + destdir = ud.destdir = os.path.join(destdir, destsuffix) + if os.path.exists(destdir): + bb.utils.prunedir(destdir) + + need_lfs = self._need_lfs(ud) + + if not need_lfs: + ud.basecmd = "GIT_LFS_SKIP_SMUDGE=1 " + ud.basecmd + + source_found = False + source_error = [] + + if not source_found: + clonedir_is_up_to_date = not self.clonedir_need_update(ud, d) + if clonedir_is_up_to_date: + runfetchcmd("%s clone %s %s/ %s" % (ud.basecmd, ud.cloneflags, ud.clonedir, destdir), d) + source_found = True + else: + source_error.append("clone directory not available or not up to date: " + ud.clonedir) + + if not source_found: + if ud.shallow: + if os.path.exists(ud.fullshallow): + bb.utils.mkdirhier(destdir) + runfetchcmd("tar -xzf %s" % ud.fullshallow, d, workdir=destdir) + source_found = True + else: + source_error.append("shallow clone not available: " + ud.fullshallow) + else: + source_error.append("shallow clone not enabled") + + if not source_found: + raise bb.fetch2.UnpackError("No up to date source found: " + "; ".join(source_error), ud.url) + + repourl = self._get_repo_url(ud) + runfetchcmd("%s remote set-url origin %s" % (ud.basecmd, shlex.quote(repourl)), d, workdir=destdir) + + if self._contains_lfs(ud, d, destdir): + if need_lfs and not self._find_git_lfs(d): + raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or set lfs=0 to ignore it)" % (repourl)) + elif not need_lfs: + bb.note("Repository %s has LFS content but it is not being fetched" % (repourl)) + + if not ud.nocheckout: + if subpath: + runfetchcmd("%s read-tree %s%s" % (ud.basecmd, ud.revisions[ud.names[0]], readpathspec), d, + workdir=destdir) + runfetchcmd("%s checkout-index -q -f -a" % ud.basecmd, d, workdir=destdir) + elif not ud.nobranch: + branchname = ud.branches[ud.names[0]] + runfetchcmd("%s checkout -B %s %s" % (ud.basecmd, branchname, \ + ud.revisions[ud.names[0]]), d, workdir=destdir) + runfetchcmd("%s branch %s --set-upstream-to origin/%s" % (ud.basecmd, branchname, \ + branchname), d, workdir=destdir) + else: + runfetchcmd("%s checkout %s" % (ud.basecmd, ud.revisions[ud.names[0]]), d, workdir=destdir) + + return True + + def clean(self, ud, d): + """ clean the git directory """ + + to_remove = [ud.localpath, ud.fullmirror, ud.fullmirror + ".done"] + # The localpath is a symlink to clonedir when it is cloned from a + # mirror, so remove both of them. + if os.path.islink(ud.localpath): + clonedir = os.path.realpath(ud.localpath) + to_remove.append(clonedir) + + for r in to_remove: + if os.path.exists(r): + bb.note('Removing %s' % r) + bb.utils.remove(r, True) + + def supports_srcrev(self): + return True + + def _contains_ref(self, ud, d, name, wd): + cmd = "" + if ud.nobranch: + cmd = "%s log --pretty=oneline -n 1 %s -- 2> /dev/null | wc -l" % ( + ud.basecmd, ud.revisions[name]) + else: + cmd = "%s branch --contains %s --list %s 2> /dev/null | wc -l" % ( + ud.basecmd, ud.revisions[name], ud.branches[name]) + try: + output = runfetchcmd(cmd, d, quiet=True, workdir=wd) + except bb.fetch2.FetchError: + return False + if len(output.split()) > 1: + raise bb.fetch2.FetchError("The command '%s' gave output with more then 1 line unexpectedly, output: '%s'" % (cmd, output)) + return output.split()[0] != "0" + + def _need_lfs(self, ud): + return ud.parm.get("lfs", "1") == "1" + + def _contains_lfs(self, ud, d, wd): + """ + Check if the repository has 'lfs' (large file) content + """ + + if not ud.nobranch: + branchname = ud.branches[ud.names[0]] + else: + branchname = "master" + + # The bare clonedir doesn't use the remote names; it has the branch immediately. + if wd == ud.clonedir: + refname = ud.branches[ud.names[0]] + else: + refname = "origin/%s" % ud.branches[ud.names[0]] + + cmd = "%s grep lfs %s:.gitattributes | wc -l" % ( + ud.basecmd, refname) + + try: + output = runfetchcmd(cmd, d, quiet=True, workdir=wd) + if int(output) > 0: + return True + except (bb.fetch2.FetchError,ValueError): + pass + return False + + def _find_git_lfs(self, d): + """ + Return True if git-lfs can be found, False otherwise. + """ + import shutil + return shutil.which("git-lfs", path=d.getVar('PATH')) is not None + + def _get_repo_url(self, ud): + """ + Return the repository URL + """ + # Note that we do not support passwords directly in the git urls. There are several + # reasons. SRC_URI can be written out to things like buildhistory and people don't + # want to leak passwords like that. Its also all too easy to share metadata without + # removing the password. ssh keys, ~/.netrc and ~/.ssh/config files can be used as + # alternatives so we will not take patches adding password support here. + if ud.user: + username = ud.user + '@' + else: + username = "" + return "%s://%s%s%s" % (ud.proto, username, ud.host, ud.path) + + def _revision_key(self, ud, d, name): + """ + Return a unique key for the url + """ + # Collapse adjacent slashes + slash_re = re.compile(r"/+") + return "git:" + ud.host + slash_re.sub(".", ud.path) + ud.unresolvedrev[name] + + def _lsremote(self, ud, d, search): + """ + Run git ls-remote with the specified search string + """ + # Prevent recursion e.g. in OE if SRCPV is in PV, PV is in WORKDIR, + # and WORKDIR is in PATH (as a result of RSS), our call to + # runfetchcmd() exports PATH so this function will get called again (!) + # In this scenario the return call of the function isn't actually + # important - WORKDIR isn't needed in PATH to call git ls-remote + # anyway. + if d.getVar('_BB_GIT_IN_LSREMOTE', False): + return '' + d.setVar('_BB_GIT_IN_LSREMOTE', '1') + try: + repourl = self._get_repo_url(ud) + cmd = "%s ls-remote %s %s" % \ + (ud.basecmd, shlex.quote(repourl), search) + if ud.proto.lower() != 'file': + bb.fetch2.check_network_access(d, cmd, repourl) + output = runfetchcmd(cmd, d, True) + if not output: + raise bb.fetch2.FetchError("The command %s gave empty output unexpectedly" % cmd, ud.url) + finally: + d.delVar('_BB_GIT_IN_LSREMOTE') + return output + + def _latest_revision(self, ud, d, name): + """ + Compute the HEAD revision for the url + """ + if not d.getVar("__BBSEENSRCREV"): + raise bb.fetch2.FetchError("Recipe uses a floating tag/branch '%s' for repo '%s' without a fixed SRCREV yet doesn't call bb.fetch2.get_srcrev() (use SRCPV in PV for OE)." % (ud.unresolvedrev[name], ud.host+ud.path)) + + # Ensure we mark as not cached + bb.fetch2.get_autorev(d) + + output = self._lsremote(ud, d, "") + # Tags of the form ^{} may not work, need to fallback to other form + if ud.unresolvedrev[name][:5] == "refs/" or ud.usehead: + head = ud.unresolvedrev[name] + tag = ud.unresolvedrev[name] + else: + head = "refs/heads/%s" % ud.unresolvedrev[name] + tag = "refs/tags/%s" % ud.unresolvedrev[name] + for s in [head, tag + "^{}", tag]: + for l in output.strip().split('\n'): + sha1, ref = l.split() + if s == ref: + return sha1 + raise bb.fetch2.FetchError("Unable to resolve '%s' in upstream git repository in git ls-remote output for %s" % \ + (ud.unresolvedrev[name], ud.host+ud.path)) + + def latest_versionstring(self, ud, d): + """ + Compute the latest release name like "x.y.x" in "x.y.x+gitHASH" + by searching through the tags output of ls-remote, comparing + versions and returning the highest match. + """ + pupver = ('', '') + + tagregex = re.compile(d.getVar('UPSTREAM_CHECK_GITTAGREGEX') or r"(?P([0-9][\.|_]?)+)") + try: + output = self._lsremote(ud, d, "refs/tags/*") + except (bb.fetch2.FetchError, bb.fetch2.NetworkAccess) as e: + bb.note("Could not list remote: %s" % str(e)) + return pupver + + verstring = "" + revision = "" + for line in output.split("\n"): + if not line: + break + + tag_head = line.split("/")[-1] + # Ignore non-released branches + m = re.search(r"(alpha|beta|rc|final)+", tag_head) + if m: + continue + + # search for version in the line + tag = tagregex.search(tag_head) + if tag is None: + continue + + tag = tag.group('pver') + tag = tag.replace("_", ".") + + if verstring and bb.utils.vercmp(("0", tag, ""), ("0", verstring, "")) < 0: + continue + + verstring = tag + revision = line.split()[0] + pupver = (verstring, revision) + + return pupver + + def _build_revision(self, ud, d, name): + return ud.revisions[name] + + def gitpkgv_revision(self, ud, d, name): + """ + Return a sortable revision number by counting commits in the history + Based on gitpkgv.bblass in meta-openembedded + """ + rev = self._build_revision(ud, d, name) + localpath = ud.localpath + rev_file = os.path.join(localpath, "oe-gitpkgv_" + rev) + if not os.path.exists(localpath): + commits = None + else: + if not os.path.exists(rev_file) or not os.path.getsize(rev_file): + from pipes import quote + commits = bb.fetch2.runfetchcmd( + "git rev-list %s -- | wc -l" % quote(rev), + d, quiet=True).strip().lstrip('0') + if commits: + open(rev_file, "w").write("%d\n" % int(commits)) + else: + commits = open(rev_file, "r").readline(128).strip() + if commits: + return False, "%s+%s" % (commits, rev[:7]) + else: + return True, str(rev) + + def checkstatus(self, fetch, ud, d): + try: + self._lsremote(ud, d, "") + return True + except bb.fetch2.FetchError: + return False diff --git a/poky/bitbake/lib/bb/fetch2/gitannex.py b/poky/bitbake/lib/bb/fetch2/gitannex.py new file mode 100644 index 0000000..80a808d --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/gitannex.py @@ -0,0 +1,77 @@ +""" +BitBake 'Fetch' git annex implementation +""" + +# Copyright (C) 2014 Otavio Salvador +# Copyright (C) 2014 O.S. Systems Software LTDA. +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import bb +from bb.fetch2.git import Git +from bb.fetch2 import runfetchcmd + +class GitANNEX(Git): + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with git. + """ + return ud.type in ['gitannex'] + + def urldata_init(self, ud, d): + super(GitANNEX, self).urldata_init(ud, d) + if ud.shallow: + ud.shallow_extra_refs += ['refs/heads/git-annex', 'refs/heads/synced/*'] + + def uses_annex(self, ud, d, wd): + for name in ud.names: + try: + runfetchcmd("%s rev-list git-annex" % (ud.basecmd), d, quiet=True, workdir=wd) + return True + except bb.fetch.FetchError: + pass + + return False + + def update_annex(self, ud, d, wd): + try: + runfetchcmd("%s annex get --all" % (ud.basecmd), d, quiet=True, workdir=wd) + except bb.fetch.FetchError: + return False + runfetchcmd("chmod u+w -R %s/annex" % (ud.clonedir), d, quiet=True, workdir=wd) + + return True + + def download(self, ud, d): + Git.download(self, ud, d) + + if not ud.shallow or ud.localpath != ud.fullshallow: + if self.uses_annex(ud, d, ud.clonedir): + self.update_annex(ud, d, ud.clonedir) + + def clone_shallow_local(self, ud, dest, d): + super(GitANNEX, self).clone_shallow_local(ud, dest, d) + + try: + runfetchcmd("%s annex init" % ud.basecmd, d, workdir=dest) + except bb.fetch.FetchError: + pass + + if self.uses_annex(ud, d, dest): + runfetchcmd("%s annex get" % ud.basecmd, d, workdir=dest) + runfetchcmd("chmod u+w -R %s/.git/annex" % (dest), d, quiet=True, workdir=dest) + + def unpack(self, ud, destdir, d): + Git.unpack(self, ud, destdir, d) + + try: + runfetchcmd("%s annex init" % (ud.basecmd), d, workdir=ud.destdir) + except bb.fetch.FetchError: + pass + + annex = self.uses_annex(ud, d, ud.destdir) + if annex: + runfetchcmd("%s annex get" % (ud.basecmd), d, workdir=ud.destdir) + runfetchcmd("chmod u+w -R %s/.git/annex" % (ud.destdir), d, quiet=True, workdir=ud.destdir) + diff --git a/poky/bitbake/lib/bb/fetch2/gitsm.py b/poky/bitbake/lib/bb/fetch2/gitsm.py new file mode 100644 index 0000000..c5f7c03 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/gitsm.py @@ -0,0 +1,262 @@ +""" +BitBake 'Fetch' git submodules implementation + +Inherits from and extends the Git fetcher to retrieve submodules of a git repository +after cloning. + +SRC_URI = "gitsm://" + +See the Git fetcher, git://, for usage documentation. + +NOTE: Switching a SRC_URI from "git://" to "gitsm://" requires a clean of your recipe. + +""" + +# Copyright (C) 2013 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import bb +import copy +import shutil +import tempfile +from bb.fetch2.git import Git +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger +from bb.fetch2 import Fetch + +class GitSM(Git): + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with git. + """ + return ud.type in ['gitsm'] + + def process_submodules(self, ud, workdir, function, d): + """ + Iterate over all of the submodules in this repository and execute + the 'function' for each of them. + """ + + submodules = [] + paths = {} + revision = {} + uris = {} + subrevision = {} + + def parse_gitmodules(gitmodules): + modules = {} + module = "" + for line in gitmodules.splitlines(): + if line.startswith('[submodule'): + module = line.split('"')[1] + modules[module] = {} + elif module and line.strip().startswith('path'): + path = line.split('=')[1].strip() + modules[module]['path'] = path + elif module and line.strip().startswith('url'): + url = line.split('=')[1].strip() + modules[module]['url'] = url + return modules + + # Collect the defined submodules, and their attributes + for name in ud.names: + try: + gitmodules = runfetchcmd("%s show %s:.gitmodules" % (ud.basecmd, ud.revisions[name]), d, quiet=True, workdir=workdir) + except: + # No submodules to update + continue + + for m, md in parse_gitmodules(gitmodules).items(): + try: + module_hash = runfetchcmd("%s ls-tree -z -d %s %s" % (ud.basecmd, ud.revisions[name], md['path']), d, quiet=True, workdir=workdir) + except: + # If the command fails, we don't have a valid file to check. If it doesn't + # fail -- it still might be a failure, see next check... + module_hash = "" + + if not module_hash: + logger.debug("submodule %s is defined, but is not initialized in the repository. Skipping", m) + continue + + submodules.append(m) + paths[m] = md['path'] + revision[m] = ud.revisions[name] + uris[m] = md['url'] + subrevision[m] = module_hash.split()[2] + + # Convert relative to absolute uri based on parent uri + if uris[m].startswith('..') or uris[m].startswith('./'): + newud = copy.copy(ud) + newud.path = os.path.realpath(os.path.join(newud.path, uris[m])) + uris[m] = Git._get_repo_url(self, newud) + + for module in submodules: + # Translate the module url into a SRC_URI + + if "://" in uris[module]: + # Properly formated URL already + proto = uris[module].split(':', 1)[0] + url = uris[module].replace('%s:' % proto, 'gitsm:', 1) + else: + if ":" in uris[module]: + # Most likely an SSH style reference + proto = "ssh" + if ":/" in uris[module]: + # Absolute reference, easy to convert.. + url = "gitsm://" + uris[module].replace(':/', '/', 1) + else: + # Relative reference, no way to know if this is right! + logger.warning("Submodule included by %s refers to relative ssh reference %s. References may fail if not absolute." % (ud.url, uris[module])) + url = "gitsm://" + uris[module].replace(':', '/', 1) + else: + # This has to be a file reference + proto = "file" + url = "gitsm://" + uris[module] + if url.endswith("{}{}".format(ud.host, ud.path)): + raise bb.fetch2.FetchError("Submodule refers to the parent repository. This will cause deadlock situation in current version of Bitbake." \ + "Consider using git fetcher instead.") + + url += ';protocol=%s' % proto + url += ";name=%s" % module + url += ";subpath=%s" % module + + ld = d.createCopy() + # Not necessary to set SRC_URI, since we're passing the URI to + # Fetch. + #ld.setVar('SRC_URI', url) + ld.setVar('SRCREV_%s' % module, subrevision[module]) + + # Workaround for issues with SRCPV/SRCREV_FORMAT errors + # error refer to 'multiple' repositories. Only the repository + # in the original SRC_URI actually matters... + ld.setVar('SRCPV', d.getVar('SRCPV')) + ld.setVar('SRCREV_FORMAT', module) + + function(ud, url, module, paths[module], workdir, ld) + + return submodules != [] + + def need_update(self, ud, d): + if Git.need_update(self, ud, d): + return True + + need_update_list = [] + def need_update_submodule(ud, url, module, modpath, workdir, d): + url += ";bareclone=1;nobranch=1" + + try: + newfetch = Fetch([url], d, cache=False) + new_ud = newfetch.ud[url] + if new_ud.method.need_update(new_ud, d): + need_update_list.append(modpath) + except Exception as e: + logger.error('gitsm: submodule update check failed: %s %s' % (type(e).__name__, str(e))) + need_update_result = True + + # If we're using a shallow mirror tarball it needs to be unpacked + # temporarily so that we can examine the .gitmodules file + if ud.shallow and os.path.exists(ud.fullshallow) and not os.path.exists(ud.clonedir): + tmpdir = tempfile.mkdtemp(dir=d.getVar("DL_DIR")) + runfetchcmd("tar -xzf %s" % ud.fullshallow, d, workdir=tmpdir) + self.process_submodules(ud, tmpdir, need_update_submodule, d) + shutil.rmtree(tmpdir) + else: + self.process_submodules(ud, ud.clonedir, need_update_submodule, d) + + if need_update_list: + logger.debug('gitsm: Submodules requiring update: %s' % (' '.join(need_update_list))) + return True + + return False + + def download(self, ud, d): + def download_submodule(ud, url, module, modpath, workdir, d): + url += ";bareclone=1;nobranch=1" + + # Is the following still needed? + #url += ";nocheckout=1" + + try: + newfetch = Fetch([url], d, cache=False) + newfetch.download() + except Exception as e: + logger.error('gitsm: submodule download failed: %s %s' % (type(e).__name__, str(e))) + raise + + Git.download(self, ud, d) + + # If we're using a shallow mirror tarball it needs to be unpacked + # temporarily so that we can examine the .gitmodules file + if ud.shallow and os.path.exists(ud.fullshallow) and self.need_update(ud, d): + tmpdir = tempfile.mkdtemp(dir=d.getVar("DL_DIR")) + runfetchcmd("tar -xzf %s" % ud.fullshallow, d, workdir=tmpdir) + self.process_submodules(ud, tmpdir, download_submodule, d) + shutil.rmtree(tmpdir) + else: + self.process_submodules(ud, ud.clonedir, download_submodule, d) + + def unpack(self, ud, destdir, d): + def unpack_submodules(ud, url, module, modpath, workdir, d): + url += ";bareclone=1;nobranch=1" + + # Figure out where we clone over the bare submodules... + if ud.bareclone: + repo_conf = ud.destdir + else: + repo_conf = os.path.join(ud.destdir, '.git') + + try: + newfetch = Fetch([url], d, cache=False) + newfetch.unpack(root=os.path.dirname(os.path.join(repo_conf, 'modules', module))) + except Exception as e: + logger.error('gitsm: submodule unpack failed: %s %s' % (type(e).__name__, str(e))) + raise + + local_path = newfetch.localpath(url) + + # Correct the submodule references to the local download version... + runfetchcmd("%(basecmd)s config submodule.%(module)s.url %(url)s" % {'basecmd': ud.basecmd, 'module': module, 'url' : local_path}, d, workdir=ud.destdir) + + if ud.shallow: + runfetchcmd("%(basecmd)s config submodule.%(module)s.shallow true" % {'basecmd': ud.basecmd, 'module': module}, d, workdir=ud.destdir) + + # Ensure the submodule repository is NOT set to bare, since we're checking it out... + try: + runfetchcmd("%s config core.bare false" % (ud.basecmd), d, quiet=True, workdir=os.path.join(repo_conf, 'modules', module)) + except: + logger.error("Unable to set git config core.bare to false for %s" % os.path.join(repo_conf, 'modules', module)) + raise + + Git.unpack(self, ud, destdir, d) + + ret = self.process_submodules(ud, ud.destdir, unpack_submodules, d) + + if not ud.bareclone and ret: + # All submodules should already be downloaded and configured in the tree. This simply sets + # up the configuration and checks out the files. The main project config should remain + # unmodified, and no download from the internet should occur. + runfetchcmd("%s submodule update --recursive --no-fetch" % (ud.basecmd), d, quiet=True, workdir=ud.destdir) + + def implicit_urldata(self, ud, d): + import shutil, subprocess, tempfile + + urldata = [] + def add_submodule(ud, url, module, modpath, workdir, d): + url += ";bareclone=1;nobranch=1" + newfetch = Fetch([url], d, cache=False) + urldata.extend(newfetch.expanded_urldata()) + + # If we're using a shallow mirror tarball it needs to be unpacked + # temporarily so that we can examine the .gitmodules file + if ud.shallow and os.path.exists(ud.fullshallow) and ud.method.need_update(ud, d): + tmpdir = tempfile.mkdtemp(dir=d.getVar("DL_DIR")) + subprocess.check_call("tar -xzf %s" % ud.fullshallow, cwd=tmpdir, shell=True) + self.process_submodules(ud, tmpdir, add_submodule, d) + shutil.rmtree(tmpdir) + else: + self.process_submodules(ud, ud.clonedir, add_submodule, d) + + return urldata diff --git a/poky/bitbake/lib/bb/fetch2/hg.py b/poky/bitbake/lib/bb/fetch2/hg.py new file mode 100644 index 0000000..063e130 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/hg.py @@ -0,0 +1,263 @@ +""" +BitBake 'Fetch' implementation for mercurial DRCS (hg). + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2004 Marcin Juszkiewicz +# Copyright (C) 2007 Robert Schuster +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig +# + +import os +import bb +import errno +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import MissingParameterError +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger + +class Hg(FetchMethod): + """Class to fetch from mercurial repositories""" + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with mercurial. + """ + return ud.type in ['hg'] + + def supports_checksum(self, urldata): + """ + Don't require checksums for local archives created from + repository checkouts. + """ + return False + + def urldata_init(self, ud, d): + """ + init hg specific variable within url data + """ + if not "module" in ud.parm: + raise MissingParameterError('module', ud.url) + + ud.module = ud.parm["module"] + + if 'protocol' in ud.parm: + ud.proto = ud.parm['protocol'] + elif not ud.host: + ud.proto = 'file' + else: + ud.proto = "hg" + + # Create paths to mercurial checkouts + hgsrcname = '%s_%s_%s' % (ud.module.replace('/', '.'), \ + ud.host, ud.path.replace('/', '.')) + mirrortarball = 'hg_%s.tar.gz' % hgsrcname + ud.fullmirror = os.path.join(d.getVar("DL_DIR"), mirrortarball) + ud.mirrortarballs = [mirrortarball] + + hgdir = d.getVar("HGDIR") or (d.getVar("DL_DIR") + "/hg") + ud.pkgdir = os.path.join(hgdir, hgsrcname) + ud.moddir = os.path.join(ud.pkgdir, ud.module) + ud.localfile = ud.moddir + ud.basecmd = d.getVar("FETCHCMD_hg") or "/usr/bin/env hg" + + ud.setup_revisions(d) + + if 'rev' in ud.parm: + ud.revision = ud.parm['rev'] + elif not ud.revision: + ud.revision = self.latest_revision(ud, d) + + ud.write_tarballs = d.getVar("BB_GENERATE_MIRROR_TARBALLS") + + def need_update(self, ud, d): + revTag = ud.parm.get('rev', 'tip') + if revTag == "tip": + return True + if not os.path.exists(ud.localpath): + return True + return False + + def try_premirror(self, ud, d): + # If we don't do this, updating an existing checkout with only premirrors + # is not possible + if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")): + return True + if os.path.exists(ud.moddir): + return False + return True + + def _buildhgcommand(self, ud, d, command): + """ + Build up an hg commandline based on ud + command is "fetch", "update", "info" + """ + + proto = ud.parm.get('protocol', 'http') + + host = ud.host + if proto == "file": + host = "/" + ud.host = "localhost" + + if not ud.user: + hgroot = host + ud.path + else: + if ud.pswd: + hgroot = ud.user + ":" + ud.pswd + "@" + host + ud.path + else: + hgroot = ud.user + "@" + host + ud.path + + if command == "info": + return "%s identify -i %s://%s/%s" % (ud.basecmd, proto, hgroot, ud.module) + + options = []; + + # Don't specify revision for the fetch; clone the entire repo. + # This avoids an issue if the specified revision is a tag, because + # the tag actually exists in the specified revision + 1, so it won't + # be available when used in any successive commands. + if ud.revision and command != "fetch": + options.append("-r %s" % ud.revision) + + if command == "fetch": + if ud.user and ud.pswd: + cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" clone %s %s://%s/%s %s" % (ud.basecmd, ud.user, ud.pswd, proto, " ".join(options), proto, hgroot, ud.module, ud.module) + else: + cmd = "%s clone %s %s://%s/%s %s" % (ud.basecmd, " ".join(options), proto, hgroot, ud.module, ud.module) + elif command == "pull": + # do not pass options list; limiting pull to rev causes the local + # repo not to contain it and immediately following "update" command + # will crash + if ud.user and ud.pswd: + cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" pull" % (ud.basecmd, ud.user, ud.pswd, proto) + else: + cmd = "%s pull" % (ud.basecmd) + elif command == "update" or command == "up": + if ud.user and ud.pswd: + cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" update -C %s" % (ud.basecmd, ud.user, ud.pswd, proto, " ".join(options)) + else: + cmd = "%s update -C %s" % (ud.basecmd, " ".join(options)) + else: + raise FetchError("Invalid hg command %s" % command, ud.url) + + return cmd + + def download(self, ud, d): + """Fetch url""" + + logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'") + + # If the checkout doesn't exist and the mirror tarball does, extract it + if not os.path.exists(ud.pkgdir) and os.path.exists(ud.fullmirror): + bb.utils.mkdirhier(ud.pkgdir) + runfetchcmd("tar -xzf %s" % (ud.fullmirror), d, workdir=ud.pkgdir) + + if os.access(os.path.join(ud.moddir, '.hg'), os.R_OK): + # Found the source, check whether need pull + updatecmd = self._buildhgcommand(ud, d, "update") + logger.debug("Running %s", updatecmd) + try: + runfetchcmd(updatecmd, d, workdir=ud.moddir) + except bb.fetch2.FetchError: + # Runnning pull in the repo + pullcmd = self._buildhgcommand(ud, d, "pull") + logger.info("Pulling " + ud.url) + # update sources there + logger.debug("Running %s", pullcmd) + bb.fetch2.check_network_access(d, pullcmd, ud.url) + runfetchcmd(pullcmd, d, workdir=ud.moddir) + try: + os.unlink(ud.fullmirror) + except OSError as exc: + if exc.errno != errno.ENOENT: + raise + + # No source found, clone it. + if not os.path.exists(ud.moddir): + fetchcmd = self._buildhgcommand(ud, d, "fetch") + logger.info("Fetch " + ud.url) + # check out sources there + bb.utils.mkdirhier(ud.pkgdir) + logger.debug("Running %s", fetchcmd) + bb.fetch2.check_network_access(d, fetchcmd, ud.url) + runfetchcmd(fetchcmd, d, workdir=ud.pkgdir) + + # Even when we clone (fetch), we still need to update as hg's clone + # won't checkout the specified revision if its on a branch + updatecmd = self._buildhgcommand(ud, d, "update") + logger.debug("Running %s", updatecmd) + runfetchcmd(updatecmd, d, workdir=ud.moddir) + + def clean(self, ud, d): + """ Clean the hg dir """ + + bb.utils.remove(ud.localpath, True) + bb.utils.remove(ud.fullmirror) + bb.utils.remove(ud.fullmirror + ".done") + + def supports_srcrev(self): + return True + + def _latest_revision(self, ud, d, name): + """ + Compute tip revision for the url + """ + bb.fetch2.check_network_access(d, self._buildhgcommand(ud, d, "info"), ud.url) + output = runfetchcmd(self._buildhgcommand(ud, d, "info"), d) + return output.strip() + + def _build_revision(self, ud, d, name): + return ud.revision + + def _revision_key(self, ud, d, name): + """ + Return a unique key for the url + """ + return "hg:" + ud.moddir + + def build_mirror_data(self, ud, d): + # Generate a mirror tarball if needed + if ud.write_tarballs == "1" and not os.path.exists(ud.fullmirror): + # it's possible that this symlink points to read-only filesystem with PREMIRROR + if os.path.islink(ud.fullmirror): + os.unlink(ud.fullmirror) + + logger.info("Creating tarball of hg repository") + runfetchcmd("tar -czf %s %s" % (ud.fullmirror, ud.module), d, workdir=ud.pkgdir) + runfetchcmd("touch %s.done" % (ud.fullmirror), d, workdir=ud.pkgdir) + + def localpath(self, ud, d): + return ud.pkgdir + + def unpack(self, ud, destdir, d): + """ + Make a local clone or export for the url + """ + + revflag = "-r %s" % ud.revision + subdir = ud.parm.get("destsuffix", ud.module) + codir = "%s/%s" % (destdir, subdir) + + scmdata = ud.parm.get("scmdata", "") + if scmdata != "nokeep": + proto = ud.parm.get('protocol', 'http') + if not os.access(os.path.join(codir, '.hg'), os.R_OK): + logger.debug2("Unpack: creating new hg repository in '" + codir + "'") + runfetchcmd("%s init %s" % (ud.basecmd, codir), d) + logger.debug2("Unpack: updating source in '" + codir + "'") + if ud.user and ud.pswd: + runfetchcmd("%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" pull %s" % (ud.basecmd, ud.user, ud.pswd, proto, ud.moddir), d, workdir=codir) + else: + runfetchcmd("%s pull %s" % (ud.basecmd, ud.moddir), d, workdir=codir) + if ud.user and ud.pswd: + runfetchcmd("%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" up -C %s" % (ud.basecmd, ud.user, ud.pswd, proto, revflag), d, workdir=codir) + else: + runfetchcmd("%s up -C %s" % (ud.basecmd, revflag), d, workdir=codir) + else: + logger.debug2("Unpack: extracting source to '" + codir + "'") + runfetchcmd("%s archive -t files %s %s" % (ud.basecmd, revflag, codir), d, workdir=ud.moddir) diff --git a/poky/bitbake/lib/bb/fetch2/local.py b/poky/bitbake/lib/bb/fetch2/local.py new file mode 100644 index 0000000..e7d1c8c --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/local.py @@ -0,0 +1,98 @@ +""" +BitBake 'Fetch' implementations + +Classes for obtaining upstream sources for the +BitBake build tools. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig +# + +import os +import urllib.request, urllib.parse, urllib.error +import bb +import bb.utils +from bb.fetch2 import FetchMethod, FetchError, ParameterError +from bb.fetch2 import logger + +class Local(FetchMethod): + def supports(self, urldata, d): + """ + Check to see if a given url represents a local fetch. + """ + return urldata.type in ['file'] + + def urldata_init(self, ud, d): + # We don't set localfile as for this fetcher the file is already local! + ud.decodedurl = urllib.parse.unquote(ud.url.split("://")[1].split(";")[0]) + ud.basename = os.path.basename(ud.decodedurl) + ud.basepath = ud.decodedurl + ud.needdonestamp = False + if "*" in ud.decodedurl: + raise bb.fetch2.ParameterError("file:// urls using globbing are no longer supported. Please place the files in a directory and reference that instead.", ud.url) + return + + def localpath(self, urldata, d): + """ + Return the local filename of a given url assuming a successful fetch. + """ + return self.localpaths(urldata, d)[-1] + + def localpaths(self, urldata, d): + """ + Return the local filename of a given url assuming a successful fetch. + """ + searched = [] + path = urldata.decodedurl + newpath = path + if path[0] == "/": + return [path] + filespath = d.getVar('FILESPATH') + if filespath: + logger.debug2("Searching for %s in paths:\n %s" % (path, "\n ".join(filespath.split(":")))) + newpath, hist = bb.utils.which(filespath, path, history=True) + searched.extend(hist) + if not os.path.exists(newpath): + dldirfile = os.path.join(d.getVar("DL_DIR"), path) + logger.debug2("Defaulting to %s for %s" % (dldirfile, path)) + bb.utils.mkdirhier(os.path.dirname(dldirfile)) + searched.append(dldirfile) + return searched + return searched + + def need_update(self, ud, d): + if os.path.exists(ud.localpath): + return False + return True + + def download(self, urldata, d): + """Fetch urls (no-op for Local method)""" + # no need to fetch local files, we'll deal with them in place. + if self.supports_checksum(urldata) and not os.path.exists(urldata.localpath): + locations = [] + filespath = d.getVar('FILESPATH') + if filespath: + locations = filespath.split(":") + locations.append(d.getVar("DL_DIR")) + + msg = "Unable to find file " + urldata.url + " anywhere. The paths that were searched were:\n " + "\n ".join(locations) + raise FetchError(msg) + + return True + + def checkstatus(self, fetch, urldata, d): + """ + Check the status of the url + """ + if os.path.exists(urldata.localpath): + return True + return False + + def clean(self, urldata, d): + return + diff --git a/poky/bitbake/lib/bb/fetch2/npm.py b/poky/bitbake/lib/bb/fetch2/npm.py new file mode 100644 index 0000000..8a179a3 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/npm.py @@ -0,0 +1,310 @@ +# Copyright (C) 2020 Savoir-Faire Linux +# +# SPDX-License-Identifier: GPL-2.0-only +# +""" +BitBake 'Fetch' npm implementation + +npm fetcher support the SRC_URI with format of: +SRC_URI = "npm://some.registry.url;OptionA=xxx;OptionB=xxx;..." + +Supported SRC_URI options are: + +- package + The npm package name. This is a mandatory parameter. + +- version + The npm package version. This is a mandatory parameter. + +- downloadfilename + Specifies the filename used when storing the downloaded file. + +- destsuffix + Specifies the directory to use to unpack the package (default: npm). +""" + +import base64 +import json +import os +import re +import shlex +import tempfile +import bb +from bb.fetch2 import Fetch +from bb.fetch2 import FetchError +from bb.fetch2 import FetchMethod +from bb.fetch2 import MissingParameterError +from bb.fetch2 import ParameterError +from bb.fetch2 import URI +from bb.fetch2 import check_network_access +from bb.fetch2 import runfetchcmd +from bb.utils import is_semver + +def npm_package(package): + """Convert the npm package name to remove unsupported character""" + # Scoped package names (with the @) use the same naming convention + # as the 'npm pack' command. + if package.startswith("@"): + return re.sub("/", "-", package[1:]) + return package + +def npm_filename(package, version): + """Get the filename of a npm package""" + return npm_package(package) + "-" + version + ".tgz" + +def npm_localfile(package, version=None): + """Get the local filename of a npm package""" + if version is not None: + filename = npm_filename(package, version) + else: + filename = package + return os.path.join("npm2", filename) + +def npm_integrity(integrity): + """ + Get the checksum name and expected value from the subresource integrity + https://www.w3.org/TR/SRI/ + """ + algo, value = integrity.split("-", maxsplit=1) + return "%ssum" % algo, base64.b64decode(value).hex() + +def npm_unpack(tarball, destdir, d): + """Unpack a npm tarball""" + bb.utils.mkdirhier(destdir) + cmd = "tar --extract --gzip --file=%s" % shlex.quote(tarball) + cmd += " --no-same-owner" + cmd += " --delay-directory-restore" + cmd += " --strip-components=1" + runfetchcmd(cmd, d, workdir=destdir) + runfetchcmd("chmod -R +X '%s'" % (destdir), d, quiet=True, workdir=destdir) + +class NpmEnvironment(object): + """ + Using a npm config file seems more reliable than using cli arguments. + This class allows to create a controlled environment for npm commands. + """ + def __init__(self, d, configs=[], npmrc=None): + self.d = d + + self.user_config = tempfile.NamedTemporaryFile(mode="w", buffering=1) + for key, value in configs: + self.user_config.write("%s=%s\n" % (key, value)) + + if npmrc: + self.global_config_name = npmrc + else: + self.global_config_name = "/dev/null" + + def __del__(self): + if self.user_config: + self.user_config.close() + + def run(self, cmd, args=None, configs=None, workdir=None): + """Run npm command in a controlled environment""" + with tempfile.TemporaryDirectory() as tmpdir: + d = bb.data.createCopy(self.d) + d.setVar("HOME", tmpdir) + + if not workdir: + workdir = tmpdir + + def _run(cmd): + cmd = "NPM_CONFIG_USERCONFIG=%s " % (self.user_config.name) + cmd + cmd = "NPM_CONFIG_GLOBALCONFIG=%s " % (self.global_config_name) + cmd + return runfetchcmd(cmd, d, workdir=workdir) + + if configs: + bb.warn("Use of configs argument of NpmEnvironment.run() function" + " is deprecated. Please use args argument instead.") + for key, value in configs: + cmd += " --%s=%s" % (key, shlex.quote(value)) + + if args: + for key, value in args: + cmd += " --%s=%s" % (key, shlex.quote(value)) + + return _run(cmd) + +class Npm(FetchMethod): + """Class to fetch a package from a npm registry""" + + def supports(self, ud, d): + """Check if a given url can be fetched with npm""" + return ud.type in ["npm"] + + def urldata_init(self, ud, d): + """Init npm specific variables within url data""" + ud.package = None + ud.version = None + ud.registry = None + + # Get the 'package' parameter + if "package" in ud.parm: + ud.package = ud.parm.get("package") + + if not ud.package: + raise MissingParameterError("Parameter 'package' required", ud.url) + + # Get the 'version' parameter + if "version" in ud.parm: + ud.version = ud.parm.get("version") + + if not ud.version: + raise MissingParameterError("Parameter 'version' required", ud.url) + + if not is_semver(ud.version) and not ud.version == "latest": + raise ParameterError("Invalid 'version' parameter", ud.url) + + # Extract the 'registry' part of the url + ud.registry = re.sub(r"^npm://", "https://", ud.url.split(";")[0]) + + # Using the 'downloadfilename' parameter as local filename + # or the npm package name. + if "downloadfilename" in ud.parm: + ud.localfile = npm_localfile(d.expand(ud.parm["downloadfilename"])) + else: + ud.localfile = npm_localfile(ud.package, ud.version) + + # Get the base 'npm' command + ud.basecmd = d.getVar("FETCHCMD_npm") or "npm" + + # This fetcher resolves a URI from a npm package name and version and + # then forwards it to a proxy fetcher. A resolve file containing the + # resolved URI is created to avoid unwanted network access (if the file + # already exists). The management of the donestamp file, the lockfile + # and the checksums are forwarded to the proxy fetcher. + ud.proxy = None + ud.needdonestamp = False + ud.resolvefile = self.localpath(ud, d) + ".resolved" + + def _resolve_proxy_url(self, ud, d): + def _npm_view(): + args = [] + args.append(("json", "true")) + args.append(("registry", ud.registry)) + pkgver = shlex.quote(ud.package + "@" + ud.version) + cmd = ud.basecmd + " view %s" % pkgver + env = NpmEnvironment(d) + check_network_access(d, cmd, ud.registry) + view_string = env.run(cmd, args=args) + + if not view_string: + raise FetchError("Unavailable package %s" % pkgver, ud.url) + + try: + view = json.loads(view_string) + + error = view.get("error") + if error is not None: + raise FetchError(error.get("summary"), ud.url) + + if ud.version == "latest": + bb.warn("The npm package %s is using the latest " \ + "version available. This could lead to " \ + "non-reproducible builds." % pkgver) + elif ud.version != view.get("version"): + raise ParameterError("Invalid 'version' parameter", ud.url) + + return view + + except Exception as e: + raise FetchError("Invalid view from npm: %s" % str(e), ud.url) + + def _get_url(view): + tarball_url = view.get("dist", {}).get("tarball") + + if tarball_url is None: + raise FetchError("Invalid 'dist.tarball' in view", ud.url) + + uri = URI(tarball_url) + uri.params["downloadfilename"] = ud.localfile + + integrity = view.get("dist", {}).get("integrity") + shasum = view.get("dist", {}).get("shasum") + + if integrity is not None: + checksum_name, checksum_expected = npm_integrity(integrity) + uri.params[checksum_name] = checksum_expected + elif shasum is not None: + uri.params["sha1sum"] = shasum + else: + raise FetchError("Invalid 'dist.integrity' in view", ud.url) + + return str(uri) + + url = _get_url(_npm_view()) + + bb.utils.mkdirhier(os.path.dirname(ud.resolvefile)) + with open(ud.resolvefile, "w") as f: + f.write(url) + + def _setup_proxy(self, ud, d): + if ud.proxy is None: + if not os.path.exists(ud.resolvefile): + self._resolve_proxy_url(ud, d) + + with open(ud.resolvefile, "r") as f: + url = f.read() + + # Avoid conflicts between the environment data and: + # - the proxy url checksum + data = bb.data.createCopy(d) + data.delVarFlags("SRC_URI") + ud.proxy = Fetch([url], data) + + def _get_proxy_method(self, ud, d): + self._setup_proxy(ud, d) + proxy_url = ud.proxy.urls[0] + proxy_ud = ud.proxy.ud[proxy_url] + proxy_d = ud.proxy.d + proxy_ud.setup_localpath(proxy_d) + return proxy_ud.method, proxy_ud, proxy_d + + def verify_donestamp(self, ud, d): + """Verify the donestamp file""" + proxy_m, proxy_ud, proxy_d = self._get_proxy_method(ud, d) + return proxy_m.verify_donestamp(proxy_ud, proxy_d) + + def update_donestamp(self, ud, d): + """Update the donestamp file""" + proxy_m, proxy_ud, proxy_d = self._get_proxy_method(ud, d) + proxy_m.update_donestamp(proxy_ud, proxy_d) + + def need_update(self, ud, d): + """Force a fetch, even if localpath exists ?""" + if not os.path.exists(ud.resolvefile): + return True + if ud.version == "latest": + return True + proxy_m, proxy_ud, proxy_d = self._get_proxy_method(ud, d) + return proxy_m.need_update(proxy_ud, proxy_d) + + def try_mirrors(self, fetch, ud, d, mirrors): + """Try to use a mirror""" + proxy_m, proxy_ud, proxy_d = self._get_proxy_method(ud, d) + return proxy_m.try_mirrors(fetch, proxy_ud, proxy_d, mirrors) + + def download(self, ud, d): + """Fetch url""" + self._setup_proxy(ud, d) + ud.proxy.download() + + def unpack(self, ud, rootdir, d): + """Unpack the downloaded archive""" + destsuffix = ud.parm.get("destsuffix", "npm") + destdir = os.path.join(rootdir, destsuffix) + npm_unpack(ud.localpath, destdir, d) + + def clean(self, ud, d): + """Clean any existing full or partial download""" + if os.path.exists(ud.resolvefile): + self._setup_proxy(ud, d) + ud.proxy.clean() + bb.utils.remove(ud.resolvefile) + + def done(self, ud, d): + """Is the download done ?""" + if not os.path.exists(ud.resolvefile): + return False + proxy_m, proxy_ud, proxy_d = self._get_proxy_method(ud, d) + return proxy_m.done(proxy_ud, proxy_d) diff --git a/poky/bitbake/lib/bb/fetch2/npmsw.py b/poky/bitbake/lib/bb/fetch2/npmsw.py new file mode 100644 index 0000000..a8c4d35 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/npmsw.py @@ -0,0 +1,282 @@ +# Copyright (C) 2020 Savoir-Faire Linux +# +# SPDX-License-Identifier: GPL-2.0-only +# +""" +BitBake 'Fetch' npm shrinkwrap implementation + +npm fetcher support the SRC_URI with format of: +SRC_URI = "npmsw://some.registry.url;OptionA=xxx;OptionB=xxx;..." + +Supported SRC_URI options are: + +- dev + Set to 1 to also install devDependencies. + +- destsuffix + Specifies the directory to use to unpack the dependencies (default: ${S}). +""" + +import json +import os +import re +import bb +from bb.fetch2 import Fetch +from bb.fetch2 import FetchMethod +from bb.fetch2 import ParameterError +from bb.fetch2 import runfetchcmd +from bb.fetch2 import URI +from bb.fetch2.npm import npm_integrity +from bb.fetch2.npm import npm_localfile +from bb.fetch2.npm import npm_unpack +from bb.utils import is_semver +from bb.utils import lockfile +from bb.utils import unlockfile + +def foreach_dependencies(shrinkwrap, callback=None, dev=False): + """ + Run a callback for each dependencies of a shrinkwrap file. + The callback is using the format: + callback(name, params, deptree) + with: + name = the package name (string) + params = the package parameters (dictionary) + deptree = the package dependency tree (array of strings) + """ + def _walk_deps(deps, deptree): + for name in deps: + subtree = [*deptree, name] + _walk_deps(deps[name].get("dependencies", {}), subtree) + if callback is not None: + if deps[name].get("dev", False) and not dev: + continue + elif deps[name].get("bundled", False): + continue + callback(name, deps[name], subtree) + + _walk_deps(shrinkwrap.get("dependencies", {}), []) + +class NpmShrinkWrap(FetchMethod): + """Class to fetch all package from a shrinkwrap file""" + + def supports(self, ud, d): + """Check if a given url can be fetched with npmsw""" + return ud.type in ["npmsw"] + + def urldata_init(self, ud, d): + """Init npmsw specific variables within url data""" + + # Get the 'shrinkwrap' parameter + ud.shrinkwrap_file = re.sub(r"^npmsw://", "", ud.url.split(";")[0]) + + # Get the 'dev' parameter + ud.dev = bb.utils.to_boolean(ud.parm.get("dev"), False) + + # Resolve the dependencies + ud.deps = [] + + def _resolve_dependency(name, params, deptree): + url = None + localpath = None + extrapaths = [] + destsubdirs = [os.path.join("node_modules", dep) for dep in deptree] + destsuffix = os.path.join(*destsubdirs) + unpack = True + + integrity = params.get("integrity", None) + resolved = params.get("resolved", None) + version = params.get("version", None) + + # Handle registry sources + if is_semver(version) and integrity: + # Handle duplicate dependencies without url + if not resolved: + return + + localfile = npm_localfile(name, version) + + uri = URI(resolved) + uri.params["downloadfilename"] = localfile + + checksum_name, checksum_expected = npm_integrity(integrity) + uri.params[checksum_name] = checksum_expected + + url = str(uri) + + localpath = os.path.join(d.getVar("DL_DIR"), localfile) + + # Create a resolve file to mimic the npm fetcher and allow + # re-usability of the downloaded file. + resolvefile = localpath + ".resolved" + + bb.utils.mkdirhier(os.path.dirname(resolvefile)) + with open(resolvefile, "w") as f: + f.write(url) + + extrapaths.append(resolvefile) + + # Handle http tarball sources + elif version.startswith("http") and integrity: + localfile = npm_localfile(os.path.basename(version)) + + uri = URI(version) + uri.params["downloadfilename"] = localfile + + checksum_name, checksum_expected = npm_integrity(integrity) + uri.params[checksum_name] = checksum_expected + + url = str(uri) + + localpath = os.path.join(d.getVar("DL_DIR"), localfile) + + # Handle git sources + elif version.startswith("git"): + if version.startswith("github:"): + version = "git+https://github.com/" + version[len("github:"):] + regex = re.compile(r""" + ^ + git\+ + (?P[a-z]+) + :// + (?P[^#]+) + \# + (?P[0-9a-f]+) + $ + """, re.VERBOSE) + + match = regex.match(version) + + if not match: + raise ParameterError("Invalid git url: %s" % version, ud.url) + + groups = match.groupdict() + + uri = URI("git://" + str(groups["url"])) + uri.params["protocol"] = str(groups["protocol"]) + uri.params["rev"] = str(groups["rev"]) + uri.params["destsuffix"] = destsuffix + + url = str(uri) + + # Handle local tarball and link sources + elif version.startswith("file"): + localpath = version[5:] + if not version.endswith(".tgz"): + unpack = False + + else: + raise ParameterError("Unsupported dependency: %s" % name, ud.url) + + ud.deps.append({ + "url": url, + "localpath": localpath, + "extrapaths": extrapaths, + "destsuffix": destsuffix, + "unpack": unpack, + }) + + try: + with open(ud.shrinkwrap_file, "r") as f: + shrinkwrap = json.load(f) + except Exception as e: + raise ParameterError("Invalid shrinkwrap file: %s" % str(e), ud.url) + + foreach_dependencies(shrinkwrap, _resolve_dependency, ud.dev) + + # Avoid conflicts between the environment data and: + # - the proxy url revision + # - the proxy url checksum + data = bb.data.createCopy(d) + data.delVar("SRCREV") + data.delVarFlags("SRC_URI") + + # This fetcher resolves multiple URIs from a shrinkwrap file and then + # forwards it to a proxy fetcher. The management of the donestamp file, + # the lockfile and the checksums are forwarded to the proxy fetcher. + ud.proxy = Fetch([dep["url"] for dep in ud.deps if dep["url"]], data) + ud.needdonestamp = False + + @staticmethod + def _foreach_proxy_method(ud, handle): + returns = [] + for proxy_url in ud.proxy.urls: + proxy_ud = ud.proxy.ud[proxy_url] + proxy_d = ud.proxy.d + proxy_ud.setup_localpath(proxy_d) + lf = lockfile(proxy_ud.lockfile) + returns.append(handle(proxy_ud.method, proxy_ud, proxy_d)) + unlockfile(lf) + return returns + + def verify_donestamp(self, ud, d): + """Verify the donestamp file""" + def _handle(m, ud, d): + return m.verify_donestamp(ud, d) + return all(self._foreach_proxy_method(ud, _handle)) + + def update_donestamp(self, ud, d): + """Update the donestamp file""" + def _handle(m, ud, d): + m.update_donestamp(ud, d) + self._foreach_proxy_method(ud, _handle) + + def need_update(self, ud, d): + """Force a fetch, even if localpath exists ?""" + def _handle(m, ud, d): + return m.need_update(ud, d) + return all(self._foreach_proxy_method(ud, _handle)) + + def try_mirrors(self, fetch, ud, d, mirrors): + """Try to use a mirror""" + def _handle(m, ud, d): + return m.try_mirrors(fetch, ud, d, mirrors) + return all(self._foreach_proxy_method(ud, _handle)) + + def download(self, ud, d): + """Fetch url""" + ud.proxy.download() + + def unpack(self, ud, rootdir, d): + """Unpack the downloaded dependencies""" + destdir = d.getVar("S") + destsuffix = ud.parm.get("destsuffix") + if destsuffix: + destdir = os.path.join(rootdir, destsuffix) + + bb.utils.mkdirhier(destdir) + bb.utils.copyfile(ud.shrinkwrap_file, + os.path.join(destdir, "npm-shrinkwrap.json")) + + auto = [dep["url"] for dep in ud.deps if not dep["localpath"]] + manual = [dep for dep in ud.deps if dep["localpath"]] + + if auto: + ud.proxy.unpack(destdir, auto) + + for dep in manual: + depdestdir = os.path.join(destdir, dep["destsuffix"]) + if dep["url"]: + npm_unpack(dep["localpath"], depdestdir, d) + else: + depsrcdir= os.path.join(destdir, dep["localpath"]) + if dep["unpack"]: + npm_unpack(depsrcdir, depdestdir, d) + else: + bb.utils.mkdirhier(depdestdir) + cmd = 'cp -fpPRH "%s/." .' % (depsrcdir) + runfetchcmd(cmd, d, workdir=depdestdir) + + def clean(self, ud, d): + """Clean any existing full or partial download""" + ud.proxy.clean() + + # Clean extra files + for dep in ud.deps: + for path in dep["extrapaths"]: + bb.utils.remove(path) + + def done(self, ud, d): + """Is the download done ?""" + def _handle(m, ud, d): + return m.done(ud, d) + return all(self._foreach_proxy_method(ud, _handle)) diff --git a/poky/bitbake/lib/bb/fetch2/osc.py b/poky/bitbake/lib/bb/fetch2/osc.py new file mode 100644 index 0000000..bf4c2f0 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/osc.py @@ -0,0 +1,141 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# +""" +Bitbake "Fetch" implementation for osc (Opensuse build service client). +Based on the svn "Fetch" implementation. + +""" + +import logging +import os +import bb +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import MissingParameterError +from bb.fetch2 import runfetchcmd + +logger = logging.getLogger(__name__) + +class Osc(FetchMethod): + """Class to fetch a module or modules from Opensuse build server + repositories.""" + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with osc. + """ + return ud.type in ['osc'] + + def urldata_init(self, ud, d): + if not "module" in ud.parm: + raise MissingParameterError('module', ud.url) + + ud.module = ud.parm["module"] + + # Create paths to osc checkouts + oscdir = d.getVar("OSCDIR") or (d.getVar("DL_DIR") + "/osc") + relpath = self._strip_leading_slashes(ud.path) + ud.oscdir = oscdir + ud.pkgdir = os.path.join(oscdir, ud.host) + ud.moddir = os.path.join(ud.pkgdir, relpath, ud.module) + + if 'rev' in ud.parm: + ud.revision = ud.parm['rev'] + else: + pv = d.getVar("PV", False) + rev = bb.fetch2.srcrev_internal_helper(ud, d, '') + if rev: + ud.revision = rev + else: + ud.revision = "" + + ud.localfile = d.expand('%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), relpath.replace('/', '.'), ud.revision)) + + def _buildosccommand(self, ud, d, command): + """ + Build up an ocs commandline based on ud + command is "fetch", "update", "info" + """ + + basecmd = d.getVar("FETCHCMD_osc") or "/usr/bin/env osc" + + proto = ud.parm.get('protocol', 'ocs') + + options = [] + + config = "-c %s" % self.generate_config(ud, d) + + if ud.revision: + options.append("-r %s" % ud.revision) + + coroot = self._strip_leading_slashes(ud.path) + + if command == "fetch": + osccmd = "%s %s co %s/%s %s" % (basecmd, config, coroot, ud.module, " ".join(options)) + elif command == "update": + osccmd = "%s %s up %s" % (basecmd, config, " ".join(options)) + else: + raise FetchError("Invalid osc command %s" % command, ud.url) + + return osccmd + + def download(self, ud, d): + """ + Fetch url + """ + + logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'") + + if os.access(ud.moddir, os.R_OK): + oscupdatecmd = self._buildosccommand(ud, d, "update") + logger.info("Update "+ ud.url) + # update sources there + logger.debug("Running %s", oscupdatecmd) + bb.fetch2.check_network_access(d, oscupdatecmd, ud.url) + runfetchcmd(oscupdatecmd, d, workdir=ud.moddir) + else: + oscfetchcmd = self._buildosccommand(ud, d, "fetch") + logger.info("Fetch " + ud.url) + # check out sources there + bb.utils.mkdirhier(ud.pkgdir) + logger.debug("Running %s", oscfetchcmd) + bb.fetch2.check_network_access(d, oscfetchcmd, ud.url) + runfetchcmd(oscfetchcmd, d, workdir=ud.pkgdir) + + # tar them up to a defined filename + runfetchcmd("tar -czf %s %s" % (ud.localpath, ud.module), d, + cleanup=[ud.localpath], workdir=os.path.join(ud.pkgdir + ud.path)) + + def supports_srcrev(self): + return False + + def generate_config(self, ud, d): + """ + Generate a .oscrc to be used for this run. + """ + + config_path = os.path.join(ud.oscdir, "oscrc") + if not os.path.exists(ud.oscdir): + bb.utils.mkdirhier(ud.oscdir) + + if (os.path.exists(config_path)): + os.remove(config_path) + + f = open(config_path, 'w') + proto = ud.parm.get('proto', 'https') + f.write("[general]\n") + f.write("apiurl = %s://%s\n" % (proto, ud.host)) + f.write("su-wrapper = su -c\n") + f.write("build-root = %s\n" % d.getVar('WORKDIR')) + f.write("urllist = %s\n" % d.getVar("OSCURLLIST")) + f.write("extra-pkgs = gzip\n") + f.write("\n") + f.write("[%s://%s]\n" % (proto, ud.host)) + f.write("user = %s\n" % ud.parm["user"]) + f.write("pass = %s\n" % ud.parm["pswd"]) + f.close() + + return config_path diff --git a/poky/bitbake/lib/bb/fetch2/perforce.py b/poky/bitbake/lib/bb/fetch2/perforce.py new file mode 100644 index 0000000..3b6fa4b --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/perforce.py @@ -0,0 +1,267 @@ +""" +BitBake 'Fetch' implementation for perforce + +Supported SRC_URI options are: + +- module + The top-level location to fetch while preserving the remote paths + + The value of module can point to either a directory or a file. The result, + in both cases, is that the fetcher will preserve all file paths starting + from the module path. That is, the top-level directory in the module value + will also be the top-level directory in P4DIR. + +- remotepath + If the value "keep" is given, the full depot location of each file is + preserved in P4DIR. This option overrides the effect of the module option. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2016 Kodak Alaris, Inc. +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import os +import bb +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import logger +from bb.fetch2 import runfetchcmd + +class PerforceProgressHandler (bb.progress.BasicProgressHandler): + """ + Implements basic progress information for perforce, based on the number of + files to be downloaded. + + The p4 print command will print one line per file, therefore it can be used + to "count" the number of files already completed and give an indication of + the progress. + """ + def __init__(self, d, num_files): + self._num_files = num_files + self._count = 0 + super(PerforceProgressHandler, self).__init__(d) + + # Send an initial progress event so the bar gets shown + self._fire_progress(-1) + + def write(self, string): + self._count = self._count + 1 + + percent = int(100.0 * float(self._count) / float(self._num_files)) + + # In case something goes wrong, we try to preserve our sanity + if percent > 100: + percent = 100 + + self.update(percent) + + super(PerforceProgressHandler, self).write(string) + +class Perforce(FetchMethod): + """ Class to fetch from perforce repositories """ + def supports(self, ud, d): + """ Check to see if a given url can be fetched with perforce. """ + return ud.type in ['p4'] + + def urldata_init(self, ud, d): + """ + Initialize perforce specific variables within url data. If P4CONFIG is + provided by the env, use it. If P4PORT is specified by the recipe, use + its values, which may override the settings in P4CONFIG. + """ + ud.basecmd = d.getVar("FETCHCMD_p4") or "/usr/bin/env p4" + + ud.dldir = d.getVar("P4DIR") or (d.getVar("DL_DIR") + "/p4") + + path = ud.url.split('://')[1] + path = path.split(';')[0] + delim = path.find('@'); + if delim != -1: + (ud.user, ud.pswd) = path.split('@')[0].split(':') + ud.path = path.split('@')[1] + else: + ud.path = path + + ud.usingp4config = False + p4port = d.getVar('P4PORT') + + if p4port: + logger.debug('Using recipe provided P4PORT: %s' % p4port) + ud.host = p4port + else: + logger.debug('Trying to use P4CONFIG to automatically set P4PORT...') + ud.usingp4config = True + p4cmd = '%s info | grep "Server address"' % ud.basecmd + bb.fetch2.check_network_access(d, p4cmd, ud.url) + ud.host = runfetchcmd(p4cmd, d, True) + ud.host = ud.host.split(': ')[1].strip() + logger.debug('Determined P4PORT to be: %s' % ud.host) + if not ud.host: + raise FetchError('Could not determine P4PORT from P4CONFIG') + + # Fetcher options + ud.module = ud.parm.get('module') + ud.keepremotepath = (ud.parm.get('remotepath', '') == 'keep') + + if ud.path.find('/...') >= 0: + ud.pathisdir = True + else: + ud.pathisdir = False + + # Avoid using the "/..." syntax in SRC_URI when a module value is given + if ud.pathisdir and ud.module: + raise FetchError('SRC_URI depot path cannot not end in /... when a module value is given') + + cleanedpath = ud.path.replace('/...', '').replace('/', '.') + cleanedhost = ud.host.replace(':', '.') + + cleanedmodule = "" + # Merge the path and module into the final depot location + if ud.module: + if ud.module.find('/') == 0: + raise FetchError('module cannot begin with /') + ud.path = os.path.join(ud.path, ud.module) + + # Append the module path to the local pkg name + cleanedmodule = ud.module.replace('/...', '').replace('/', '.') + cleanedpath += '--%s' % cleanedmodule + + ud.pkgdir = os.path.join(ud.dldir, cleanedhost, cleanedpath) + + ud.setup_revisions(d) + + ud.localfile = d.expand('%s_%s_%s_%s.tar.gz' % (cleanedhost, cleanedpath, cleanedmodule, ud.revision)) + + def _buildp4command(self, ud, d, command, depot_filename=None): + """ + Build a p4 commandline. Valid commands are "changes", "print", and + "files". depot_filename is the full path to the file in the depot + including the trailing '#rev' value. + """ + p4opt = "" + + if ud.user: + p4opt += ' -u "%s"' % (ud.user) + + if ud.pswd: + p4opt += ' -P "%s"' % (ud.pswd) + + if ud.host and not ud.usingp4config: + p4opt += ' -p %s' % (ud.host) + + if hasattr(ud, 'revision') and ud.revision: + pathnrev = '%s@%s' % (ud.path, ud.revision) + else: + pathnrev = '%s' % (ud.path) + + if depot_filename: + if ud.keepremotepath: + # preserve everything, remove the leading // + filename = depot_filename.lstrip('/') + elif ud.module: + # remove everything up to the module path + modulepath = ud.module.rstrip('/...') + filename = depot_filename[depot_filename.rfind(modulepath):] + elif ud.pathisdir: + # Remove leading (visible) path to obtain the filepath + filename = depot_filename[len(ud.path)-1:] + else: + # Remove everything, except the filename + filename = depot_filename[depot_filename.rfind('/'):] + + filename = filename[:filename.find('#')] # Remove trailing '#rev' + + if command == 'changes': + p4cmd = '%s%s changes -m 1 //%s' % (ud.basecmd, p4opt, pathnrev) + elif command == 'print': + if depot_filename is not None: + p4cmd = '%s%s print -o "p4/%s" "%s"' % (ud.basecmd, p4opt, filename, depot_filename) + else: + raise FetchError('No depot file name provided to p4 %s' % command, ud.url) + elif command == 'files': + p4cmd = '%s%s files //%s' % (ud.basecmd, p4opt, pathnrev) + else: + raise FetchError('Invalid p4 command %s' % command, ud.url) + + return p4cmd + + def _p4listfiles(self, ud, d): + """ + Return a list of the file names which are present in the depot using the + 'p4 files' command, including trailing '#rev' file revision indicator + """ + p4cmd = self._buildp4command(ud, d, 'files') + bb.fetch2.check_network_access(d, p4cmd, ud.url) + p4fileslist = runfetchcmd(p4cmd, d, True) + p4fileslist = [f.rstrip() for f in p4fileslist.splitlines()] + + if not p4fileslist: + raise FetchError('Unable to fetch listing of p4 files from %s@%s' % (ud.host, ud.path)) + + count = 0 + filelist = [] + + for filename in p4fileslist: + item = filename.split(' - ') + lastaction = item[1].split() + logger.debug('File: %s Last Action: %s' % (item[0], lastaction[0])) + if lastaction[0] == 'delete': + continue + filelist.append(item[0]) + + return filelist + + def download(self, ud, d): + """ Get the list of files, fetch each one """ + filelist = self._p4listfiles(ud, d) + if not filelist: + raise FetchError('No files found in depot %s@%s' % (ud.host, ud.path)) + + bb.utils.remove(ud.pkgdir, True) + bb.utils.mkdirhier(ud.pkgdir) + + progresshandler = PerforceProgressHandler(d, len(filelist)) + + for afile in filelist: + p4fetchcmd = self._buildp4command(ud, d, 'print', afile) + bb.fetch2.check_network_access(d, p4fetchcmd, ud.url) + runfetchcmd(p4fetchcmd, d, workdir=ud.pkgdir, log=progresshandler) + + runfetchcmd('tar -czf %s p4' % (ud.localpath), d, cleanup=[ud.localpath], workdir=ud.pkgdir) + + def clean(self, ud, d): + """ Cleanup p4 specific files and dirs""" + bb.utils.remove(ud.localpath) + bb.utils.remove(ud.pkgdir, True) + + def supports_srcrev(self): + return True + + def _revision_key(self, ud, d, name): + """ Return a unique key for the url """ + return 'p4:%s' % ud.pkgdir + + def _latest_revision(self, ud, d, name): + """ Return the latest upstream scm revision number """ + p4cmd = self._buildp4command(ud, d, "changes") + bb.fetch2.check_network_access(d, p4cmd, ud.url) + tip = runfetchcmd(p4cmd, d, True) + + if not tip: + raise FetchError('Could not determine the latest perforce changelist') + + tipcset = tip.split(' ')[1] + logger.debug('p4 tip found to be changelist %s' % tipcset) + return tipcset + + def sortable_revision(self, ud, d, name): + """ Return a sortable revision number """ + return False, self._build_revision(ud, d) + + def _build_revision(self, ud, d): + return ud.revision + diff --git a/poky/bitbake/lib/bb/fetch2/repo.py b/poky/bitbake/lib/bb/fetch2/repo.py new file mode 100644 index 0000000..fa4cb81 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/repo.py @@ -0,0 +1,87 @@ +""" +BitBake "Fetch" repo (git) implementation + +""" + +# Copyright (C) 2009 Tom Rini +# +# Based on git.py which is: +# Copyright (C) 2005 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import bb +from bb.fetch2 import FetchMethod +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger + +class Repo(FetchMethod): + """Class to fetch a module or modules from repo (git) repositories""" + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with repo. + """ + return ud.type in ["repo"] + + def urldata_init(self, ud, d): + """ + We don"t care about the git rev of the manifests repository, but + we do care about the manifest to use. The default is "default". + We also care about the branch or tag to be used. The default is + "master". + """ + + ud.basecmd = d.getVar("FETCHCMD_repo") or "/usr/bin/env repo" + + ud.proto = ud.parm.get('protocol', 'git') + ud.branch = ud.parm.get('branch', 'master') + ud.manifest = ud.parm.get('manifest', 'default.xml') + if not ud.manifest.endswith('.xml'): + ud.manifest += '.xml' + + ud.localfile = d.expand("repo_%s%s_%s_%s.tar.gz" % (ud.host, ud.path.replace("/", "."), ud.manifest, ud.branch)) + + def download(self, ud, d): + """Fetch url""" + + if os.access(os.path.join(d.getVar("DL_DIR"), ud.localfile), os.R_OK): + logger.debug("%s already exists (or was stashed). Skipping repo init / sync.", ud.localpath) + return + + repodir = d.getVar("REPODIR") or (d.getVar("DL_DIR") + "/repo") + gitsrcname = "%s%s" % (ud.host, ud.path.replace("/", ".")) + codir = os.path.join(repodir, gitsrcname, ud.manifest) + + if ud.user: + username = ud.user + "@" + else: + username = "" + + repodir = os.path.join(codir, "repo") + bb.utils.mkdirhier(repodir) + if not os.path.exists(os.path.join(repodir, ".repo")): + bb.fetch2.check_network_access(d, "%s init -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.proto, username, ud.host, ud.path), ud.url) + runfetchcmd("%s init -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.proto, username, ud.host, ud.path), d, workdir=repodir) + + bb.fetch2.check_network_access(d, "%s sync %s" % (ud.basecmd, ud.url), ud.url) + runfetchcmd("%s sync" % ud.basecmd, d, workdir=repodir) + + scmdata = ud.parm.get("scmdata", "") + if scmdata == "keep": + tar_flags = "" + else: + tar_flags = "--exclude='.repo' --exclude='.git'" + + # Create a cache + runfetchcmd("tar %s -czf %s %s" % (tar_flags, ud.localpath, os.path.join(".", "*") ), d, workdir=codir) + + def supports_srcrev(self): + return False + + def _build_revision(self, ud, d): + return ud.manifest + + def _want_sortable_revision(self, ud, d): + return False diff --git a/poky/bitbake/lib/bb/fetch2/s3.py b/poky/bitbake/lib/bb/fetch2/s3.py new file mode 100644 index 0000000..6b8ffd5 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/s3.py @@ -0,0 +1,124 @@ +""" +BitBake 'Fetch' implementation for Amazon AWS S3. + +Class for fetching files from Amazon S3 using the AWS Command Line Interface. +The aws tool must be correctly installed and configured prior to use. + +""" + +# Copyright (C) 2017, Andre McCurdy +# +# Based in part on bb.fetch2.wget: +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import os +import bb +import urllib.request, urllib.parse, urllib.error +import re +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import runfetchcmd + +def convertToBytes(value, unit): + value = float(value) + if (unit == "KiB"): + value = value*1024.0; + elif (unit == "MiB"): + value = value*1024.0*1024.0; + elif (unit == "GiB"): + value = value*1024.0*1024.0*1024.0; + return value + +class S3ProgressHandler(bb.progress.LineFilterProgressHandler): + """ + Extract progress information from s3 cp output, e.g.: + Completed 5.1 KiB/8.8 GiB (12.0 MiB/s) with 1 file(s) remaining + """ + def __init__(self, d): + super(S3ProgressHandler, self).__init__(d) + # Send an initial progress event so the bar gets shown + self._fire_progress(0) + + def writeline(self, line): + percs = re.findall(r'^Completed (\d+.{0,1}\d*) (\w+)\/(\d+.{0,1}\d*) (\w+) (\(.+\)) with\s+', line) + if percs: + completed = (percs[-1][0]) + completedUnit = (percs[-1][1]) + total = (percs[-1][2]) + totalUnit = (percs[-1][3]) + completed = convertToBytes(completed, completedUnit) + total = convertToBytes(total, totalUnit) + progress = (completed/total)*100.0 + rate = percs[-1][4] + self.update(progress, rate) + return False + return True + + +class S3(FetchMethod): + """Class to fetch urls via 'aws s3'""" + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with s3. + """ + return ud.type in ['s3'] + + def recommends_checksum(self, urldata): + return True + + def urldata_init(self, ud, d): + if 'downloadfilename' in ud.parm: + ud.basename = ud.parm['downloadfilename'] + else: + ud.basename = os.path.basename(ud.path) + + ud.localfile = d.expand(urllib.parse.unquote(ud.basename)) + + ud.basecmd = d.getVar("FETCHCMD_s3") or "/usr/bin/env aws s3" + + def download(self, ud, d): + """ + Fetch urls + Assumes localpath was called first + """ + + cmd = '%s cp s3://%s%s %s' % (ud.basecmd, ud.host, ud.path, ud.localpath) + bb.fetch2.check_network_access(d, cmd, ud.url) + + progresshandler = S3ProgressHandler(d) + runfetchcmd(cmd, d, False, log=progresshandler) + + # Additional sanity checks copied from the wget class (although there + # are no known issues which mean these are required, treat the aws cli + # tool with a little healthy suspicion). + + if not os.path.exists(ud.localpath): + raise FetchError("The aws cp command returned success for s3://%s%s but %s doesn't exist?!" % (ud.host, ud.path, ud.localpath)) + + if os.path.getsize(ud.localpath) == 0: + os.remove(ud.localpath) + raise FetchError("The aws cp command for s3://%s%s resulted in a zero size file?! Deleting and failing since this isn't right." % (ud.host, ud.path)) + + return True + + def checkstatus(self, fetch, ud, d): + """ + Check the status of a URL + """ + + cmd = '%s ls s3://%s%s' % (ud.basecmd, ud.host, ud.path) + bb.fetch2.check_network_access(d, cmd, ud.url) + output = runfetchcmd(cmd, d) + + # "aws s3 ls s3://mybucket/foo" will exit with success even if the file + # is not found, so check output of the command to confirm success. + + if not output: + raise FetchError("The aws ls command for s3://%s%s gave empty output" % (ud.host, ud.path)) + + return True diff --git a/poky/bitbake/lib/bb/fetch2/sftp.py b/poky/bitbake/lib/bb/fetch2/sftp.py new file mode 100644 index 0000000..f87f292 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/sftp.py @@ -0,0 +1,112 @@ +""" +BitBake SFTP Fetch implementation + +Class for fetching files via SFTP. It tries to adhere to the (now +expired) IETF Internet Draft for "Uniform Resource Identifier (URI) +Scheme for Secure File Transfer Protocol (SFTP) and Secure Shell +(SSH)" (SECSH URI). + +It uses SFTP (as to adhere to the SECSH URI specification). It only +supports key based authentication, not password. This class, unlike +the SSH fetcher, does not support fetching a directory tree from the +remote. + + http://tools.ietf.org/html/draft-ietf-secsh-scp-sftp-ssh-uri-04 + https://www.iana.org/assignments/uri-schemes/prov/sftp + https://tools.ietf.org/html/draft-ietf-secsh-filexfer-13 + +Please note that '/' is used as host path seperator, and not ":" +as you may be used to from the scp/sftp commands. You can use a +~ (tilde) to specify a path relative to your home directory. +(The /~user/ syntax, for specyfing a path relative to another +user's home directory is not supported.) Note that the tilde must +still follow the host path seperator ("/"). See exampels below. + +Example SRC_URIs: + +SRC_URI = "sftp://host.example.com/dir/path.file.txt" + +A path relative to your home directory. + +SRC_URI = "sftp://host.example.com/~/dir/path.file.txt" + +You can also specify a username (specyfing password in the +URI is not supported, use SSH keys to authenticate): + +SRC_URI = "sftp://user@host.example.com/dir/path.file.txt" + +""" + +# Copyright (C) 2013, Olof Johansson +# +# Based in part on bb.fetch2.wget: +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import os +import bb +import urllib.request, urllib.parse, urllib.error +from bb.fetch2 import URI +from bb.fetch2 import FetchMethod +from bb.fetch2 import runfetchcmd + +class SFTP(FetchMethod): + """Class to fetch urls via 'sftp'""" + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with sftp. + """ + return ud.type in ['sftp'] + + def recommends_checksum(self, urldata): + return True + + def urldata_init(self, ud, d): + if 'protocol' in ud.parm and ud.parm['protocol'] == 'git': + raise bb.fetch2.ParameterError( + "Invalid protocol - if you wish to fetch from a " + + "git repository using ssh, you need to use the " + + "git:// prefix with protocol=ssh", ud.url) + + if 'downloadfilename' in ud.parm: + ud.basename = ud.parm['downloadfilename'] + else: + ud.basename = os.path.basename(ud.path) + + ud.localfile = d.expand(urllib.parse.unquote(ud.basename)) + + def download(self, ud, d): + """Fetch urls""" + + urlo = URI(ud.url) + basecmd = 'sftp -oBatchMode=yes' + port = '' + if urlo.port: + port = '-P %d' % urlo.port + urlo.port = None + + dldir = d.getVar('DL_DIR') + lpath = os.path.join(dldir, ud.localfile) + + user = '' + if urlo.userinfo: + user = urlo.userinfo + '@' + + path = urlo.path + + # Supoprt URIs relative to the user's home directory, with + # the tilde syntax. (E.g. ). + if path[:3] == '/~/': + path = path[3:] + + remote = '%s%s:%s' % (user, urlo.hostname, path) + + cmd = '%s %s %s %s' % (basecmd, port, remote, lpath) + + bb.fetch2.check_network_access(d, cmd, ud.url) + runfetchcmd(cmd, d) + return True diff --git a/poky/bitbake/lib/bb/fetch2/ssh.py b/poky/bitbake/lib/bb/fetch2/ssh.py new file mode 100644 index 0000000..8d082b3 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/ssh.py @@ -0,0 +1,157 @@ +''' +BitBake 'Fetch' implementations + +This implementation is for Secure Shell (SSH), and attempts to comply with the +IETF secsh internet draft: + http://tools.ietf.org/wg/secsh/draft-ietf-secsh-scp-sftp-ssh-uri/ + + Currently does not support the sftp parameters, as this uses scp + Also does not support the 'fingerprint' connection parameter. + + Please note that '/' is used as host, path separator not ':' as you may + be used to, also '~' can be used to specify user HOME, but again after '/' + + Example SRC_URI: + SRC_URI = "ssh://user@host.example.com/dir/path/file.txt" + SRC_URI = "ssh://user@host.example.com/~/file.txt" +''' + +# Copyright (C) 2006 OpenedHand Ltd. +# +# +# Based in part on svk.py: +# Copyright (C) 2006 Holger Hans Peter Freyther +# Based on svn.py: +# Copyright (C) 2003, 2004 Chris Larson +# Based on functions from the base bb module: +# Copyright 2003 Holger Schurig +# +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import re, os +from bb.fetch2 import check_network_access, FetchMethod, ParameterError, runfetchcmd +import urllib + + +__pattern__ = re.compile(r''' + \s* # Skip leading whitespace + ssh:// # scheme + ( # Optional username/password block + (?P\S+) # username + (:(?P\S+))? # colon followed by the password (optional) + (?P(;[^;]+)*)? # connection parameters block (optional) + @ + )? + (?P\S+?) # non-greedy match of the host + (:(?P[0-9]+))? # colon followed by the port (optional) + / + (?P[^;]+) # path on the remote system, may be absolute or relative, + # and may include the use of '~' to reference the remote home + # directory + (?P(;[^;]+)*)? # parameters block (optional) + $ +''', re.VERBOSE) + +class SSH(FetchMethod): + '''Class to fetch a module or modules via Secure Shell''' + + def supports(self, urldata, d): + return __pattern__.match(urldata.url) is not None + + def supports_checksum(self, urldata): + return False + + def urldata_init(self, urldata, d): + if 'protocol' in urldata.parm and urldata.parm['protocol'] == 'git': + raise ParameterError( + "Invalid protocol - if you wish to fetch from a git " + + "repository using ssh, you need to use " + + "git:// prefix with protocol=ssh", urldata.url) + m = __pattern__.match(urldata.url) + path = m.group('path') + path = urllib.parse.unquote(path) + host = m.group('host') + urldata.localpath = os.path.join(d.getVar('DL_DIR'), + os.path.basename(os.path.normpath(path))) + + def download(self, urldata, d): + dldir = d.getVar('DL_DIR') + + m = __pattern__.match(urldata.url) + path = m.group('path') + host = m.group('host') + port = m.group('port') + user = m.group('user') + password = m.group('pass') + + if port: + portarg = '-P %s' % port + else: + portarg = '' + + if user: + fr = user + if password: + fr += ':%s' % password + fr += '@%s' % host + else: + fr = host + + if path[0] != '~': + path = '/%s' % path + path = urllib.parse.unquote(path) + + fr += ':%s' % path + + cmd = 'scp -B -r %s %s %s/' % ( + portarg, + fr, + dldir + ) + + check_network_access(d, cmd, urldata.url) + + runfetchcmd(cmd, d) + + def checkstatus(self, fetch, urldata, d): + """ + Check the status of the url + """ + m = __pattern__.match(urldata.url) + path = m.group('path') + host = m.group('host') + port = m.group('port') + user = m.group('user') + password = m.group('pass') + + if port: + portarg = '-P %s' % port + else: + portarg = '' + + if user: + fr = user + if password: + fr += ':%s' % password + fr += '@%s' % host + else: + fr = host + + if path[0] != '~': + path = '/%s' % path + path = urllib.parse.unquote(path) + + cmd = 'ssh -o BatchMode=true %s %s [ -f %s ]' % ( + portarg, + fr, + path + ) + + check_network_access(d, cmd, urldata.url) + + if runfetchcmd(cmd, d): + return True + + return False diff --git a/poky/bitbake/lib/bb/fetch2/svn.py b/poky/bitbake/lib/bb/fetch2/svn.py new file mode 100644 index 0000000..d40e4d2 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/svn.py @@ -0,0 +1,212 @@ +""" +BitBake 'Fetch' implementation for svn. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2004 Marcin Juszkiewicz +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import os +import bb +import re +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import MissingParameterError +from bb.fetch2 import runfetchcmd +from bb.fetch2 import logger + +class Svn(FetchMethod): + """Class to fetch a module or modules from svn repositories""" + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with svn. + """ + return ud.type in ['svn'] + + def urldata_init(self, ud, d): + """ + init svn specific variable within url data + """ + if not "module" in ud.parm: + raise MissingParameterError('module', ud.url) + + ud.basecmd = d.getVar("FETCHCMD_svn") or "/usr/bin/env svn --non-interactive --trust-server-cert" + + ud.module = ud.parm["module"] + + if not "path_spec" in ud.parm: + ud.path_spec = ud.module + else: + ud.path_spec = ud.parm["path_spec"] + + # Create paths to svn checkouts + svndir = d.getVar("SVNDIR") or (d.getVar("DL_DIR") + "/svn") + relpath = self._strip_leading_slashes(ud.path) + ud.pkgdir = os.path.join(svndir, ud.host, relpath) + ud.moddir = os.path.join(ud.pkgdir, ud.path_spec) + # Protects the repository from concurrent updates, e.g. from two + # recipes fetching different revisions at the same time + ud.svnlock = os.path.join(ud.pkgdir, "svn.lock") + + ud.setup_revisions(d) + + if 'rev' in ud.parm: + ud.revision = ud.parm['rev'] + + # Whether to use the @REV peg-revision syntax in the svn command or not + ud.pegrevision = True + if 'nopegrevision' in ud.parm: + ud.pegrevision = False + + ud.localfile = d.expand('%s_%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision, ["0", "1"][ud.pegrevision])) + + def _buildsvncommand(self, ud, d, command): + """ + Build up an svn commandline based on ud + command is "fetch", "update", "info" + """ + + proto = ud.parm.get('protocol', 'svn') + + svn_ssh = None + if proto == "svn+ssh" and "ssh" in ud.parm: + svn_ssh = ud.parm["ssh"] + + svnroot = ud.host + ud.path + + options = [] + + options.append("--no-auth-cache") + + if ud.user: + options.append("--username %s" % ud.user) + + if ud.pswd: + options.append("--password %s" % ud.pswd) + + if command == "info": + svncmd = "%s info %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) + elif command == "log1": + svncmd = "%s log --limit 1 --quiet %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) + else: + suffix = "" + + # externals may be either 'allowed' or 'nowarn', but not both. Allowed + # will not issue a warning, but will log to the debug buffer what has likely + # been downloaded by SVN. + if not ("externals" in ud.parm and ud.parm["externals"] == "allowed"): + options.append("--ignore-externals") + + if ud.revision: + options.append("-r %s" % ud.revision) + if ud.pegrevision: + suffix = "@%s" % (ud.revision) + + if command == "fetch": + transportuser = ud.parm.get("transportuser", "") + svncmd = "%s co %s %s://%s%s/%s%s %s" % (ud.basecmd, " ".join(options), proto, transportuser, svnroot, ud.module, suffix, ud.path_spec) + elif command == "update": + svncmd = "%s update %s" % (ud.basecmd, " ".join(options)) + else: + raise FetchError("Invalid svn command %s" % command, ud.url) + + if svn_ssh: + svncmd = "SVN_SSH=\"%s\" %s" % (svn_ssh, svncmd) + + return svncmd + + def download(self, ud, d): + """Fetch url""" + + logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'") + + lf = bb.utils.lockfile(ud.svnlock) + + try: + if os.access(os.path.join(ud.moddir, '.svn'), os.R_OK): + svncmd = self._buildsvncommand(ud, d, "update") + logger.info("Update " + ud.url) + # We need to attempt to run svn upgrade first in case its an older working format + try: + runfetchcmd(ud.basecmd + " upgrade", d, workdir=ud.moddir) + except FetchError: + pass + logger.debug("Running %s", svncmd) + bb.fetch2.check_network_access(d, svncmd, ud.url) + runfetchcmd(svncmd, d, workdir=ud.moddir) + else: + svncmd = self._buildsvncommand(ud, d, "fetch") + logger.info("Fetch " + ud.url) + # check out sources there + bb.utils.mkdirhier(ud.pkgdir) + logger.debug("Running %s", svncmd) + bb.fetch2.check_network_access(d, svncmd, ud.url) + runfetchcmd(svncmd, d, workdir=ud.pkgdir) + + if not ("externals" in ud.parm and ud.parm["externals"] == "nowarn"): + # Warn the user if this had externals (won't catch them all) + output = runfetchcmd("svn propget svn:externals || true", d, workdir=ud.moddir) + if output: + if "--ignore-externals" in svncmd.split(): + bb.warn("%s contains svn:externals." % ud.url) + bb.warn("These should be added to the recipe SRC_URI as necessary.") + bb.warn("svn fetch has ignored externals:\n%s" % output) + bb.warn("To disable this warning add ';externals=nowarn' to the url.") + else: + bb.debug(1, "svn repository has externals:\n%s" % output) + + scmdata = ud.parm.get("scmdata", "") + if scmdata == "keep": + tar_flags = "" + else: + tar_flags = "--exclude='.svn'" + + # tar them up to a defined filename + runfetchcmd("tar %s -czf %s %s" % (tar_flags, ud.localpath, ud.path_spec), d, + cleanup=[ud.localpath], workdir=ud.pkgdir) + finally: + bb.utils.unlockfile(lf) + + def clean(self, ud, d): + """ Clean SVN specific files and dirs """ + + bb.utils.remove(ud.localpath) + bb.utils.remove(ud.moddir, True) + + + def supports_srcrev(self): + return True + + def _revision_key(self, ud, d, name): + """ + Return a unique key for the url + """ + return "svn:" + ud.moddir + + def _latest_revision(self, ud, d, name): + """ + Return the latest upstream revision number + """ + bb.fetch2.check_network_access(d, self._buildsvncommand(ud, d, "log1"), ud.url) + + output = runfetchcmd("LANG=C LC_ALL=C " + self._buildsvncommand(ud, d, "log1"), d, True) + + # skip the first line, as per output of svn log + # then we expect the revision on the 2nd line + revision = re.search('^r([0-9]*)', output.splitlines()[1]).group(1) + + return revision + + def sortable_revision(self, ud, d, name): + """ + Return a sortable revision number which in our case is the revision number + """ + + return False, self._build_revision(ud, d) + + def _build_revision(self, ud, d): + return ud.revision diff --git a/poky/bitbake/lib/bb/fetch2/wget.py b/poky/bitbake/lib/bb/fetch2/wget.py new file mode 100644 index 0000000..b3a3de5 --- /dev/null +++ b/poky/bitbake/lib/bb/fetch2/wget.py @@ -0,0 +1,654 @@ +""" +BitBake 'Fetch' implementations + +Classes for obtaining upstream sources for the +BitBake build tools. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig + +import shlex +import re +import tempfile +import os +import errno +import bb +import bb.progress +import socket +import http.client +import urllib.request, urllib.parse, urllib.error +from bb.fetch2 import FetchMethod +from bb.fetch2 import FetchError +from bb.fetch2 import logger +from bb.fetch2 import runfetchcmd +from bb.utils import export_proxies +from bs4 import BeautifulSoup +from bs4 import SoupStrainer + +class WgetProgressHandler(bb.progress.LineFilterProgressHandler): + """ + Extract progress information from wget output. + Note: relies on --progress=dot (with -v or without -q/-nv) being + specified on the wget command line. + """ + def __init__(self, d): + super(WgetProgressHandler, self).__init__(d) + # Send an initial progress event so the bar gets shown + self._fire_progress(0) + + def writeline(self, line): + percs = re.findall(r'(\d+)%\s+([\d.]+[A-Z])', line) + if percs: + progress = int(percs[-1][0]) + rate = percs[-1][1] + '/s' + self.update(progress, rate) + return False + return True + + +class Wget(FetchMethod): + """Class to fetch urls via 'wget'""" + + # CDNs like CloudFlare may do a 'browser integrity test' which can fail + # with the standard wget/urllib User-Agent, so pretend to be a modern + # browser. + user_agent = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0" + + def check_certs(self, d): + """ + Should certificates be checked? + """ + return (d.getVar("BB_CHECK_SSL_CERTS") or "1") != "0" + + def supports(self, ud, d): + """ + Check to see if a given url can be fetched with wget. + """ + return ud.type in ['http', 'https', 'ftp', 'ftps'] + + def recommends_checksum(self, urldata): + return True + + def urldata_init(self, ud, d): + if 'protocol' in ud.parm: + if ud.parm['protocol'] == 'git': + raise bb.fetch2.ParameterError("Invalid protocol - if you wish to fetch from a git repository using http, you need to instead use the git:// prefix with protocol=http", ud.url) + + if 'downloadfilename' in ud.parm: + ud.basename = ud.parm['downloadfilename'] + else: + ud.basename = os.path.basename(ud.path) + + ud.localfile = d.expand(urllib.parse.unquote(ud.basename)) + if not ud.localfile: + ud.localfile = d.expand(urllib.parse.unquote(ud.host + ud.path).replace("/", ".")) + + self.basecmd = d.getVar("FETCHCMD_wget") or "/usr/bin/env wget -t 2 -T 30 --passive-ftp" + + if not self.check_certs(d): + self.basecmd += " --no-check-certificate" + + def _runwget(self, ud, d, command, quiet, workdir=None): + + progresshandler = WgetProgressHandler(d) + + logger.debug2("Fetching %s using command '%s'" % (ud.url, command)) + bb.fetch2.check_network_access(d, command, ud.url) + runfetchcmd(command + ' --progress=dot -v', d, quiet, log=progresshandler, workdir=workdir) + + def download(self, ud, d): + """Fetch urls""" + + fetchcmd = self.basecmd + + if 'downloadfilename' in ud.parm: + localpath = os.path.join(d.getVar("DL_DIR"), ud.localfile) + bb.utils.mkdirhier(os.path.dirname(localpath)) + fetchcmd += " -O %s" % shlex.quote(localpath) + + if ud.user and ud.pswd: + fetchcmd += " --auth-no-challenge" + if ud.parm.get("redirectauth", "1") == "1": + # An undocumented feature of wget is that if the + # username/password are specified on the URI, wget will only + # send the Authorization header to the first host and not to + # any hosts that it is redirected to. With the increasing + # usage of temporary AWS URLs, this difference now matters as + # AWS will reject any request that has authentication both in + # the query parameters (from the redirect) and in the + # Authorization header. + fetchcmd += " --user=%s --password=%s" % (ud.user, ud.pswd) + + uri = ud.url.split(";")[0] + if os.path.exists(ud.localpath): + # file exists, but we didnt complete it.. trying again.. + fetchcmd += d.expand(" -c -P ${DL_DIR} '%s'" % uri) + else: + fetchcmd += d.expand(" -P ${DL_DIR} '%s'" % uri) + + self._runwget(ud, d, fetchcmd, False) + + # Sanity check since wget can pretend it succeed when it didn't + # Also, this used to happen if sourceforge sent us to the mirror page + if not os.path.exists(ud.localpath): + raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, ud.localpath), uri) + + if os.path.getsize(ud.localpath) == 0: + os.remove(ud.localpath) + raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this isn't right." % (uri), uri) + + return True + + def checkstatus(self, fetch, ud, d, try_again=True): + class HTTPConnectionCache(http.client.HTTPConnection): + if fetch.connection_cache: + def connect(self): + """Connect to the host and port specified in __init__.""" + + sock = fetch.connection_cache.get_connection(self.host, self.port) + if sock: + self.sock = sock + else: + self.sock = socket.create_connection((self.host, self.port), + self.timeout, self.source_address) + fetch.connection_cache.add_connection(self.host, self.port, self.sock) + + if self._tunnel_host: + self._tunnel() + + class CacheHTTPHandler(urllib.request.HTTPHandler): + def http_open(self, req): + return self.do_open(HTTPConnectionCache, req) + + def do_open(self, http_class, req): + """Return an addinfourl object for the request, using http_class. + + http_class must implement the HTTPConnection API from httplib. + The addinfourl return value is a file-like object. It also + has methods and attributes including: + - info(): return a mimetools.Message object for the headers + - geturl(): return the original request URL + - code: HTTP status code + """ + host = req.host + if not host: + raise urllib.error.URLError('no host given') + + h = http_class(host, timeout=req.timeout) # will parse host:port + h.set_debuglevel(self._debuglevel) + + headers = dict(req.unredirected_hdrs) + headers.update(dict((k, v) for k, v in list(req.headers.items()) + if k not in headers)) + + # We want to make an HTTP/1.1 request, but the addinfourl + # class isn't prepared to deal with a persistent connection. + # It will try to read all remaining data from the socket, + # which will block while the server waits for the next request. + # So make sure the connection gets closed after the (only) + # request. + + # Don't close connection when connection_cache is enabled, + if fetch.connection_cache is None: + headers["Connection"] = "close" + else: + headers["Connection"] = "Keep-Alive" # Works for HTTP/1.0 + + headers = dict( + (name.title(), val) for name, val in list(headers.items())) + + if req._tunnel_host: + tunnel_headers = {} + proxy_auth_hdr = "Proxy-Authorization" + if proxy_auth_hdr in headers: + tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr] + # Proxy-Authorization should not be sent to origin + # server. + del headers[proxy_auth_hdr] + h.set_tunnel(req._tunnel_host, headers=tunnel_headers) + + try: + h.request(req.get_method(), req.selector, req.data, headers) + except socket.error as err: # XXX what error? + # Don't close connection when cache is enabled. + # Instead, try to detect connections that are no longer + # usable (for example, closed unexpectedly) and remove + # them from the cache. + if fetch.connection_cache is None: + h.close() + elif isinstance(err, OSError) and err.errno == errno.EBADF: + # This happens when the server closes the connection despite the Keep-Alive. + # Apparently urllib then uses the file descriptor, expecting it to be + # connected, when in reality the connection is already gone. + # We let the request fail and expect it to be + # tried once more ("try_again" in check_status()), + # with the dead connection removed from the cache. + # If it still fails, we give up, which can happen for bad + # HTTP proxy settings. + fetch.connection_cache.remove_connection(h.host, h.port) + raise urllib.error.URLError(err) + else: + r = h.getresponse() + + # Pick apart the HTTPResponse object to get the addinfourl + # object initialized properly. + + # Wrap the HTTPResponse object in socket's file object adapter + # for Windows. That adapter calls recv(), so delegate recv() + # to read(). This weird wrapping allows the returned object to + # have readline() and readlines() methods. + + # XXX It might be better to extract the read buffering code + # out of socket._fileobject() and into a base class. + r.recv = r.read + + # no data, just have to read + r.read() + class fp_dummy(object): + def read(self): + return "" + def readline(self): + return "" + def close(self): + pass + closed = False + + resp = urllib.response.addinfourl(fp_dummy(), r.msg, req.get_full_url()) + resp.code = r.status + resp.msg = r.reason + + # Close connection when server request it. + if fetch.connection_cache is not None: + if 'Connection' in r.msg and r.msg['Connection'] == 'close': + fetch.connection_cache.remove_connection(h.host, h.port) + + return resp + + class HTTPMethodFallback(urllib.request.BaseHandler): + """ + Fallback to GET if HEAD is not allowed (405 HTTP error) + """ + def http_error_405(self, req, fp, code, msg, headers): + fp.read() + fp.close() + + if req.get_method() != 'GET': + newheaders = dict((k, v) for k, v in list(req.headers.items()) + if k.lower() not in ("content-length", "content-type")) + return self.parent.open(urllib.request.Request(req.get_full_url(), + headers=newheaders, + origin_req_host=req.origin_req_host, + unverifiable=True)) + + raise urllib.request.HTTPError(req, code, msg, headers, None) + + # Some servers (e.g. GitHub archives, hosted on Amazon S3) return 403 + # Forbidden when they actually mean 405 Method Not Allowed. + http_error_403 = http_error_405 + + + class FixedHTTPRedirectHandler(urllib.request.HTTPRedirectHandler): + """ + urllib2.HTTPRedirectHandler resets the method to GET on redirect, + when we want to follow redirects using the original method. + """ + def redirect_request(self, req, fp, code, msg, headers, newurl): + newreq = urllib.request.HTTPRedirectHandler.redirect_request(self, req, fp, code, msg, headers, newurl) + newreq.get_method = req.get_method + return newreq + + # We need to update the environment here as both the proxy and HTTPS + # handlers need variables set. The proxy needs http_proxy and friends to + # be set, and HTTPSHandler ends up calling into openssl to load the + # certificates. In buildtools configurations this will be looking at the + # wrong place for certificates by default: we set SSL_CERT_FILE to the + # right location in the buildtools environment script but as BitBake + # prunes prunes the environment this is lost. When binaries are executed + # runfetchcmd ensures these values are in the environment, but this is + # pure Python so we need to update the environment. + # + # Avoid tramping the environment too much by using bb.utils.environment + # to scope the changes to the build_opener request, which is when the + # environment lookups happen. + newenv = bb.fetch2.get_fetcher_environment(d) + + with bb.utils.environment(**newenv): + import ssl + + if self.check_certs(d): + context = ssl.create_default_context() + else: + context = ssl._create_unverified_context() + + handlers = [FixedHTTPRedirectHandler, + HTTPMethodFallback, + urllib.request.ProxyHandler(), + CacheHTTPHandler(), + urllib.request.HTTPSHandler(context=context)] + opener = urllib.request.build_opener(*handlers) + + try: + uri = ud.url.split(";")[0] + r = urllib.request.Request(uri) + r.get_method = lambda: "HEAD" + # Some servers (FusionForge, as used on Alioth) require that the + # optional Accept header is set. + r.add_header("Accept", "*/*") + r.add_header("User-Agent", self.user_agent) + def add_basic_auth(login_str, request): + '''Adds Basic auth to http request, pass in login:password as string''' + import base64 + encodeuser = base64.b64encode(login_str.encode('utf-8')).decode("utf-8") + authheader = "Basic %s" % encodeuser + r.add_header("Authorization", authheader) + + if ud.user and ud.pswd: + add_basic_auth(ud.user + ':' + ud.pswd, r) + + try: + import netrc + n = netrc.netrc() + login, unused, password = n.authenticators(urllib.parse.urlparse(uri).hostname) + add_basic_auth("%s:%s" % (login, password), r) + except (TypeError, ImportError, IOError, netrc.NetrcParseError): + pass + + with opener.open(r, timeout=30) as response: + pass + except urllib.error.URLError as e: + if try_again: + logger.debug2("checkstatus: trying again") + return self.checkstatus(fetch, ud, d, False) + else: + # debug for now to avoid spamming the logs in e.g. remote sstate searches + logger.debug2("checkstatus() urlopen failed: %s" % e) + return False + except ConnectionResetError as e: + if try_again: + logger.debug2("checkstatus: trying again") + return self.checkstatus(fetch, ud, d, False) + else: + # debug for now to avoid spamming the logs in e.g. remote sstate searches + logger.debug2("checkstatus() urlopen failed: %s" % e) + return False + + return True + + def _parse_path(self, regex, s): + """ + Find and group name, version and archive type in the given string s + """ + + m = regex.search(s) + if m: + pname = '' + pver = '' + ptype = '' + + mdict = m.groupdict() + if 'name' in mdict.keys(): + pname = mdict['name'] + if 'pver' in mdict.keys(): + pver = mdict['pver'] + if 'type' in mdict.keys(): + ptype = mdict['type'] + + bb.debug(3, "_parse_path: %s, %s, %s" % (pname, pver, ptype)) + + return (pname, pver, ptype) + + return None + + def _modelate_version(self, version): + if version[0] in ['.', '-']: + if version[1].isdigit(): + version = version[1] + version[0] + version[2:len(version)] + else: + version = version[1:len(version)] + + version = re.sub('-', '.', version) + version = re.sub('_', '.', version) + version = re.sub('(rc)+', '.1000.', version) + version = re.sub('(beta)+', '.100.', version) + version = re.sub('(alpha)+', '.10.', version) + if version[0] == 'v': + version = version[1:len(version)] + return version + + def _vercmp(self, old, new): + """ + Check whether 'new' is newer than 'old' version. We use existing vercmp() for the + purpose. PE is cleared in comparison as it's not for build, and PR is cleared too + for simplicity as it's somehow difficult to get from various upstream format + """ + + (oldpn, oldpv, oldsuffix) = old + (newpn, newpv, newsuffix) = new + + # Check for a new suffix type that we have never heard of before + if newsuffix: + m = self.suffix_regex_comp.search(newsuffix) + if not m: + bb.warn("%s has a possible unknown suffix: %s" % (newpn, newsuffix)) + return False + + # Not our package so ignore it + if oldpn != newpn: + return False + + oldpv = self._modelate_version(oldpv) + newpv = self._modelate_version(newpv) + + return bb.utils.vercmp(("0", oldpv, ""), ("0", newpv, "")) + + def _fetch_index(self, uri, ud, d): + """ + Run fetch checkstatus to get directory information + """ + f = tempfile.NamedTemporaryFile() + with tempfile.TemporaryDirectory(prefix="wget-index-") as workdir, tempfile.NamedTemporaryFile(dir=workdir, prefix="wget-listing-") as f: + fetchcmd = self.basecmd + fetchcmd += " -O " + f.name + " --user-agent='" + self.user_agent + "' '" + uri + "'" + try: + self._runwget(ud, d, fetchcmd, True, workdir=workdir) + fetchresult = f.read() + except bb.fetch2.BBFetchException: + fetchresult = "" + + return fetchresult + + def _check_latest_version(self, url, package, package_regex, current_version, ud, d): + """ + Return the latest version of a package inside a given directory path + If error or no version, return "" + """ + valid = 0 + version = ['', '', ''] + + bb.debug(3, "VersionURL: %s" % (url)) + soup = BeautifulSoup(self._fetch_index(url, ud, d), "html.parser", parse_only=SoupStrainer("a")) + if not soup: + bb.debug(3, "*** %s NO SOUP" % (url)) + return "" + + for line in soup.find_all('a', href=True): + bb.debug(3, "line['href'] = '%s'" % (line['href'])) + bb.debug(3, "line = '%s'" % (str(line))) + + newver = self._parse_path(package_regex, line['href']) + if not newver: + newver = self._parse_path(package_regex, str(line)) + + if newver: + bb.debug(3, "Upstream version found: %s" % newver[1]) + if valid == 0: + version = newver + valid = 1 + elif self._vercmp(version, newver) < 0: + version = newver + + pupver = re.sub('_', '.', version[1]) + + bb.debug(3, "*** %s -> UpstreamVersion = %s (CurrentVersion = %s)" % + (package, pupver or "N/A", current_version[1])) + + if valid: + return pupver + + return "" + + def _check_latest_version_by_dir(self, dirver, package, package_regex, current_version, ud, d): + """ + Scan every directory in order to get upstream version. + """ + version_dir = ['', '', ''] + version = ['', '', ''] + + dirver_regex = re.compile(r"(?P\D*)(?P(\d+[\.\-_])*(\d+))") + s = dirver_regex.search(dirver) + if s: + version_dir[1] = s.group('ver') + else: + version_dir[1] = dirver + + dirs_uri = bb.fetch.encodeurl([ud.type, ud.host, + ud.path.split(dirver)[0], ud.user, ud.pswd, {}]) + bb.debug(3, "DirURL: %s, %s" % (dirs_uri, package)) + + soup = BeautifulSoup(self._fetch_index(dirs_uri, ud, d), "html.parser", parse_only=SoupStrainer("a")) + if not soup: + return version[1] + + for line in soup.find_all('a', href=True): + s = dirver_regex.search(line['href'].strip("/")) + if s: + sver = s.group('ver') + + # When prefix is part of the version directory it need to + # ensure that only version directory is used so remove previous + # directories if exists. + # + # Example: pfx = '/dir1/dir2/v' and version = '2.5' the expected + # result is v2.5. + spfx = s.group('pfx').split('/')[-1] + + version_dir_new = ['', sver, ''] + if self._vercmp(version_dir, version_dir_new) <= 0: + dirver_new = spfx + sver + path = ud.path.replace(dirver, dirver_new, True) \ + .split(package)[0] + uri = bb.fetch.encodeurl([ud.type, ud.host, path, + ud.user, ud.pswd, {}]) + + pupver = self._check_latest_version(uri, + package, package_regex, current_version, ud, d) + if pupver: + version[1] = pupver + + version_dir = version_dir_new + + return version[1] + + def _init_regexes(self, package, ud, d): + """ + Match as many patterns as possible such as: + gnome-common-2.20.0.tar.gz (most common format) + gtk+-2.90.1.tar.gz + xf86-input-synaptics-12.6.9.tar.gz + dri2proto-2.3.tar.gz + blktool_4.orig.tar.gz + libid3tag-0.15.1b.tar.gz + unzip552.tar.gz + icu4c-3_6-src.tgz + genext2fs_1.3.orig.tar.gz + gst-fluendo-mp3 + """ + # match most patterns which uses "-" as separator to version digits + pn_prefix1 = r"[a-zA-Z][a-zA-Z0-9]*([-_][a-zA-Z]\w+)*\+?[-_]" + # a loose pattern such as for unzip552.tar.gz + pn_prefix2 = r"[a-zA-Z]+" + # a loose pattern such as for 80325-quicky-0.4.tar.gz + pn_prefix3 = r"[0-9]+[-]?[a-zA-Z]+" + # Save the Package Name (pn) Regex for use later + pn_regex = r"(%s|%s|%s)" % (pn_prefix1, pn_prefix2, pn_prefix3) + + # match version + pver_regex = r"(([A-Z]*\d+[a-zA-Z]*[\.\-_]*)+)" + + # match arch + parch_regex = "-source|_all_" + + # src.rpm extension was added only for rpm package. Can be removed if the rpm + # packaged will always be considered as having to be manually upgraded + psuffix_regex = r"(tar\.\w+|tgz|zip|xz|rpm|bz2|orig\.tar\.\w+|src\.tar\.\w+|src\.tgz|svnr\d+\.tar\.\w+|stable\.tar\.\w+|src\.rpm)" + + # match name, version and archive type of a package + package_regex_comp = re.compile(r"(?P%s?\.?v?)(?P%s)(?P%s)?[\.-](?P%s$)" + % (pn_regex, pver_regex, parch_regex, psuffix_regex)) + self.suffix_regex_comp = re.compile(psuffix_regex) + + # compile regex, can be specific by package or generic regex + pn_regex = d.getVar('UPSTREAM_CHECK_REGEX') + if pn_regex: + package_custom_regex_comp = re.compile(pn_regex) + else: + version = self._parse_path(package_regex_comp, package) + if version: + package_custom_regex_comp = re.compile( + r"(?P%s)(?P%s)(?P%s)?[\.-](?P%s)" % + (re.escape(version[0]), pver_regex, parch_regex, psuffix_regex)) + else: + package_custom_regex_comp = None + + return package_custom_regex_comp + + def latest_versionstring(self, ud, d): + """ + Manipulate the URL and try to obtain the latest package version + + sanity check to ensure same name and type. + """ + package = ud.path.split("/")[-1] + current_version = ['', d.getVar('PV'), ''] + + """possible to have no version in pkg name, such as spectrum-fw""" + if not re.search(r"\d+", package): + current_version[1] = re.sub('_', '.', current_version[1]) + current_version[1] = re.sub('-', '.', current_version[1]) + return (current_version[1], '') + + package_regex = self._init_regexes(package, ud, d) + if package_regex is None: + bb.warn("latest_versionstring: package %s don't match pattern" % (package)) + return ('', '') + bb.debug(3, "latest_versionstring, regex: %s" % (package_regex.pattern)) + + uri = "" + regex_uri = d.getVar("UPSTREAM_CHECK_URI") + if not regex_uri: + path = ud.path.split(package)[0] + + # search for version matches on folders inside the path, like: + # "5.7" in http://download.gnome.org/sources/${PN}/5.7/${PN}-${PV}.tar.gz + dirver_regex = re.compile(r"(?P[^/]*(\d+\.)*\d+([-_]r\d+)*)/") + m = dirver_regex.search(path) + if m: + pn = d.getVar('PN') + dirver = m.group('dirver') + + dirver_pn_regex = re.compile(r"%s\d?" % (re.escape(pn))) + if not dirver_pn_regex.search(dirver): + return (self._check_latest_version_by_dir(dirver, + package, package_regex, current_version, ud, d), '') + + uri = bb.fetch.encodeurl([ud.type, ud.host, path, ud.user, ud.pswd, {}]) + else: + uri = regex_uri + + return (self._check_latest_version(uri, package, package_regex, + current_version, ud, d), '') diff --git a/poky/bitbake/lib/bb/main.py b/poky/bitbake/lib/bb/main.py new file mode 100755 index 0000000..93eda36 --- /dev/null +++ b/poky/bitbake/lib/bb/main.py @@ -0,0 +1,494 @@ +# +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer +# Copyright (C) 2005 Holger Hans Peter Freyther +# Copyright (C) 2005 ROAD GmbH +# Copyright (C) 2006 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os +import sys +import logging +import optparse +import warnings +import fcntl +import time +import traceback + +import bb +from bb import event +import bb.msg +from bb import cooker +from bb import ui +from bb import server +from bb import cookerdata + +import bb.server.process +import bb.server.xmlrpcclient + +logger = logging.getLogger("BitBake") + +class BBMainException(Exception): + pass + +class BBMainFatal(bb.BBHandledException): + pass + +def present_options(optionlist): + if len(optionlist) > 1: + return ' or '.join([', '.join(optionlist[:-1]), optionlist[-1]]) + else: + return optionlist[0] + +class BitbakeHelpFormatter(optparse.IndentedHelpFormatter): + def format_option(self, option): + # We need to do this here rather than in the text we supply to + # add_option() because we don't want to call list_extension_modules() + # on every execution (since it imports all of the modules) + # Note also that we modify option.help rather than the returned text + # - this is so that we don't have to re-format the text ourselves + if option.dest == 'ui': + valid_uis = list_extension_modules(bb.ui, 'main') + option.help = option.help.replace('@CHOICES@', present_options(valid_uis)) + + return optparse.IndentedHelpFormatter.format_option(self, option) + +def list_extension_modules(pkg, checkattr): + """ + Lists extension modules in a specific Python package + (e.g. UIs, servers). NOTE: Calling this function will import all of the + submodules of the specified module in order to check for the specified + attribute; this can have unusual side-effects. As a result, this should + only be called when displaying help text or error messages. + Parameters: + pkg: previously imported Python package to list + checkattr: attribute to look for in module to determine if it's valid + as the type of extension you are looking for + """ + import pkgutil + pkgdir = os.path.dirname(pkg.__file__) + + modules = [] + for _, modulename, _ in pkgutil.iter_modules([pkgdir]): + if os.path.isdir(os.path.join(pkgdir, modulename)): + # ignore directories + continue + try: + module = __import__(pkg.__name__, fromlist=[modulename]) + except: + # If we can't import it, it's not valid + continue + module_if = getattr(module, modulename) + if getattr(module_if, 'hidden_extension', False): + continue + if not checkattr or hasattr(module_if, checkattr): + modules.append(modulename) + return modules + +def import_extension_module(pkg, modulename, checkattr): + try: + # Dynamically load the UI based on the ui name. Although we + # suggest a fixed set this allows you to have flexibility in which + # ones are available. + module = __import__(pkg.__name__, fromlist=[modulename]) + return getattr(module, modulename) + except AttributeError: + modules = present_options(list_extension_modules(pkg, checkattr)) + raise BBMainException('FATAL: Unable to import extension module "%s" from %s. ' + 'Valid extension modules: %s' % (modulename, pkg.__name__, modules)) + +# Display bitbake/OE warnings via the BitBake.Warnings logger, ignoring others""" +warnlog = logging.getLogger("BitBake.Warnings") +_warnings_showwarning = warnings.showwarning +def _showwarning(message, category, filename, lineno, file=None, line=None): + if file is not None: + if _warnings_showwarning is not None: + _warnings_showwarning(message, category, filename, lineno, file, line) + else: + s = warnings.formatwarning(message, category, filename, lineno) + warnlog.warning(s) + +warnings.showwarning = _showwarning + +def create_bitbake_parser(): + parser = optparse.OptionParser( + formatter=BitbakeHelpFormatter(), + version="BitBake Build Tool Core version %s" % bb.__version__, + usage="""%prog [options] [recipename/target recipe:do_task ...] + + Executes the specified task (default is 'build') for a given set of target recipes (.bb files). + It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which + will provide the layer, BBFILES and other configuration information.""") + + parser.add_option("-b", "--buildfile", action="store", dest="buildfile", default=None, + help="Execute tasks from a specific .bb recipe directly. WARNING: Does " + "not handle any dependencies from other recipes.") + + parser.add_option("-k", "--continue", action="store_false", dest="halt", default=True, + help="Continue as much as possible after an error. While the target that " + "failed and anything depending on it cannot be built, as much as " + "possible will be built before stopping.") + + parser.add_option("-f", "--force", action="store_true", dest="force", default=False, + help="Force the specified targets/task to run (invalidating any " + "existing stamp file).") + + parser.add_option("-c", "--cmd", action="store", dest="cmd", + help="Specify the task to execute. The exact options available " + "depend on the metadata. Some examples might be 'compile'" + " or 'populate_sysroot' or 'listtasks' may give a list of " + "the tasks available.") + + parser.add_option("-C", "--clear-stamp", action="store", dest="invalidate_stamp", + help="Invalidate the stamp for the specified task such as 'compile' " + "and then run the default task for the specified target(s).") + + parser.add_option("-r", "--read", action="append", dest="prefile", default=[], + help="Read the specified file before bitbake.conf.") + + parser.add_option("-R", "--postread", action="append", dest="postfile", default=[], + help="Read the specified file after bitbake.conf.") + + parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, + help="Enable tracing of shell tasks (with 'set -x'). " + "Also print bb.note(...) messages to stdout (in " + "addition to writing them to ${T}/log.do_).") + + parser.add_option("-D", "--debug", action="count", dest="debug", default=0, + help="Increase the debug level. You can specify this " + "more than once. -D sets the debug level to 1, " + "where only bb.debug(1, ...) messages are printed " + "to stdout; -DD sets the debug level to 2, where " + "both bb.debug(1, ...) and bb.debug(2, ...) " + "messages are printed; etc. Without -D, no debug " + "messages are printed. Note that -D only affects " + "output to stdout. All debug messages are written " + "to ${T}/log.do_taskname, regardless of the debug " + "level.") + + parser.add_option("-q", "--quiet", action="count", dest="quiet", default=0, + help="Output less log message data to the terminal. You can specify this more than once.") + + parser.add_option("-n", "--dry-run", action="store_true", dest="dry_run", default=False, + help="Don't execute, just go through the motions.") + + parser.add_option("-S", "--dump-signatures", action="append", dest="dump_signatures", + default=[], metavar="SIGNATURE_HANDLER", + help="Dump out the signature construction information, with no task " + "execution. The SIGNATURE_HANDLER parameter is passed to the " + "handler. Two common values are none and printdiff but the handler " + "may define more/less. none means only dump the signature, printdiff" + " means compare the dumped signature with the cached one.") + + parser.add_option("-p", "--parse-only", action="store_true", + dest="parse_only", default=False, + help="Quit after parsing the BB recipes.") + + parser.add_option("-s", "--show-versions", action="store_true", + dest="show_versions", default=False, + help="Show current and preferred versions of all recipes.") + + parser.add_option("-e", "--environment", action="store_true", + dest="show_environment", default=False, + help="Show the global or per-recipe environment complete with information" + " about where variables were set/changed.") + + parser.add_option("-g", "--graphviz", action="store_true", dest="dot_graph", default=False, + help="Save dependency tree information for the specified " + "targets in the dot syntax.") + + parser.add_option("-I", "--ignore-deps", action="append", + dest="extra_assume_provided", default=[], + help="Assume these dependencies don't exist and are already provided " + "(equivalent to ASSUME_PROVIDED). Useful to make dependency " + "graphs more appealing") + + parser.add_option("-l", "--log-domains", action="append", dest="debug_domains", default=[], + help="Show debug logging for the specified logging domains") + + parser.add_option("-P", "--profile", action="store_true", dest="profile", default=False, + help="Profile the command and save reports.") + + # @CHOICES@ is substituted out by BitbakeHelpFormatter above + parser.add_option("-u", "--ui", action="store", dest="ui", + default=os.environ.get('BITBAKE_UI', 'knotty'), + help="The user interface to use (@CHOICES@ - default %default).") + + parser.add_option("", "--token", action="store", dest="xmlrpctoken", + default=os.environ.get("BBTOKEN"), + help="Specify the connection token to be used when connecting " + "to a remote server.") + + parser.add_option("", "--revisions-changed", action="store_true", + dest="revisions_changed", default=False, + help="Set the exit code depending on whether upstream floating " + "revisions have changed or not.") + + parser.add_option("", "--server-only", action="store_true", + dest="server_only", default=False, + help="Run bitbake without a UI, only starting a server " + "(cooker) process.") + + parser.add_option("-B", "--bind", action="store", dest="bind", default=False, + help="The name/address for the bitbake xmlrpc server to bind to.") + + parser.add_option("-T", "--idle-timeout", type=float, dest="server_timeout", + default=os.getenv("BB_SERVER_TIMEOUT"), + help="Set timeout to unload bitbake server due to inactivity, " + "set to -1 means no unload, " + "default: Environment variable BB_SERVER_TIMEOUT.") + + parser.add_option("", "--no-setscene", action="store_true", + dest="nosetscene", default=False, + help="Do not run any setscene tasks. sstate will be ignored and " + "everything needed, built.") + + parser.add_option("", "--skip-setscene", action="store_true", + dest="skipsetscene", default=False, + help="Skip setscene tasks if they would be executed. Tasks previously " + "restored from sstate will be kept, unlike --no-setscene") + + parser.add_option("", "--setscene-only", action="store_true", + dest="setsceneonly", default=False, + help="Only run setscene tasks, don't run any real tasks.") + + parser.add_option("", "--remote-server", action="store", dest="remote_server", + default=os.environ.get("BBSERVER"), + help="Connect to the specified server.") + + parser.add_option("-m", "--kill-server", action="store_true", + dest="kill_server", default=False, + help="Terminate any running bitbake server.") + + parser.add_option("", "--observe-only", action="store_true", + dest="observe_only", default=False, + help="Connect to a server as an observing-only client.") + + parser.add_option("", "--status-only", action="store_true", + dest="status_only", default=False, + help="Check the status of the remote bitbake server.") + + parser.add_option("-w", "--write-log", action="store", dest="writeeventlog", + default=os.environ.get("BBEVENTLOG"), + help="Writes the event log of the build to a bitbake event json file. " + "Use '' (empty string) to assign the name automatically.") + + parser.add_option("", "--runall", action="append", dest="runall", + help="Run the specified task for any recipe in the taskgraph of the specified target (even if it wouldn't otherwise have run).") + + parser.add_option("", "--runonly", action="append", dest="runonly", + help="Run only the specified task within the taskgraph of the specified targets (and any task dependencies those tasks may have).") + return parser + + +class BitBakeConfigParameters(cookerdata.ConfigParameters): + def parseCommandLine(self, argv=sys.argv): + parser = create_bitbake_parser() + options, targets = parser.parse_args(argv) + + if options.quiet and options.verbose: + parser.error("options --quiet and --verbose are mutually exclusive") + + if options.quiet and options.debug: + parser.error("options --quiet and --debug are mutually exclusive") + + # use configuration files from environment variables + if "BBPRECONF" in os.environ: + options.prefile.append(os.environ["BBPRECONF"]) + + if "BBPOSTCONF" in os.environ: + options.postfile.append(os.environ["BBPOSTCONF"]) + + # fill in proper log name if not supplied + if options.writeeventlog is not None and len(options.writeeventlog) == 0: + from datetime import datetime + eventlog = "bitbake_eventlog_%s.json" % datetime.now().strftime("%Y%m%d%H%M%S") + options.writeeventlog = eventlog + + if options.bind: + try: + #Checking that the port is a number and is a ':' delimited value + (host, port) = options.bind.split(':') + port = int(port) + except (ValueError,IndexError): + raise BBMainException("FATAL: Malformed host:port bind parameter") + options.xmlrpcinterface = (host, port) + else: + options.xmlrpcinterface = (None, 0) + + return options, targets[1:] + + +def bitbake_main(configParams, configuration): + + # Python multiprocessing requires /dev/shm on Linux + if sys.platform.startswith('linux') and not os.access('/dev/shm', os.W_OK | os.X_OK): + raise BBMainException("FATAL: /dev/shm does not exist or is not writable") + + # Unbuffer stdout to avoid log truncation in the event + # of an unorderly exit as well as to provide timely + # updates to log files for use with tail + try: + if sys.stdout.name == '': + # Reopen with O_SYNC (unbuffered) + fl = fcntl.fcntl(sys.stdout.fileno(), fcntl.F_GETFL) + fl |= os.O_SYNC + fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl) + except: + pass + + if configParams.server_only and configParams.remote_server: + raise BBMainException("FATAL: The '--server-only' option conflicts with %s.\n" % + ("the BBSERVER environment variable" if "BBSERVER" in os.environ \ + else "the '--remote-server' option")) + + if configParams.observe_only and not (configParams.remote_server or configParams.bind): + raise BBMainException("FATAL: '--observe-only' can only be used by UI clients " + "connecting to a server.\n") + + if "BBDEBUG" in os.environ: + level = int(os.environ["BBDEBUG"]) + if level > configParams.debug: + configParams.debug = level + + bb.msg.init_msgconfig(configParams.verbose, configParams.debug, + configParams.debug_domains) + + server_connection, ui_module = setup_bitbake(configParams) + # No server connection + if server_connection is None: + if configParams.status_only: + return 1 + if configParams.kill_server: + return 0 + + if not configParams.server_only: + if configParams.status_only: + server_connection.terminate() + return 0 + + try: + for event in bb.event.ui_queue: + server_connection.events.queue_event(event) + bb.event.ui_queue = [] + + return ui_module.main(server_connection.connection, server_connection.events, + configParams) + finally: + server_connection.terminate() + else: + return 0 + + return 1 + +def setup_bitbake(configParams, extrafeatures=None): + # Ensure logging messages get sent to the UI as events + handler = bb.event.LogHandler() + if not configParams.status_only: + # In status only mode there are no logs and no UI + logger.addHandler(handler) + + if configParams.server_only: + featureset = [] + ui_module = None + else: + ui_module = import_extension_module(bb.ui, configParams.ui, 'main') + # Collect the feature set for the UI + featureset = getattr(ui_module, "featureSet", []) + + if extrafeatures: + for feature in extrafeatures: + if not feature in featureset: + featureset.append(feature) + + server_connection = None + + # Clear away any spurious environment variables while we stoke up the cooker + # (done after import_extension_module() above since for example import gi triggers env var usage) + cleanedvars = bb.utils.clean_environment() + + if configParams.remote_server: + # Connect to a remote XMLRPC server + server_connection = bb.server.xmlrpcclient.connectXMLRPC(configParams.remote_server, featureset, + configParams.observe_only, configParams.xmlrpctoken) + else: + retries = 8 + while retries: + try: + topdir, lock = lockBitbake() + sockname = topdir + "/bitbake.sock" + if lock: + if configParams.status_only or configParams.kill_server: + logger.info("bitbake server is not running.") + lock.close() + return None, None + # we start a server with a given featureset + logger.info("Starting bitbake server...") + # Clear the event queue since we already displayed messages + bb.event.ui_queue = [] + server = bb.server.process.BitBakeServer(lock, sockname, featureset, configParams.server_timeout, configParams.xmlrpcinterface) + + else: + logger.info("Reconnecting to bitbake server...") + if not os.path.exists(sockname): + logger.info("Previous bitbake instance shutting down?, waiting to retry...") + i = 0 + lock = None + # Wait for 5s or until we can get the lock + while not lock and i < 50: + time.sleep(0.1) + _, lock = lockBitbake() + i += 1 + if lock: + bb.utils.unlockfile(lock) + raise bb.server.process.ProcessTimeout("Bitbake still shutting down as socket exists but no lock?") + if not configParams.server_only: + server_connection = bb.server.process.connectProcessServer(sockname, featureset) + + if server_connection or configParams.server_only: + break + except BBMainFatal: + raise + except (Exception, bb.server.process.ProcessTimeout, SystemExit) as e: + # SystemExit does not inherit from the Exception class, needs to be included explicitly + if not retries: + raise + retries -= 1 + tryno = 8 - retries + if isinstance(e, (bb.server.process.ProcessTimeout, BrokenPipeError, EOFError, SystemExit)): + logger.info("Retrying server connection (#%d)..." % tryno) + else: + logger.info("Retrying server connection (#%d)... (%s)" % (tryno, traceback.format_exc())) + + if not retries: + bb.fatal("Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).") + bb.event.print_ui_queue() + if retries < 5: + time.sleep(5) + + if configParams.kill_server: + server_connection.connection.terminateServer() + server_connection.terminate() + bb.event.ui_queue = [] + logger.info("Terminated bitbake server.") + return None, None + + # Restore the environment in case the UI needs it + for k in cleanedvars: + os.environ[k] = cleanedvars[k] + + logger.removeHandler(handler) + + return server_connection, ui_module + +def lockBitbake(): + topdir = bb.cookerdata.findTopdir() + if not topdir: + bb.error("Unable to find conf/bblayers.conf or conf/bitbake.conf. BBPATH is unset and/or not in a build directory?") + raise BBMainFatal + lockfile = topdir + "/bitbake.lock" + return topdir, bb.utils.lockfile(lockfile, False, False) + diff --git a/poky/bitbake/lib/bb/methodpool.py b/poky/bitbake/lib/bb/methodpool.py new file mode 100644 index 0000000..51783ac --- /dev/null +++ b/poky/bitbake/lib/bb/methodpool.py @@ -0,0 +1,27 @@ +# +# Copyright (C) 2006 Holger Hans Peter Freyther +# +# SPDX-License-Identifier: GPL-2.0-only +# + +from bb.utils import better_compile, better_exec + +def insert_method(modulename, code, fn, lineno): + """ + Add code of a module should be added. The methods + will be simply added, no checking will be done + """ + comp = better_compile(code, modulename, fn, lineno=lineno) + better_exec(comp, None, code, fn) + +compilecache = {} + +def compile_cache(code): + h = hash(code) + if h in compilecache: + return compilecache[h] + return None + +def compile_cache_add(code, compileobj): + h = hash(code) + compilecache[h] = compileobj diff --git a/poky/bitbake/lib/bb/monitordisk.py b/poky/bitbake/lib/bb/monitordisk.py new file mode 100644 index 0000000..a1b9100 --- /dev/null +++ b/poky/bitbake/lib/bb/monitordisk.py @@ -0,0 +1,260 @@ +# +# Copyright (C) 2012 Robert Yang +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import os, logging, re +import bb +logger = logging.getLogger("BitBake.Monitor") + +def printErr(info): + logger.error("%s\n Disk space monitor will NOT be enabled" % info) + +def convertGMK(unit): + + """ Convert the space unit G, M, K, the unit is case-insensitive """ + + unitG = re.match(r'([1-9][0-9]*)[gG]\s?$', unit) + if unitG: + return int(unitG.group(1)) * (1024 ** 3) + unitM = re.match(r'([1-9][0-9]*)[mM]\s?$', unit) + if unitM: + return int(unitM.group(1)) * (1024 ** 2) + unitK = re.match(r'([1-9][0-9]*)[kK]\s?$', unit) + if unitK: + return int(unitK.group(1)) * 1024 + unitN = re.match(r'([1-9][0-9]*)\s?$', unit) + if unitN: + return int(unitN.group(1)) + else: + return None + +def getMountedDev(path): + + """ Get the device mounted at the path, uses /proc/mounts """ + + # Get the mount point of the filesystem containing path + # st_dev is the ID of device containing file + parentDev = os.stat(path).st_dev + currentDev = parentDev + # When the current directory's device is different from the + # parent's, then the current directory is a mount point + while parentDev == currentDev: + mountPoint = path + # Use dirname to get the parent's directory + path = os.path.dirname(path) + # Reach the "/" + if path == mountPoint: + break + parentDev= os.stat(path).st_dev + + try: + with open("/proc/mounts", "r") as ifp: + for line in ifp: + procLines = line.rstrip('\n').split() + if procLines[1] == mountPoint: + return procLines[0] + except EnvironmentError: + pass + return None + +def getDiskData(BBDirs): + + """Prepare disk data for disk space monitor""" + + # Save the device IDs, need the ID to be unique (the dictionary's key is + # unique), so that when more than one directory is located on the same + # device, we just monitor it once + devDict = {} + for pathSpaceInode in BBDirs.split(): + # The input format is: "dir,space,inode", dir is a must, space + # and inode are optional + pathSpaceInodeRe = re.match(r'([^,]*),([^,]*),([^,]*),?(.*)', pathSpaceInode) + if not pathSpaceInodeRe: + printErr("Invalid value in BB_DISKMON_DIRS: %s" % pathSpaceInode) + return None + + action = pathSpaceInodeRe.group(1) + if action == "ABORT": + # Emit a deprecation warning + logger.warnonce("The BB_DISKMON_DIRS \"ABORT\" action has been renamed to \"HALT\", update configuration") + action = "HALT" + + if action not in ("HALT", "STOPTASKS", "WARN"): + printErr("Unknown disk space monitor action: %s" % action) + return None + + path = os.path.realpath(pathSpaceInodeRe.group(2)) + if not path: + printErr("Invalid path value in BB_DISKMON_DIRS: %s" % pathSpaceInode) + return None + + # The disk space or inode is optional, but it should have a correct + # value once it is specified + minSpace = pathSpaceInodeRe.group(3) + if minSpace: + minSpace = convertGMK(minSpace) + if not minSpace: + printErr("Invalid disk space value in BB_DISKMON_DIRS: %s" % pathSpaceInodeRe.group(3)) + return None + else: + # None means that it is not specified + minSpace = None + + minInode = pathSpaceInodeRe.group(4) + if minInode: + minInode = convertGMK(minInode) + if not minInode: + printErr("Invalid inode value in BB_DISKMON_DIRS: %s" % pathSpaceInodeRe.group(4)) + return None + else: + # None means that it is not specified + minInode = None + + if minSpace is None and minInode is None: + printErr("No disk space or inode value in found BB_DISKMON_DIRS: %s" % pathSpaceInode) + return None + # mkdir for the directory since it may not exist, for example the + # DL_DIR may not exist at the very beginning + if not os.path.exists(path): + bb.utils.mkdirhier(path) + dev = getMountedDev(path) + # Use path/action as the key + devDict[(path, action)] = [dev, minSpace, minInode] + + return devDict + +def getInterval(configuration): + + """ Get the disk space interval """ + + # The default value is 50M and 5K. + spaceDefault = 50 * 1024 * 1024 + inodeDefault = 5 * 1024 + + interval = configuration.getVar("BB_DISKMON_WARNINTERVAL") + if not interval: + return spaceDefault, inodeDefault + else: + # The disk space or inode interval is optional, but it should + # have a correct value once it is specified + intervalRe = re.match(r'([^,]*),?\s*(.*)', interval) + if intervalRe: + intervalSpace = intervalRe.group(1) + if intervalSpace: + intervalSpace = convertGMK(intervalSpace) + if not intervalSpace: + printErr("Invalid disk space interval value in BB_DISKMON_WARNINTERVAL: %s" % intervalRe.group(1)) + return None, None + else: + intervalSpace = spaceDefault + intervalInode = intervalRe.group(2) + if intervalInode: + intervalInode = convertGMK(intervalInode) + if not intervalInode: + printErr("Invalid disk inode interval value in BB_DISKMON_WARNINTERVAL: %s" % intervalRe.group(2)) + return None, None + else: + intervalInode = inodeDefault + return intervalSpace, intervalInode + else: + printErr("Invalid interval value in BB_DISKMON_WARNINTERVAL: %s" % interval) + return None, None + +class diskMonitor: + + """Prepare the disk space monitor data""" + + def __init__(self, configuration): + + self.enableMonitor = False + self.configuration = configuration + + BBDirs = configuration.getVar("BB_DISKMON_DIRS") or None + if BBDirs: + self.devDict = getDiskData(BBDirs) + if self.devDict: + self.spaceInterval, self.inodeInterval = getInterval(configuration) + if self.spaceInterval and self.inodeInterval: + self.enableMonitor = True + # These are for saving the previous disk free space and inode, we + # use them to avoid printing too many warning messages + self.preFreeS = {} + self.preFreeI = {} + # This is for STOPTASKS and HALT, to avoid printing the message + # repeatedly while waiting for the tasks to finish + self.checked = {} + for k in self.devDict: + self.preFreeS[k] = 0 + self.preFreeI[k] = 0 + self.checked[k] = False + if self.spaceInterval is None and self.inodeInterval is None: + self.enableMonitor = False + + def check(self, rq): + + """ Take action for the monitor """ + + if self.enableMonitor: + diskUsage = {} + for k, attributes in self.devDict.items(): + path, action = k + dev, minSpace, minInode = attributes + + st = os.statvfs(path) + + # The available free space, integer number + freeSpace = st.f_bavail * st.f_frsize + + # Send all relevant information in the event. + freeSpaceRoot = st.f_bfree * st.f_frsize + totalSpace = st.f_blocks * st.f_frsize + diskUsage[dev] = bb.event.DiskUsageSample(freeSpace, freeSpaceRoot, totalSpace) + + if minSpace and freeSpace < minSpace: + # Always show warning, the self.checked would always be False if the action is WARN + if self.preFreeS[k] == 0 or self.preFreeS[k] - freeSpace > self.spaceInterval and not self.checked[k]: + logger.warning("The free space of %s (%s) is running low (%.3fGB left)" % \ + (path, dev, freeSpace / 1024 / 1024 / 1024.0)) + self.preFreeS[k] = freeSpace + + if action == "STOPTASKS" and not self.checked[k]: + logger.error("No new tasks can be executed since the disk space monitor action is \"STOPTASKS\"!") + self.checked[k] = True + rq.finish_runqueue(False) + bb.event.fire(bb.event.DiskFull(dev, 'disk', freeSpace, path), self.configuration) + elif action == "HALT" and not self.checked[k]: + logger.error("Immediately halt since the disk space monitor action is \"HALT\"!") + self.checked[k] = True + rq.finish_runqueue(True) + bb.event.fire(bb.event.DiskFull(dev, 'disk', freeSpace, path), self.configuration) + + # The free inodes, integer number + freeInode = st.f_favail + + if minInode and freeInode < minInode: + # Some filesystems use dynamic inodes so can't run out + # (e.g. btrfs). This is reported by the inode count being 0. + if st.f_files == 0: + self.devDict[k][2] = None + continue + # Always show warning, the self.checked would always be False if the action is WARN + if self.preFreeI[k] == 0 or self.preFreeI[k] - freeInode > self.inodeInterval and not self.checked[k]: + logger.warning("The free inode of %s (%s) is running low (%.3fK left)" % \ + (path, dev, freeInode / 1024.0)) + self.preFreeI[k] = freeInode + + if action == "STOPTASKS" and not self.checked[k]: + logger.error("No new tasks can be executed since the disk space monitor action is \"STOPTASKS\"!") + self.checked[k] = True + rq.finish_runqueue(False) + bb.event.fire(bb.event.DiskFull(dev, 'inode', freeInode, path), self.configuration) + elif action == "HALT" and not self.checked[k]: + logger.error("Immediately halt since the disk space monitor action is \"HALT\"!") + self.checked[k] = True + rq.finish_runqueue(True) + bb.event.fire(bb.event.DiskFull(dev, 'inode', freeInode, path), self.configuration) + + bb.event.fire(bb.event.MonitorDiskEvent(diskUsage), self.configuration) + return diff --git a/poky/bitbake/lib/bb/msg.py b/poky/bitbake/lib/bb/msg.py new file mode 100644 index 0000000..93575d8 --- /dev/null +++ b/poky/bitbake/lib/bb/msg.py @@ -0,0 +1,357 @@ +""" +BitBake 'msg' implementation + +Message handling infrastructure for bitbake + +""" + +# Copyright (C) 2006 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import sys +import copy +import logging +import logging.config +import os +from itertools import groupby +import bb +import bb.event + +class BBLogFormatter(logging.Formatter): + """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is""" + + DEBUG3 = logging.DEBUG - 2 + DEBUG2 = logging.DEBUG - 1 + DEBUG = logging.DEBUG + VERBOSE = logging.INFO - 1 + NOTE = logging.INFO + PLAIN = logging.INFO + 1 + VERBNOTE = logging.INFO + 2 + ERROR = logging.ERROR + ERRORONCE = logging.ERROR - 1 + WARNING = logging.WARNING + WARNONCE = logging.WARNING - 1 + CRITICAL = logging.CRITICAL + + levelnames = { + DEBUG3 : 'DEBUG', + DEBUG2 : 'DEBUG', + DEBUG : 'DEBUG', + VERBOSE: 'NOTE', + NOTE : 'NOTE', + PLAIN : '', + VERBNOTE: 'NOTE', + WARNING : 'WARNING', + WARNONCE : 'WARNING', + ERROR : 'ERROR', + ERRORONCE : 'ERROR', + CRITICAL: 'ERROR', + } + + color_enabled = False + BASECOLOR, BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = list(range(29,38)) + + COLORS = { + DEBUG3 : CYAN, + DEBUG2 : CYAN, + DEBUG : CYAN, + VERBOSE : BASECOLOR, + NOTE : BASECOLOR, + PLAIN : BASECOLOR, + VERBNOTE: BASECOLOR, + WARNING : YELLOW, + WARNONCE : YELLOW, + ERROR : RED, + ERRORONCE : RED, + CRITICAL: RED, + } + + BLD = '\033[1;%dm' + STD = '\033[%dm' + RST = '\033[0m' + + def getLevelName(self, levelno): + try: + return self.levelnames[levelno] + except KeyError: + self.levelnames[levelno] = value = 'Level %d' % levelno + return value + + def format(self, record): + record.levelname = self.getLevelName(record.levelno) + if record.levelno == self.PLAIN: + msg = record.getMessage() + else: + if self.color_enabled: + record = self.colorize(record) + msg = logging.Formatter.format(self, record) + if hasattr(record, 'bb_exc_formatted'): + msg += '\n' + ''.join(record.bb_exc_formatted) + elif hasattr(record, 'bb_exc_info'): + etype, value, tb = record.bb_exc_info + formatted = bb.exceptions.format_exception(etype, value, tb, limit=5) + msg += '\n' + ''.join(formatted) + return msg + + def colorize(self, record): + color = self.COLORS[record.levelno] + if self.color_enabled and color is not None: + record = copy.copy(record) + record.levelname = "".join([self.BLD % color, record.levelname, self.RST]) + record.msg = "".join([self.STD % color, record.msg, self.RST]) + return record + + def enable_color(self): + self.color_enabled = True + + def __repr__(self): + return "%s fmt='%s' color=%s" % (self.__class__.__name__, self._fmt, "True" if self.color_enabled else "False") + +class BBLogFilter(object): + def __init__(self, handler, level, debug_domains): + self.stdlevel = level + self.debug_domains = debug_domains + loglevel = level + for domain in debug_domains: + if debug_domains[domain] < loglevel: + loglevel = debug_domains[domain] + handler.setLevel(loglevel) + handler.addFilter(self) + + def filter(self, record): + if record.levelno >= self.stdlevel: + return True + if record.name in self.debug_domains and record.levelno >= self.debug_domains[record.name]: + return True + return False + +class LogFilterShowOnce(logging.Filter): + def __init__(self): + self.seen_warnings = set() + self.seen_errors = set() + + def filter(self, record): + if record.levelno == bb.msg.BBLogFormatter.WARNONCE: + if record.msg in self.seen_warnings: + return False + self.seen_warnings.add(record.msg) + if record.levelno == bb.msg.BBLogFormatter.ERRORONCE: + if record.msg in self.seen_errors: + return False + self.seen_errors.add(record.msg) + return True + +class LogFilterGEQLevel(logging.Filter): + def __init__(self, level): + self.strlevel = str(level) + self.level = stringToLevel(level) + + def __repr__(self): + return "%s level >= %s (%d)" % (self.__class__.__name__, self.strlevel, self.level) + + def filter(self, record): + return (record.levelno >= self.level) + +class LogFilterLTLevel(logging.Filter): + def __init__(self, level): + self.strlevel = str(level) + self.level = stringToLevel(level) + + def __repr__(self): + return "%s level < %s (%d)" % (self.__class__.__name__, self.strlevel, self.level) + + def filter(self, record): + return (record.levelno < self.level) + +# Message control functions +# + +loggerDefaultLogLevel = BBLogFormatter.NOTE +loggerDefaultDomains = {} + +def init_msgconfig(verbose, debug, debug_domains=None): + """ + Set default verbosity and debug levels config the logger + """ + if debug: + bb.msg.loggerDefaultLogLevel = BBLogFormatter.DEBUG - debug + 1 + elif verbose: + bb.msg.loggerDefaultLogLevel = BBLogFormatter.VERBOSE + else: + bb.msg.loggerDefaultLogLevel = BBLogFormatter.NOTE + + bb.msg.loggerDefaultDomains = {} + if debug_domains: + for (domainarg, iterator) in groupby(debug_domains): + dlevel = len(tuple(iterator)) + bb.msg.loggerDefaultDomains["BitBake.%s" % domainarg] = logging.DEBUG - dlevel + 1 + +def constructLogOptions(): + return loggerDefaultLogLevel, loggerDefaultDomains + +def addDefaultlogFilter(handler, cls = BBLogFilter, forcelevel=None): + level, debug_domains = constructLogOptions() + + if forcelevel is not None: + level = forcelevel + + cls(handler, level, debug_domains) + +def stringToLevel(level): + try: + return int(level) + except ValueError: + pass + + try: + return getattr(logging, level) + except AttributeError: + pass + + return getattr(BBLogFormatter, level) + +# +# Message handling functions +# + +def fatal(msgdomain, msg): + if msgdomain: + logger = logging.getLogger("BitBake.%s" % msgdomain) + else: + logger = logging.getLogger("BitBake") + logger.critical(msg) + sys.exit(1) + +def logger_create(name, output=sys.stderr, level=logging.INFO, preserve_handlers=False, color='auto'): + """Standalone logger creation function""" + logger = logging.getLogger(name) + console = logging.StreamHandler(output) + console.addFilter(bb.msg.LogFilterShowOnce()) + format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s") + if color == 'always' or (color == 'auto' and output.isatty()): + format.enable_color() + console.setFormatter(format) + if preserve_handlers: + logger.addHandler(console) + else: + logger.handlers = [console] + logger.setLevel(level) + return logger + +def has_console_handler(logger): + for handler in logger.handlers: + if isinstance(handler, logging.StreamHandler): + if handler.stream in [sys.stderr, sys.stdout]: + return True + return False + +def mergeLoggingConfig(logconfig, userconfig): + logconfig = copy.deepcopy(logconfig) + userconfig = copy.deepcopy(userconfig) + + # Merge config with the default config + if userconfig.get('version') != logconfig['version']: + raise BaseException("Bad user configuration version. Expected %r, got %r" % (logconfig['version'], userconfig.get('version'))) + + # Set some defaults to make merging easier + userconfig.setdefault("loggers", {}) + + # If a handler, formatter, or filter is defined in the user + # config, it will replace an existing one in the default config + for k in ("handlers", "formatters", "filters"): + logconfig.setdefault(k, {}).update(userconfig.get(k, {})) + + seen_loggers = set() + for name, l in logconfig["loggers"].items(): + # If the merge option is set, merge the handlers and + # filters. Otherwise, if it is False, this logger won't get + # add to the set of seen loggers and will replace the + # existing one + if l.get('bitbake_merge', True): + ulogger = userconfig["loggers"].setdefault(name, {}) + ulogger.setdefault("handlers", []) + ulogger.setdefault("filters", []) + + # Merge lists + l.setdefault("handlers", []).extend(ulogger["handlers"]) + l.setdefault("filters", []).extend(ulogger["filters"]) + + # Replace other properties if present + if "level" in ulogger: + l["level"] = ulogger["level"] + + if "propagate" in ulogger: + l["propagate"] = ulogger["propagate"] + + seen_loggers.add(name) + + # Add all loggers present in the user config, but not any that + # have already been processed + for name in set(userconfig["loggers"].keys()) - seen_loggers: + logconfig["loggers"][name] = userconfig["loggers"][name] + + return logconfig + +def setLoggingConfig(defaultconfig, userconfigfile=None): + logconfig = copy.deepcopy(defaultconfig) + + if userconfigfile: + with open(os.path.normpath(userconfigfile), 'r') as f: + if userconfigfile.endswith('.yml') or userconfigfile.endswith('.yaml'): + import yaml + userconfig = yaml.safe_load(f) + elif userconfigfile.endswith('.json') or userconfigfile.endswith('.cfg'): + import json + userconfig = json.load(f) + else: + raise BaseException("Unrecognized file format: %s" % userconfigfile) + + if userconfig.get('bitbake_merge', True): + logconfig = mergeLoggingConfig(logconfig, userconfig) + else: + # Replace the entire default config + logconfig = userconfig + + # Convert all level parameters to integers in case users want to use the + # bitbake defined level names + for name, h in logconfig["handlers"].items(): + if "level" in h: + h["level"] = bb.msg.stringToLevel(h["level"]) + + # Every handler needs its own instance of the once filter. + once_filter_name = name + ".showonceFilter" + logconfig.setdefault("filters", {})[once_filter_name] = { + "()": "bb.msg.LogFilterShowOnce", + } + h.setdefault("filters", []).append(once_filter_name) + + for l in logconfig["loggers"].values(): + if "level" in l: + l["level"] = bb.msg.stringToLevel(l["level"]) + + conf = logging.config.dictConfigClass(logconfig) + conf.configure() + + # The user may have specified logging domains they want at a higher debug + # level than the standard. + for name, l in logconfig["loggers"].items(): + if not name.startswith("BitBake."): + continue + + if not "level" in l: + continue + + curlevel = bb.msg.loggerDefaultDomains.get(name) + # Note: level parameter should already be a int because of conversion + # above + newlevel = int(l["level"]) + if curlevel is None or newlevel < curlevel: + bb.msg.loggerDefaultDomains[name] = newlevel + + # TODO: I don't think that setting the global log level should be necessary + #if newlevel < bb.msg.loggerDefaultLogLevel: + # bb.msg.loggerDefaultLogLevel = newlevel + + return conf diff --git a/poky/bitbake/lib/bb/namedtuple_with_abc.py b/poky/bitbake/lib/bb/namedtuple_with_abc.py new file mode 100644 index 0000000..e46dbf0 --- /dev/null +++ b/poky/bitbake/lib/bb/namedtuple_with_abc.py @@ -0,0 +1,249 @@ +# http://code.activestate.com/recipes/577629-namedtupleabc-abstract-base-class-mix-in-for-named/ +# Copyright (c) 2011 Jan Kaliszewski (zuo). Available under the MIT License. +# +# SPDX-License-Identifier: MIT +# + +""" +namedtuple_with_abc.py: +* named tuple mix-in + ABC (abstract base class) recipe, +* works under Python 2.6, 2.7 as well as 3.x. + +Import this module to patch collections.namedtuple() factory function +-- enriching it with the 'abc' attribute (an abstract base class + mix-in +for named tuples) and decorating it with a wrapper that registers each +newly created named tuple as a subclass of namedtuple.abc. + +How to import: + import collections, namedtuple_with_abc +or: + import namedtuple_with_abc + from collections import namedtuple + # ^ in this variant you must import namedtuple function + # *after* importing namedtuple_with_abc module +or simply: + from namedtuple_with_abc import namedtuple + +Simple usage example: + class Credentials(namedtuple.abc): + _fields = 'username password' + def __str__(self): + return ('{0.__class__.__name__}' + '(username={0.username}, password=...)'.format(self)) + print(Credentials("alice", "Alice's password")) + +For more advanced examples -- see below the "if __name__ == '__main__':". +""" + +import collections +from abc import ABCMeta, abstractproperty +from functools import wraps +from sys import version_info + +__all__ = ('namedtuple',) +_namedtuple = collections.namedtuple + + +class _NamedTupleABCMeta(ABCMeta): + '''The metaclass for the abstract base class + mix-in for named tuples.''' + def __new__(mcls, name, bases, namespace): + fields = namespace.get('_fields') + for base in bases: + if fields is not None: + break + fields = getattr(base, '_fields', None) + if not isinstance(fields, abstractproperty): + basetuple = _namedtuple(name, fields) + bases = (basetuple,) + bases + namespace.pop('_fields', None) + namespace.setdefault('__doc__', basetuple.__doc__) + namespace.setdefault('__slots__', ()) + return ABCMeta.__new__(mcls, name, bases, namespace) + + +class _NamedTupleABC(metaclass=_NamedTupleABCMeta): + '''The abstract base class + mix-in for named tuples.''' + _fields = abstractproperty() + + +_namedtuple.abc = _NamedTupleABC +#_NamedTupleABC.register(type(version_info)) # (and similar, in the future...) + +@wraps(_namedtuple) +def namedtuple(*args, **kwargs): + '''Named tuple factory with namedtuple.abc subclass registration.''' + cls = _namedtuple(*args, **kwargs) + _NamedTupleABC.register(cls) + return cls + +collections.namedtuple = namedtuple + + + + +if __name__ == '__main__': + + '''Examples and explanations''' + + # Simple usage + + class MyRecord(namedtuple.abc): + _fields = 'x y z' # such form will be transformed into ('x', 'y', 'z') + def _my_custom_method(self): + return list(self._asdict().items()) + # (the '_fields' attribute belongs to the named tuple public API anyway) + + rec = MyRecord(1, 2, 3) + print(rec) + print(rec._my_custom_method()) + print(rec._replace(y=222)) + print(rec._replace(y=222)._my_custom_method()) + + # Custom abstract classes... + + class MyAbstractRecord(namedtuple.abc): + def _my_custom_method(self): + return list(self._asdict().items()) + + try: + MyAbstractRecord() # (abstract classes cannot be instantiated) + except TypeError as exc: + print(exc) + + class AnotherAbstractRecord(MyAbstractRecord): + def __str__(self): + return '<<<{0}>>>'.format(super(AnotherAbstractRecord, + self).__str__()) + + # ...and their non-abstract subclasses + + class MyRecord2(MyAbstractRecord): + _fields = 'a, b' + + class MyRecord3(AnotherAbstractRecord): + _fields = 'p', 'q', 'r' + + rec2 = MyRecord2('foo', 'bar') + print(rec2) + print(rec2._my_custom_method()) + print(rec2._replace(b=222)) + print(rec2._replace(b=222)._my_custom_method()) + + rec3 = MyRecord3('foo', 'bar', 'baz') + print(rec3) + print(rec3._my_custom_method()) + print(rec3._replace(q=222)) + print(rec3._replace(q=222)._my_custom_method()) + + # You can also subclass non-abstract ones... + + class MyRecord33(MyRecord3): + def __str__(self): + return '< {0!r}, ..., {0!r} >'.format(self.p, self.r) + + rec33 = MyRecord33('foo', 'bar', 'baz') + print(rec33) + print(rec33._my_custom_method()) + print(rec33._replace(q=222)) + print(rec33._replace(q=222)._my_custom_method()) + + # ...and even override the magic '_fields' attribute again + + class MyRecord345(MyRecord3): + _fields = 'e f g h i j k' + + rec345 = MyRecord345(1, 2, 3, 4, 3, 2, 1) + print(rec345) + print(rec345._my_custom_method()) + print(rec345._replace(f=222)) + print(rec345._replace(f=222)._my_custom_method()) + + # Mixing-in some other classes is also possible: + + class MyMixIn(object): + def method(self): + return "MyMixIn.method() called" + def _my_custom_method(self): + return "MyMixIn._my_custom_method() called" + def count(self, item): + return "MyMixIn.count({0}) called".format(item) + def _asdict(self): # (cannot override a namedtuple method, see below) + return "MyMixIn._asdict() called" + + class MyRecord4(MyRecord33, MyMixIn): # mix-in on the right + _fields = 'j k l x' + + class MyRecord5(MyMixIn, MyRecord33): # mix-in on the left + _fields = 'j k l x y' + + rec4 = MyRecord4(1, 2, 3, 2) + print(rec4) + print(rec4.method()) + print(rec4._my_custom_method()) # MyRecord33's + print(rec4.count(2)) # tuple's + print(rec4._replace(k=222)) + print(rec4._replace(k=222).method()) + print(rec4._replace(k=222)._my_custom_method()) # MyRecord33's + print(rec4._replace(k=222).count(8)) # tuple's + + rec5 = MyRecord5(1, 2, 3, 2, 1) + print(rec5) + print(rec5.method()) + print(rec5._my_custom_method()) # MyMixIn's + print(rec5.count(2)) # MyMixIn's + print(rec5._replace(k=222)) + print(rec5._replace(k=222).method()) + print(rec5._replace(k=222)._my_custom_method()) # MyMixIn's + print(rec5._replace(k=222).count(2)) # MyMixIn's + + # Note that behavior: the standard namedtuple methods cannot be + # overridden by a foreign mix-in -- even if the mix-in is declared + # as the leftmost base class (but, obviously, you can override them + # in the defined class or its subclasses): + + print(rec4._asdict()) # (returns a dict, not "MyMixIn._asdict() called") + print(rec5._asdict()) # (returns a dict, not "MyMixIn._asdict() called") + + class MyRecord6(MyRecord33): + _fields = 'j k l x y z' + def _asdict(self): + return "MyRecord6._asdict() called" + rec6 = MyRecord6(1, 2, 3, 1, 2, 3) + print(rec6._asdict()) # (this returns "MyRecord6._asdict() called") + + # All that record classes are real subclasses of namedtuple.abc: + + assert issubclass(MyRecord, namedtuple.abc) + assert issubclass(MyAbstractRecord, namedtuple.abc) + assert issubclass(AnotherAbstractRecord, namedtuple.abc) + assert issubclass(MyRecord2, namedtuple.abc) + assert issubclass(MyRecord3, namedtuple.abc) + assert issubclass(MyRecord33, namedtuple.abc) + assert issubclass(MyRecord345, namedtuple.abc) + assert issubclass(MyRecord4, namedtuple.abc) + assert issubclass(MyRecord5, namedtuple.abc) + assert issubclass(MyRecord6, namedtuple.abc) + + # ...but abstract ones are not subclasses of tuple + # (and this is what you probably want): + + assert not issubclass(MyAbstractRecord, tuple) + assert not issubclass(AnotherAbstractRecord, tuple) + + assert issubclass(MyRecord, tuple) + assert issubclass(MyRecord2, tuple) + assert issubclass(MyRecord3, tuple) + assert issubclass(MyRecord33, tuple) + assert issubclass(MyRecord345, tuple) + assert issubclass(MyRecord4, tuple) + assert issubclass(MyRecord5, tuple) + assert issubclass(MyRecord6, tuple) + + # Named tuple classes created with namedtuple() factory function + # (in the "traditional" way) are registered as "virtual" subclasses + # of namedtuple.abc: + + MyTuple = namedtuple('MyTuple', 'a b c') + mt = MyTuple(1, 2, 3) + assert issubclass(MyTuple, namedtuple.abc) + assert isinstance(mt, namedtuple.abc) diff --git a/poky/bitbake/lib/bb/parse/__init__.py b/poky/bitbake/lib/bb/parse/__init__.py new file mode 100644 index 0000000..3476095 --- /dev/null +++ b/poky/bitbake/lib/bb/parse/__init__.py @@ -0,0 +1,167 @@ +""" +BitBake Parsers + +File parsers for the BitBake build tools. + +""" + + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig +# + +handlers = [] + +import errno +import logging +import os +import stat +import bb +import bb.utils +import bb.siggen + +logger = logging.getLogger("BitBake.Parsing") + +class ParseError(Exception): + """Exception raised when parsing fails""" + def __init__(self, msg, filename, lineno=0): + self.msg = msg + self.filename = filename + self.lineno = lineno + Exception.__init__(self, msg, filename, lineno) + + def __str__(self): + if self.lineno: + return "ParseError at %s:%d: %s" % (self.filename, self.lineno, self.msg) + else: + return "ParseError in %s: %s" % (self.filename, self.msg) + +class SkipRecipe(Exception): + """Exception raised to skip this recipe""" + +class SkipPackage(SkipRecipe): + """Exception raised to skip this recipe (use SkipRecipe in new code)""" + +__mtime_cache = {} +def cached_mtime(f): + if f not in __mtime_cache: + __mtime_cache[f] = os.stat(f)[stat.ST_MTIME] + return __mtime_cache[f] + +def cached_mtime_noerror(f): + if f not in __mtime_cache: + try: + __mtime_cache[f] = os.stat(f)[stat.ST_MTIME] + except OSError: + return 0 + return __mtime_cache[f] + +def update_mtime(f): + try: + __mtime_cache[f] = os.stat(f)[stat.ST_MTIME] + except OSError: + if f in __mtime_cache: + del __mtime_cache[f] + return 0 + return __mtime_cache[f] + +def update_cache(f): + if f in __mtime_cache: + logger.debug("Updating mtime cache for %s" % f) + update_mtime(f) + +def clear_cache(): + global __mtime_cache + __mtime_cache = {} + +def mark_dependency(d, f): + if f.startswith('./'): + f = "%s/%s" % (os.getcwd(), f[2:]) + deps = (d.getVar('__depends', False) or []) + s = (f, cached_mtime_noerror(f)) + if s not in deps: + deps.append(s) + d.setVar('__depends', deps) + +def check_dependency(d, f): + s = (f, cached_mtime_noerror(f)) + deps = (d.getVar('__depends', False) or []) + return s in deps + +def supports(fn, data): + """Returns true if we have a handler for this file, false otherwise""" + for h in handlers: + if h['supports'](fn, data): + return 1 + return 0 + +def handle(fn, data, include = 0): + """Call the handler that is appropriate for this file""" + for h in handlers: + if h['supports'](fn, data): + with data.inchistory.include(fn): + return h['handle'](fn, data, include) + raise ParseError("not a BitBake file", fn) + +def init(fn, data): + for h in handlers: + if h['supports'](fn): + return h['init'](data) + +def init_parser(d): + if hasattr(bb.parse, "siggen"): + bb.parse.siggen.exit() + bb.parse.siggen = bb.siggen.init(d) + +def resolve_file(fn, d): + if not os.path.isabs(fn): + bbpath = d.getVar("BBPATH") + newfn, attempts = bb.utils.which(bbpath, fn, history=True) + for af in attempts: + mark_dependency(d, af) + if not newfn: + raise IOError(errno.ENOENT, "file %s not found in %s" % (fn, bbpath)) + fn = newfn + else: + mark_dependency(d, fn) + + if not os.path.isfile(fn): + raise IOError(errno.ENOENT, "file %s not found" % fn) + + return fn + +# Used by OpenEmbedded metadata +__pkgsplit_cache__={} +def vars_from_file(mypkg, d): + if not mypkg or not mypkg.endswith((".bb", ".bbappend")): + return (None, None, None) + if mypkg in __pkgsplit_cache__: + return __pkgsplit_cache__[mypkg] + + myfile = os.path.splitext(os.path.basename(mypkg)) + parts = myfile[0].split('_') + __pkgsplit_cache__[mypkg] = parts + if len(parts) > 3: + raise ParseError("Unable to generate default variables from filename (too many underscores)", mypkg) + exp = 3 - len(parts) + tmplist = [] + while exp != 0: + exp -= 1 + tmplist.append(None) + parts.extend(tmplist) + return parts + +def get_file_depends(d): + '''Return the dependent files''' + dep_files = [] + depends = d.getVar('__base_depends', False) or [] + depends = depends + (d.getVar('__depends', False) or []) + for (fn, _) in depends: + dep_files.append(os.path.abspath(fn)) + return " ".join(dep_files) + +from bb.parse.parse_py import __version__, ConfHandler, BBHandler diff --git a/poky/bitbake/lib/bb/parse/ast.py b/poky/bitbake/lib/bb/parse/ast.py new file mode 100644 index 0000000..9e0a0f5 --- /dev/null +++ b/poky/bitbake/lib/bb/parse/ast.py @@ -0,0 +1,439 @@ +""" + AbstractSyntaxTree classes for the Bitbake language +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2009 Holger Hans Peter Freyther +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import bb +from bb import methodpool +from bb.parse import logger + +class StatementGroup(list): + def eval(self, data): + for statement in self: + statement.eval(data) + +class AstNode(object): + def __init__(self, filename, lineno): + self.filename = filename + self.lineno = lineno + +class IncludeNode(AstNode): + def __init__(self, filename, lineno, what_file, force): + AstNode.__init__(self, filename, lineno) + self.what_file = what_file + self.force = force + + def eval(self, data): + """ + Include the file and evaluate the statements + """ + s = data.expand(self.what_file) + logger.debug2("CONF %s:%s: including %s", self.filename, self.lineno, s) + + # TODO: Cache those includes... maybe not here though + if self.force: + bb.parse.ConfHandler.include(self.filename, s, self.lineno, data, "include required") + else: + bb.parse.ConfHandler.include(self.filename, s, self.lineno, data, False) + +class ExportNode(AstNode): + def __init__(self, filename, lineno, var): + AstNode.__init__(self, filename, lineno) + self.var = var + + def eval(self, data): + data.setVarFlag(self.var, "export", 1, op = 'exported') + +class UnsetNode(AstNode): + def __init__(self, filename, lineno, var): + AstNode.__init__(self, filename, lineno) + self.var = var + + def eval(self, data): + loginfo = { + 'variable': self.var, + 'file': self.filename, + 'line': self.lineno, + } + data.delVar(self.var,**loginfo) + +class UnsetFlagNode(AstNode): + def __init__(self, filename, lineno, var, flag): + AstNode.__init__(self, filename, lineno) + self.var = var + self.flag = flag + + def eval(self, data): + loginfo = { + 'variable': self.var, + 'file': self.filename, + 'line': self.lineno, + } + data.delVarFlag(self.var, self.flag, **loginfo) + +class DataNode(AstNode): + """ + Various data related updates. For the sake of sanity + we have one class doing all this. This means that all + this need to be re-evaluated... we might be able to do + that faster with multiple classes. + """ + def __init__(self, filename, lineno, groupd): + AstNode.__init__(self, filename, lineno) + self.groupd = groupd + + def getFunc(self, key, data): + if 'flag' in self.groupd and self.groupd['flag'] is not None: + return data.getVarFlag(key, self.groupd['flag'], expand=False, noweakdefault=True) + else: + return data.getVar(key, False, noweakdefault=True, parsing=True) + + def eval(self, data): + groupd = self.groupd + key = groupd["var"] + loginfo = { + 'variable': key, + 'file': self.filename, + 'line': self.lineno, + } + if "exp" in groupd and groupd["exp"] is not None: + data.setVarFlag(key, "export", 1, op = 'exported', **loginfo) + + op = "set" + if "ques" in groupd and groupd["ques"] is not None: + val = self.getFunc(key, data) + op = "set?" + if val is None: + val = groupd["value"] + elif "colon" in groupd and groupd["colon"] is not None: + e = data.createCopy() + op = "immediate" + val = e.expand(groupd["value"], key + "[:=]") + elif "append" in groupd and groupd["append"] is not None: + op = "append" + val = "%s %s" % ((self.getFunc(key, data) or ""), groupd["value"]) + elif "prepend" in groupd and groupd["prepend"] is not None: + op = "prepend" + val = "%s %s" % (groupd["value"], (self.getFunc(key, data) or "")) + elif "postdot" in groupd and groupd["postdot"] is not None: + op = "postdot" + val = "%s%s" % ((self.getFunc(key, data) or ""), groupd["value"]) + elif "predot" in groupd and groupd["predot"] is not None: + op = "predot" + val = "%s%s" % (groupd["value"], (self.getFunc(key, data) or "")) + else: + val = groupd["value"] + + if ":append" in key or ":remove" in key or ":prepend" in key: + if op in ["append", "prepend", "postdot", "predot", "ques"]: + bb.warn(key + " " + groupd[op] + " is not a recommended operator combination, please replace it.") + + flag = None + if 'flag' in groupd and groupd['flag'] is not None: + flag = groupd['flag'] + elif groupd["lazyques"]: + flag = "_defaultval" + + loginfo['op'] = op + loginfo['detail'] = groupd["value"] + + if flag: + data.setVarFlag(key, flag, val, **loginfo) + else: + data.setVar(key, val, parsing=True, **loginfo) + +class MethodNode(AstNode): + tr_tbl = str.maketrans('/.+-@%&~', '________') + + def __init__(self, filename, lineno, func_name, body, python, fakeroot): + AstNode.__init__(self, filename, lineno) + self.func_name = func_name + self.body = body + self.python = python + self.fakeroot = fakeroot + + def eval(self, data): + text = '\n'.join(self.body) + funcname = self.func_name + if self.func_name == "__anonymous": + funcname = ("__anon_%s_%s" % (self.lineno, self.filename.translate(MethodNode.tr_tbl))) + self.python = True + text = "def %s(d):\n" % (funcname) + text + bb.methodpool.insert_method(funcname, text, self.filename, self.lineno - len(self.body) - 1) + anonfuncs = data.getVar('__BBANONFUNCS', False) or [] + anonfuncs.append(funcname) + data.setVar('__BBANONFUNCS', anonfuncs) + if data.getVar(funcname, False): + # clean up old version of this piece of metadata, as its + # flags could cause problems + data.delVarFlag(funcname, 'python') + data.delVarFlag(funcname, 'fakeroot') + if self.python: + data.setVarFlag(funcname, "python", "1") + if self.fakeroot: + data.setVarFlag(funcname, "fakeroot", "1") + data.setVarFlag(funcname, "func", 1) + data.setVar(funcname, text, parsing=True) + data.setVarFlag(funcname, 'filename', self.filename) + data.setVarFlag(funcname, 'lineno', str(self.lineno - len(self.body))) + +class PythonMethodNode(AstNode): + def __init__(self, filename, lineno, function, modulename, body): + AstNode.__init__(self, filename, lineno) + self.function = function + self.modulename = modulename + self.body = body + + def eval(self, data): + # Note we will add root to parsedmethods after having parse + # 'this' file. This means we will not parse methods from + # bb classes twice + text = '\n'.join(self.body) + bb.methodpool.insert_method(self.modulename, text, self.filename, self.lineno - len(self.body) - 1) + data.setVarFlag(self.function, "func", 1) + data.setVarFlag(self.function, "python", 1) + data.setVar(self.function, text, parsing=True) + data.setVarFlag(self.function, 'filename', self.filename) + data.setVarFlag(self.function, 'lineno', str(self.lineno - len(self.body) - 1)) + +class ExportFuncsNode(AstNode): + def __init__(self, filename, lineno, fns, classname): + AstNode.__init__(self, filename, lineno) + self.n = fns.split() + self.classname = classname + + def eval(self, data): + + for func in self.n: + calledfunc = self.classname + "_" + func + + if data.getVar(func, False) and not data.getVarFlag(func, 'export_func', False): + continue + + if data.getVar(func, False): + data.setVarFlag(func, 'python', None) + data.setVarFlag(func, 'func', None) + + for flag in [ "func", "python" ]: + if data.getVarFlag(calledfunc, flag, False): + data.setVarFlag(func, flag, data.getVarFlag(calledfunc, flag, False)) + for flag in ["dirs", "cleandirs", "fakeroot"]: + if data.getVarFlag(func, flag, False): + data.setVarFlag(calledfunc, flag, data.getVarFlag(func, flag, False)) + data.setVarFlag(func, "filename", "autogenerated") + data.setVarFlag(func, "lineno", 1) + + if data.getVarFlag(calledfunc, "python", False): + data.setVar(func, " bb.build.exec_func('" + calledfunc + "', d)\n", parsing=True) + else: + if "-" in self.classname: + bb.fatal("The classname %s contains a dash character and is calling an sh function %s using EXPORT_FUNCTIONS. Since a dash is illegal in sh function names, this cannot work, please rename the class or don't use EXPORT_FUNCTIONS." % (self.classname, calledfunc)) + data.setVar(func, " " + calledfunc + "\n", parsing=True) + data.setVarFlag(func, 'export_func', '1') + +class AddTaskNode(AstNode): + def __init__(self, filename, lineno, func, before, after): + AstNode.__init__(self, filename, lineno) + self.func = func + self.before = before + self.after = after + + def eval(self, data): + bb.build.addtask(self.func, self.before, self.after, data) + +class DelTaskNode(AstNode): + def __init__(self, filename, lineno, tasks): + AstNode.__init__(self, filename, lineno) + self.tasks = tasks + + def eval(self, data): + tasks = data.expand(self.tasks).split() + for task in tasks: + bb.build.deltask(task, data) + +class BBHandlerNode(AstNode): + def __init__(self, filename, lineno, fns): + AstNode.__init__(self, filename, lineno) + self.hs = fns.split() + + def eval(self, data): + bbhands = data.getVar('__BBHANDLERS', False) or [] + for h in self.hs: + bbhands.append(h) + data.setVarFlag(h, "handler", 1) + data.setVar('__BBHANDLERS', bbhands) + +class InheritNode(AstNode): + def __init__(self, filename, lineno, classes): + AstNode.__init__(self, filename, lineno) + self.classes = classes + + def eval(self, data): + bb.parse.BBHandler.inherit(self.classes, self.filename, self.lineno, data) + +def handleInclude(statements, filename, lineno, m, force): + statements.append(IncludeNode(filename, lineno, m.group(1), force)) + +def handleExport(statements, filename, lineno, m): + statements.append(ExportNode(filename, lineno, m.group(1))) + +def handleUnset(statements, filename, lineno, m): + statements.append(UnsetNode(filename, lineno, m.group(1))) + +def handleUnsetFlag(statements, filename, lineno, m): + statements.append(UnsetFlagNode(filename, lineno, m.group(1), m.group(2))) + +def handleData(statements, filename, lineno, groupd): + statements.append(DataNode(filename, lineno, groupd)) + +def handleMethod(statements, filename, lineno, func_name, body, python, fakeroot): + statements.append(MethodNode(filename, lineno, func_name, body, python, fakeroot)) + +def handlePythonMethod(statements, filename, lineno, funcname, modulename, body): + statements.append(PythonMethodNode(filename, lineno, funcname, modulename, body)) + +def handleExportFuncs(statements, filename, lineno, m, classname): + statements.append(ExportFuncsNode(filename, lineno, m.group(1), classname)) + +def handleAddTask(statements, filename, lineno, m): + func = m.group("func") + before = m.group("before") + after = m.group("after") + if func is None: + return + + statements.append(AddTaskNode(filename, lineno, func, before, after)) + +def handleDelTask(statements, filename, lineno, m): + func = m.group(1) + if func is None: + return + + statements.append(DelTaskNode(filename, lineno, func)) + +def handleBBHandlers(statements, filename, lineno, m): + statements.append(BBHandlerNode(filename, lineno, m.group(1))) + +def handleInherit(statements, filename, lineno, m): + classes = m.group(1) + statements.append(InheritNode(filename, lineno, classes)) + +def runAnonFuncs(d): + code = [] + for funcname in d.getVar("__BBANONFUNCS", False) or []: + code.append("%s(d)" % funcname) + bb.utils.better_exec("\n".join(code), {"d": d}) + +def finalize(fn, d, variant = None): + saved_handlers = bb.event.get_handlers().copy() + try: + # Found renamed variables. Exit immediately + if d.getVar("_FAILPARSINGERRORHANDLED", False) == True: + raise bb.BBHandledException() + + for var in d.getVar('__BBHANDLERS', False) or []: + # try to add the handler + handlerfn = d.getVarFlag(var, "filename", False) + if not handlerfn: + bb.fatal("Undefined event handler function '%s'" % var) + handlerln = int(d.getVarFlag(var, "lineno", False)) + bb.event.register(var, d.getVar(var, False), (d.getVarFlag(var, "eventmask") or "").split(), handlerfn, handlerln, data=d) + + bb.event.fire(bb.event.RecipePreFinalise(fn), d) + + bb.data.expandKeys(d) + + bb.event.fire(bb.event.RecipePostKeyExpansion(fn), d) + + runAnonFuncs(d) + + tasklist = d.getVar('__BBTASKS', False) or [] + bb.event.fire(bb.event.RecipeTaskPreProcess(fn, list(tasklist)), d) + bb.build.add_tasks(tasklist, d) + + bb.parse.siggen.finalise(fn, d, variant) + + d.setVar('BBINCLUDED', bb.parse.get_file_depends(d)) + + bb.event.fire(bb.event.RecipeParsed(fn), d) + finally: + bb.event.set_handlers(saved_handlers) + +def _create_variants(datastores, names, function, onlyfinalise): + def create_variant(name, orig_d, arg = None): + if onlyfinalise and name not in onlyfinalise: + return + new_d = bb.data.createCopy(orig_d) + function(arg or name, new_d) + datastores[name] = new_d + + for variant in list(datastores.keys()): + for name in names: + if not variant: + # Based on main recipe + create_variant(name, datastores[""]) + else: + create_variant("%s-%s" % (variant, name), datastores[variant], name) + +def multi_finalize(fn, d): + appends = (d.getVar("__BBAPPEND") or "").split() + for append in appends: + logger.debug("Appending .bbappend file %s to %s", append, fn) + bb.parse.BBHandler.handle(append, d, True) + + onlyfinalise = d.getVar("__ONLYFINALISE", False) + + safe_d = d + d = bb.data.createCopy(safe_d) + try: + finalize(fn, d) + except bb.parse.SkipRecipe as e: + d.setVar("__SKIPPED", e.args[0]) + datastores = {"": safe_d} + + extended = d.getVar("BBCLASSEXTEND") or "" + if extended: + # the following is to support bbextends with arguments, for e.g. multilib + # an example is as follows: + # BBCLASSEXTEND = "multilib:lib32" + # it will create foo-lib32, inheriting multilib.bbclass and set + # BBEXTENDCURR to "multilib" and BBEXTENDVARIANT to "lib32" + extendedmap = {} + variantmap = {} + + for ext in extended.split(): + eext = ext.split(':', 2) + if len(eext) > 1: + extendedmap[ext] = eext[0] + variantmap[ext] = eext[1] + else: + extendedmap[ext] = ext + + pn = d.getVar("PN") + def extendfunc(name, d): + if name != extendedmap[name]: + d.setVar("BBEXTENDCURR", extendedmap[name]) + d.setVar("BBEXTENDVARIANT", variantmap[name]) + else: + d.setVar("PN", "%s-%s" % (pn, name)) + bb.parse.BBHandler.inherit(extendedmap[name], fn, 0, d) + + safe_d.setVar("BBCLASSEXTEND", extended) + _create_variants(datastores, extendedmap.keys(), extendfunc, onlyfinalise) + + for variant in datastores.keys(): + if variant: + try: + if not onlyfinalise or variant in onlyfinalise: + finalize(fn, datastores[variant], variant) + except bb.parse.SkipRecipe as e: + datastores[variant].setVar("__SKIPPED", e.args[0]) + + datastores[""] = d + return datastores diff --git a/poky/bitbake/lib/bb/parse/parse_py/BBHandler.py b/poky/bitbake/lib/bb/parse/parse_py/BBHandler.py new file mode 100644 index 0000000..6841573 --- /dev/null +++ b/poky/bitbake/lib/bb/parse/parse_py/BBHandler.py @@ -0,0 +1,260 @@ +""" + class for handling .bb files + + Reads a .bb file and obtains its metadata + +""" + + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import re, bb, os +import bb.build, bb.utils, bb.data_smart + +from . import ConfHandler +from .. import resolve_file, ast, logger, ParseError +from .ConfHandler import include, init + +__func_start_regexp__ = re.compile(r"(((?Ppython(?=(\s|\()))|(?Pfakeroot(?=\s)))\s*)*(?P[\w\.\-\+\{\}\$:]+)?\s*\(\s*\)\s*{$" ) +__inherit_regexp__ = re.compile(r"inherit\s+(.+)" ) +__export_func_regexp__ = re.compile(r"EXPORT_FUNCTIONS\s+(.+)" ) +__addtask_regexp__ = re.compile(r"addtask\s+(?P\w+)\s*((before\s*(?P((.*(?=after))|(.*))))|(after\s*(?P((.*(?=before))|(.*)))))*") +__deltask_regexp__ = re.compile(r"deltask\s+(.+)") +__addhandler_regexp__ = re.compile(r"addhandler\s+(.+)" ) +__def_regexp__ = re.compile(r"def\s+(\w+).*:" ) +__python_func_regexp__ = re.compile(r"(\s+.*)|(^$)|(^#)" ) +__python_tab_regexp__ = re.compile(r" *\t") + +__infunc__ = [] +__inpython__ = False +__body__ = [] +__classname__ = "" + +cached_statements = {} + +def supports(fn, d): + """Return True if fn has a supported extension""" + return os.path.splitext(fn)[-1] in [".bb", ".bbclass", ".inc"] + +def inherit(files, fn, lineno, d): + __inherit_cache = d.getVar('__inherit_cache', False) or [] + files = d.expand(files).split() + for file in files: + if not os.path.isabs(file) and not file.endswith(".bbclass"): + file = os.path.join('classes', '%s.bbclass' % file) + + if not os.path.isabs(file): + bbpath = d.getVar("BBPATH") + abs_fn, attempts = bb.utils.which(bbpath, file, history=True) + for af in attempts: + if af != abs_fn: + bb.parse.mark_dependency(d, af) + if abs_fn: + file = abs_fn + + if not file in __inherit_cache: + logger.debug("Inheriting %s (from %s:%d)" % (file, fn, lineno)) + __inherit_cache.append( file ) + d.setVar('__inherit_cache', __inherit_cache) + include(fn, file, lineno, d, "inherit") + __inherit_cache = d.getVar('__inherit_cache', False) or [] + +def get_statements(filename, absolute_filename, base_name): + global cached_statements + + try: + return cached_statements[absolute_filename] + except KeyError: + with open(absolute_filename, 'r') as f: + statements = ast.StatementGroup() + + lineno = 0 + while True: + lineno = lineno + 1 + s = f.readline() + if not s: break + s = s.rstrip() + feeder(lineno, s, filename, base_name, statements) + + if __inpython__: + # add a blank line to close out any python definition + feeder(lineno, "", filename, base_name, statements, eof=True) + + if filename.endswith(".bbclass") or filename.endswith(".inc"): + cached_statements[absolute_filename] = statements + return statements + +def handle(fn, d, include): + global __func_start_regexp__, __inherit_regexp__, __export_func_regexp__, __addtask_regexp__, __addhandler_regexp__, __infunc__, __body__, __residue__, __classname__ + __body__ = [] + __infunc__ = [] + __classname__ = "" + __residue__ = [] + + base_name = os.path.basename(fn) + (root, ext) = os.path.splitext(base_name) + init(d) + + if ext == ".bbclass": + __classname__ = root + __inherit_cache = d.getVar('__inherit_cache', False) or [] + if not fn in __inherit_cache: + __inherit_cache.append(fn) + d.setVar('__inherit_cache', __inherit_cache) + + if include != 0: + oldfile = d.getVar('FILE', False) + else: + oldfile = None + + abs_fn = resolve_file(fn, d) + + # actual loading + statements = get_statements(fn, abs_fn, base_name) + + # DONE WITH PARSING... time to evaluate + if ext != ".bbclass" and abs_fn != oldfile: + d.setVar('FILE', abs_fn) + + try: + statements.eval(d) + except bb.parse.SkipRecipe: + d.setVar("__SKIPPED", True) + if include == 0: + return { "" : d } + + if __infunc__: + raise ParseError("Shell function %s is never closed" % __infunc__[0], __infunc__[1], __infunc__[2]) + if __residue__: + raise ParseError("Leftover unparsed (incomplete?) data %s from %s" % __residue__, fn) + + if ext != ".bbclass" and include == 0: + return ast.multi_finalize(fn, d) + + if ext != ".bbclass" and oldfile and abs_fn != oldfile: + d.setVar("FILE", oldfile) + + return d + +def feeder(lineno, s, fn, root, statements, eof=False): + global __func_start_regexp__, __inherit_regexp__, __export_func_regexp__, __addtask_regexp__, __addhandler_regexp__, __def_regexp__, __python_func_regexp__, __inpython__, __infunc__, __body__, bb, __residue__, __classname__ + + # Check tabs in python functions: + # - def py_funcname(): covered by __inpython__ + # - python(): covered by '__anonymous' == __infunc__[0] + # - python funcname(): covered by __infunc__[3] + if __inpython__ or (__infunc__ and ('__anonymous' == __infunc__[0] or __infunc__[3])): + tab = __python_tab_regexp__.match(s) + if tab: + bb.warn('python should use 4 spaces indentation, but found tabs in %s, line %s' % (root, lineno)) + + if __infunc__: + if s == '}': + __body__.append('') + ast.handleMethod(statements, fn, lineno, __infunc__[0], __body__, __infunc__[3], __infunc__[4]) + __infunc__ = [] + __body__ = [] + else: + __body__.append(s) + return + + if __inpython__: + m = __python_func_regexp__.match(s) + if m and not eof: + __body__.append(s) + return + else: + ast.handlePythonMethod(statements, fn, lineno, __inpython__, + root, __body__) + __body__ = [] + __inpython__ = False + + if eof: + return + + if s and s[0] == '#': + if len(__residue__) != 0 and __residue__[0][0] != "#": + bb.fatal("There is a comment on line %s of file %s:\n'''\n%s\n'''\nwhich is in the middle of a multiline expression. This syntax is invalid, please correct it." % (lineno, fn, s)) + + if len(__residue__) != 0 and __residue__[0][0] == "#" and (not s or s[0] != "#"): + bb.fatal("There is a confusing multiline partially commented expression on line %s of file %s:\n%s\nPlease clarify whether this is all a comment or should be parsed." % (lineno - len(__residue__), fn, "\n".join(__residue__))) + + if s and s[-1] == '\\': + __residue__.append(s[:-1]) + return + + s = "".join(__residue__) + s + __residue__ = [] + + # Skip empty lines + if s == '': + return + + # Skip comments + if s[0] == '#': + return + + m = __func_start_regexp__.match(s) + if m: + __infunc__ = [m.group("func") or "__anonymous", fn, lineno, m.group("py") is not None, m.group("fr") is not None] + return + + m = __def_regexp__.match(s) + if m: + __body__.append(s) + __inpython__ = m.group(1) + + return + + m = __export_func_regexp__.match(s) + if m: + ast.handleExportFuncs(statements, fn, lineno, m, __classname__) + return + + m = __addtask_regexp__.match(s) + if m: + if len(m.group().split()) == 2: + # Check and warn for "addtask task1 task2" + m2 = re.match(r"addtask\s+(?P\w+)(?P.*)", s) + if m2 and m2.group('ignores'): + logger.warning('addtask ignored: "%s"' % m2.group('ignores')) + + # Check and warn for "addtask task1 before task2 before task3", the + # similar to "after" + taskexpression = s.split() + for word in ('before', 'after'): + if taskexpression.count(word) > 1: + logger.warning("addtask contained multiple '%s' keywords, only one is supported" % word) + + # Check and warn for having task with exprssion as part of task name + for te in taskexpression: + if any( ( "%s_" % keyword ) in te for keyword in bb.data_smart.__setvar_keyword__ ): + raise ParseError("Task name '%s' contains a keyword which is not recommended/supported.\nPlease rename the task not to include the keyword.\n%s" % (te, ("\n".join(map(str, bb.data_smart.__setvar_keyword__)))), fn) + ast.handleAddTask(statements, fn, lineno, m) + return + + m = __deltask_regexp__.match(s) + if m: + ast.handleDelTask(statements, fn, lineno, m) + return + + m = __addhandler_regexp__.match(s) + if m: + ast.handleBBHandlers(statements, fn, lineno, m) + return + + m = __inherit_regexp__.match(s) + if m: + ast.handleInherit(statements, fn, lineno, m) + return + + return ConfHandler.feeder(lineno, s, fn, statements) + +# Add us to the handlers list +from .. import handlers +handlers.append({'supports': supports, 'handle': handle, 'init': init}) +del handlers diff --git a/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py new file mode 100644 index 0000000..451e68d --- /dev/null +++ b/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py @@ -0,0 +1,197 @@ +""" + class for handling configuration data files + + Reads a .conf file and obtains its metadata + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import errno +import re +import os +import bb.utils +from bb.parse import ParseError, resolve_file, ast, logger, handle + +__config_regexp__ = re.compile( r""" + ^ + (?Pexport\s+)? + (?P[a-zA-Z0-9\-_+.${}/~:]+?) + (\[(?P[a-zA-Z0-9\-_+.]+)\])? + + \s* ( + (?P:=) | + (?P\?\?=) | + (?P\?=) | + (?P\+=) | + (?P=\+) | + (?P=\.) | + (?P\.=) | + = + ) \s* + + (?!'[^']*'[^']*'$) + (?!\"[^\"]*\"[^\"]*\"$) + (?P['\"]) + (?P.*) + (?P=apo) + $ + """, re.X) +__include_regexp__ = re.compile( r"include\s+(.+)" ) +__require_regexp__ = re.compile( r"require\s+(.+)" ) +__export_regexp__ = re.compile( r"export\s+([a-zA-Z0-9\-_+.${}/~]+)$" ) +__unset_regexp__ = re.compile( r"unset\s+([a-zA-Z0-9\-_+.${}/~]+)$" ) +__unset_flag_regexp__ = re.compile( r"unset\s+([a-zA-Z0-9\-_+.${}/~]+)\[([a-zA-Z0-9\-_+.]+)\]$" ) + +def init(data): + return + +def supports(fn, d): + return fn[-5:] == ".conf" + +def include(parentfn, fns, lineno, data, error_out): + """ + error_out: A string indicating the verb (e.g. "include", "inherit") to be + used in a ParseError that will be raised if the file to be included could + not be included. Specify False to avoid raising an error in this case. + """ + fns = data.expand(fns) + parentfn = data.expand(parentfn) + + # "include" or "require" accept zero to n space-separated file names to include. + for fn in fns.split(): + include_single_file(parentfn, fn, lineno, data, error_out) + +def include_single_file(parentfn, fn, lineno, data, error_out): + """ + Helper function for include() which does not expand or split its parameters. + """ + if parentfn == fn: # prevent infinite recursion + return None + + if not os.path.isabs(fn): + dname = os.path.dirname(parentfn) + bbpath = "%s:%s" % (dname, data.getVar("BBPATH")) + abs_fn, attempts = bb.utils.which(bbpath, fn, history=True) + if abs_fn and bb.parse.check_dependency(data, abs_fn): + logger.warning("Duplicate inclusion for %s in %s" % (abs_fn, data.getVar('FILE'))) + for af in attempts: + bb.parse.mark_dependency(data, af) + if abs_fn: + fn = abs_fn + elif bb.parse.check_dependency(data, fn): + logger.warning("Duplicate inclusion for %s in %s" % (fn, data.getVar('FILE'))) + + try: + bb.parse.handle(fn, data, True) + except (IOError, OSError) as exc: + if exc.errno == errno.ENOENT: + if error_out: + raise ParseError("Could not %s file %s" % (error_out, fn), parentfn, lineno) + logger.debug2("CONF file '%s' not found", fn) + else: + if error_out: + raise ParseError("Could not %s file %s: %s" % (error_out, fn, exc.strerror), parentfn, lineno) + else: + raise ParseError("Error parsing %s: %s" % (fn, exc.strerror), parentfn, lineno) + +# We have an issue where a UI might want to enforce particular settings such as +# an empty DISTRO variable. If configuration files do something like assigning +# a weak default, it turns out to be very difficult to filter out these changes, +# particularly when the weak default might appear half way though parsing a chain +# of configuration files. We therefore let the UIs hook into configuration file +# parsing. This turns out to be a hard problem to solve any other way. +confFilters = [] + +def handle(fn, data, include): + init(data) + + if include == 0: + oldfile = None + else: + oldfile = data.getVar('FILE', False) + + abs_fn = resolve_file(fn, data) + with open(abs_fn, 'r') as f: + + statements = ast.StatementGroup() + lineno = 0 + while True: + lineno = lineno + 1 + s = f.readline() + if not s: + break + origlineno = lineno + origline = s + w = s.strip() + # skip empty lines + if not w: + continue + s = s.rstrip() + while s[-1] == '\\': + line = f.readline() + origline += line + s2 = line.rstrip() + lineno = lineno + 1 + if (not s2 or s2 and s2[0] != "#") and s[0] == "#" : + bb.fatal("There is a confusing multiline, partially commented expression starting on line %s of file %s:\n%s\nPlease clarify whether this is all a comment or should be parsed." % (origlineno, fn, origline)) + + s = s[:-1] + s2 + # skip comments + if s[0] == '#': + continue + feeder(lineno, s, abs_fn, statements) + + # DONE WITH PARSING... time to evaluate + data.setVar('FILE', abs_fn) + statements.eval(data) + if oldfile: + data.setVar('FILE', oldfile) + + for f in confFilters: + f(fn, data) + + return data + +def feeder(lineno, s, fn, statements): + m = __config_regexp__.match(s) + if m: + groupd = m.groupdict() + ast.handleData(statements, fn, lineno, groupd) + return + + m = __include_regexp__.match(s) + if m: + ast.handleInclude(statements, fn, lineno, m, False) + return + + m = __require_regexp__.match(s) + if m: + ast.handleInclude(statements, fn, lineno, m, True) + return + + m = __export_regexp__.match(s) + if m: + ast.handleExport(statements, fn, lineno, m) + return + + m = __unset_regexp__.match(s) + if m: + ast.handleUnset(statements, fn, lineno, m) + return + + m = __unset_flag_regexp__.match(s) + if m: + ast.handleUnsetFlag(statements, fn, lineno, m) + return + + raise ParseError("unparsed line: '%s'" % s, fn, lineno); + +# Add us to the handlers list +from bb.parse import handlers +handlers.append({'supports': supports, 'handle': handle, 'init': init}) +del handlers diff --git a/poky/bitbake/lib/bb/parse/parse_py/__init__.py b/poky/bitbake/lib/bb/parse/parse_py/__init__.py new file mode 100644 index 0000000..f508afa --- /dev/null +++ b/poky/bitbake/lib/bb/parse/parse_py/__init__.py @@ -0,0 +1,20 @@ +""" +BitBake Parsers + +File parsers for the BitBake build tools. + +""" + +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Based on functions from the base bb module, Copyright 2003 Holger Schurig +# + +from __future__ import absolute_import +from . import ConfHandler +from . import BBHandler + +__version__ = '1.0' diff --git a/poky/bitbake/lib/bb/persist_data.py b/poky/bitbake/lib/bb/persist_data.py new file mode 100644 index 0000000..ce84a15 --- /dev/null +++ b/poky/bitbake/lib/bb/persist_data.py @@ -0,0 +1,252 @@ +"""BitBake Persistent Data Store + +Used to store data in a central location such that other threads/tasks can +access them at some future date. Acts as a convenience wrapper around sqlite, +currently, providing a key/value store accessed by 'domain'. +""" + +# Copyright (C) 2007 Richard Purdie +# Copyright (C) 2010 Chris Larson +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import collections +import collections.abc +import contextlib +import functools +import logging +import os.path +import sqlite3 +import sys +from collections.abc import Mapping + +sqlversion = sqlite3.sqlite_version_info +if sqlversion[0] < 3 or (sqlversion[0] == 3 and sqlversion[1] < 3): + raise Exception("sqlite3 version 3.3.0 or later is required.") + + +logger = logging.getLogger("BitBake.PersistData") + +@functools.total_ordering +class SQLTable(collections.abc.MutableMapping): + class _Decorators(object): + @staticmethod + def retry(*, reconnect=True): + """ + Decorator that restarts a function if a database locked sqlite + exception occurs. If reconnect is True, the database connection + will be closed and reopened each time a failure occurs + """ + def retry_wrapper(f): + def wrap_func(self, *args, **kwargs): + # Reconnect if necessary + if self.connection is None and reconnect: + self.reconnect() + + count = 0 + while True: + try: + return f(self, *args, **kwargs) + except sqlite3.OperationalError as exc: + if count < 500 and ('is locked' in str(exc) or 'locking protocol' in str(exc)): + count = count + 1 + if reconnect: + self.reconnect() + continue + raise + return wrap_func + return retry_wrapper + + @staticmethod + def transaction(f): + """ + Decorator that starts a database transaction and creates a database + cursor for performing queries. If no exception is thrown, the + database results are committed. If an exception occurs, the database + is rolled back. In all cases, the cursor is closed after the + function ends. + + Note that the cursor is passed as an extra argument to the function + after `self` and before any of the normal arguments + """ + def wrap_func(self, *args, **kwargs): + # Context manager will COMMIT the database on success, + # or ROLLBACK on an exception + with self.connection: + # Automatically close the cursor when done + with contextlib.closing(self.connection.cursor()) as cursor: + return f(self, cursor, *args, **kwargs) + return wrap_func + + """Object representing a table/domain in the database""" + def __init__(self, cachefile, table): + self.cachefile = cachefile + self.table = table + + self.connection = None + self._execute_single("CREATE TABLE IF NOT EXISTS %s(key TEXT PRIMARY KEY NOT NULL, value TEXT);" % table) + + @_Decorators.retry(reconnect=False) + @_Decorators.transaction + def _setup_database(self, cursor): + cursor.execute("pragma synchronous = off;") + # Enable WAL and keep the autocheckpoint length small (the default is + # usually 1000). Persistent caches are usually read-mostly, so keeping + # this short will keep readers running quickly + cursor.execute("pragma journal_mode = WAL;") + cursor.execute("pragma wal_autocheckpoint = 100;") + + def reconnect(self): + if self.connection is not None: + self.connection.close() + self.connection = sqlite3.connect(self.cachefile, timeout=5) + self.connection.text_factory = str + self._setup_database() + + @_Decorators.retry() + @_Decorators.transaction + def _execute_single(self, cursor, *query): + """ + Executes a single query and discards the results. This correctly closes + the database cursor when finished + """ + cursor.execute(*query) + + @_Decorators.retry() + def _row_iter(self, f, *query): + """ + Helper function that returns a row iterator. Each time __next__ is + called on the iterator, the provided function is evaluated to determine + the return value + """ + class CursorIter(object): + def __init__(self, cursor): + self.cursor = cursor + + def __iter__(self): + return self + + def __next__(self): + row = self.cursor.fetchone() + if row is None: + self.cursor.close() + raise StopIteration + return f(row) + + def __enter__(self): + return self + + def __exit__(self, typ, value, traceback): + self.cursor.close() + return False + + cursor = self.connection.cursor() + try: + cursor.execute(*query) + return CursorIter(cursor) + except: + cursor.close() + + def __enter__(self): + self.connection.__enter__() + return self + + def __exit__(self, *excinfo): + self.connection.__exit__(*excinfo) + + @_Decorators.retry() + @_Decorators.transaction + def __getitem__(self, cursor, key): + cursor.execute("SELECT * from %s where key=?;" % self.table, [key]) + row = cursor.fetchone() + if row is not None: + return row[1] + raise KeyError(key) + + @_Decorators.retry() + @_Decorators.transaction + def __delitem__(self, cursor, key): + if key not in self: + raise KeyError(key) + cursor.execute("DELETE from %s where key=?;" % self.table, [key]) + + @_Decorators.retry() + @_Decorators.transaction + def __setitem__(self, cursor, key, value): + if not isinstance(key, str): + raise TypeError('Only string keys are supported') + elif not isinstance(value, str): + raise TypeError('Only string values are supported') + + # Ensure the entire transaction (including SELECT) executes under write lock + cursor.execute("BEGIN EXCLUSIVE") + + cursor.execute("SELECT * from %s where key=?;" % self.table, [key]) + row = cursor.fetchone() + if row is not None: + cursor.execute("UPDATE %s SET value=? WHERE key=?;" % self.table, [value, key]) + else: + cursor.execute("INSERT into %s(key, value) values (?, ?);" % self.table, [key, value]) + + @_Decorators.retry() + @_Decorators.transaction + def __contains__(self, cursor, key): + cursor.execute('SELECT * from %s where key=?;' % self.table, [key]) + return cursor.fetchone() is not None + + @_Decorators.retry() + @_Decorators.transaction + def __len__(self, cursor): + cursor.execute("SELECT COUNT(key) FROM %s;" % self.table) + row = cursor.fetchone() + if row is not None: + return row[0] + + def __iter__(self): + return self._row_iter(lambda row: row[0], "SELECT key from %s;" % self.table) + + def __lt__(self, other): + if not isinstance(other, Mapping): + raise NotImplementedError() + + return len(self) < len(other) + + def get_by_pattern(self, pattern): + return self._row_iter(lambda row: row[1], "SELECT * FROM %s WHERE key LIKE ?;" % + self.table, [pattern]) + + def values(self): + return list(self.itervalues()) + + def itervalues(self): + return self._row_iter(lambda row: row[0], "SELECT value FROM %s;" % + self.table) + + def items(self): + return list(self.iteritems()) + + def iteritems(self): + return self._row_iter(lambda row: (row[0], row[1]), "SELECT * FROM %s;" % + self.table) + + @_Decorators.retry() + @_Decorators.transaction + def clear(self, cursor): + cursor.execute("DELETE FROM %s;" % self.table) + + def has_key(self, key): + return key in self + +def persist(domain, d): + """Convenience factory for SQLTable objects based upon metadata""" + import bb.utils + cachedir = (d.getVar("PERSISTENT_DIR") or + d.getVar("CACHE")) + if not cachedir: + logger.critical("Please set the 'PERSISTENT_DIR' or 'CACHE' variable") + sys.exit(1) + + bb.utils.mkdirhier(cachedir) + cachefile = os.path.join(cachedir, "bb_persist_data.sqlite3") + return SQLTable(cachefile, domain) diff --git a/poky/bitbake/lib/bb/process.py b/poky/bitbake/lib/bb/process.py new file mode 100644 index 0000000..4c7b6d3 --- /dev/null +++ b/poky/bitbake/lib/bb/process.py @@ -0,0 +1,190 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import logging +import signal +import subprocess +import errno +import select +import bb + +logger = logging.getLogger('BitBake.Process') + +def subprocess_setup(): + # Python installs a SIGPIPE handler by default. This is usually not what + # non-Python subprocesses expect. + signal.signal(signal.SIGPIPE, signal.SIG_DFL) + +class CmdError(RuntimeError): + def __init__(self, command, msg=None): + self.command = command + self.msg = msg + + def __str__(self): + if not isinstance(self.command, str): + cmd = subprocess.list2cmdline(self.command) + else: + cmd = self.command + + msg = "Execution of '%s' failed" % cmd + if self.msg: + msg += ': %s' % self.msg + return msg + +class NotFoundError(CmdError): + def __str__(self): + return CmdError.__str__(self) + ": command not found" + +class ExecutionError(CmdError): + def __init__(self, command, exitcode, stdout = None, stderr = None): + CmdError.__init__(self, command) + self.exitcode = exitcode + self.stdout = stdout + self.stderr = stderr + self.extra_message = None + + def __str__(self): + message = "" + if self.stderr: + message += self.stderr + if self.stdout: + message += self.stdout + if message: + message = ":\n" + message + return (CmdError.__str__(self) + + " with exit code %s" % self.exitcode + message + (self.extra_message or "")) + +class Popen(subprocess.Popen): + defaults = { + "close_fds": True, + "preexec_fn": subprocess_setup, + "stdout": subprocess.PIPE, + "stderr": subprocess.PIPE, + "stdin": subprocess.PIPE, + "shell": False, + } + + def __init__(self, *args, **kwargs): + options = dict(self.defaults) + options.update(kwargs) + subprocess.Popen.__init__(self, *args, **options) + +def _logged_communicate(pipe, log, input, extrafiles): + if pipe.stdin: + if input is not None: + pipe.stdin.write(input) + pipe.stdin.close() + + outdata, errdata = [], [] + rin = [] + + if pipe.stdout is not None: + bb.utils.nonblockingfd(pipe.stdout.fileno()) + rin.append(pipe.stdout) + if pipe.stderr is not None: + bb.utils.nonblockingfd(pipe.stderr.fileno()) + rin.append(pipe.stderr) + for fobj, _ in extrafiles: + bb.utils.nonblockingfd(fobj.fileno()) + rin.append(fobj) + + def readextras(selected): + for fobj, func in extrafiles: + if fobj in selected: + try: + data = fobj.read() + except IOError as err: + if err.errno == errno.EAGAIN or err.errno == errno.EWOULDBLOCK: + data = None + if data is not None: + func(data) + + def read_all_pipes(log, rin, outdata, errdata): + rlist = rin + stdoutbuf = b"" + stderrbuf = b"" + + try: + r,w,e = select.select (rlist, [], [], 1) + except OSError as e: + if e.errno != errno.EINTR: + raise + + readextras(r) + + if pipe.stdout in r: + data = stdoutbuf + pipe.stdout.read() + if data is not None and len(data) > 0: + try: + data = data.decode("utf-8") + outdata.append(data) + log.write(data) + log.flush() + stdoutbuf = b"" + except UnicodeDecodeError: + stdoutbuf = data + + if pipe.stderr in r: + data = stderrbuf + pipe.stderr.read() + if data is not None and len(data) > 0: + try: + data = data.decode("utf-8") + errdata.append(data) + log.write(data) + log.flush() + stderrbuf = b"" + except UnicodeDecodeError: + stderrbuf = data + + try: + # Read all pipes while the process is open + while pipe.poll() is None: + read_all_pipes(log, rin, outdata, errdata) + + # Process closed, drain all pipes... + read_all_pipes(log, rin, outdata, errdata) + finally: + log.flush() + + if pipe.stdout is not None: + pipe.stdout.close() + if pipe.stderr is not None: + pipe.stderr.close() + return ''.join(outdata), ''.join(errdata) + +def run(cmd, input=None, log=None, extrafiles=None, **options): + """Convenience function to run a command and return its output, raising an + exception when the command fails""" + + if not extrafiles: + extrafiles = [] + + if isinstance(cmd, str) and not "shell" in options: + options["shell"] = True + + try: + pipe = Popen(cmd, **options) + except OSError as exc: + if exc.errno == 2: + raise NotFoundError(cmd) + else: + raise CmdError(cmd, exc) + + if log: + stdout, stderr = _logged_communicate(pipe, log, input, extrafiles) + else: + stdout, stderr = pipe.communicate(input) + if not stdout is None: + stdout = stdout.decode("utf-8") + if not stderr is None: + stderr = stderr.decode("utf-8") + + if pipe.returncode != 0: + if log: + # Don't duplicate the output in the exception if logging it + raise ExecutionError(cmd, pipe.returncode, None, None) + raise ExecutionError(cmd, pipe.returncode, stdout, stderr) + return stdout, stderr diff --git a/poky/bitbake/lib/bb/progress.py b/poky/bitbake/lib/bb/progress.py new file mode 100644 index 0000000..9518be7 --- /dev/null +++ b/poky/bitbake/lib/bb/progress.py @@ -0,0 +1,310 @@ +""" +BitBake progress handling code +""" + +# Copyright (C) 2016 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import re +import time +import inspect +import bb.event +import bb.build +from bb.build import StdoutNoopContextManager + + +# from https://stackoverflow.com/a/14693789/221061 +ANSI_ESCAPE_REGEX = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') + + +def filter_color(string): + """ + Filter ANSI escape codes out of |string|, return new string + """ + return ANSI_ESCAPE_REGEX.sub('', string) + + +def filter_color_n(string): + """ + Filter ANSI escape codes out of |string|, returns tuple of + (new string, # of ANSI codes removed) + """ + return ANSI_ESCAPE_REGEX.subn('', string) + + +class ProgressHandler: + """ + Base class that can pretend to be a file object well enough to be + used to build objects to intercept console output and determine the + progress of some operation. + """ + def __init__(self, d, outfile=None): + self._progress = 0 + self._data = d + self._lastevent = 0 + if outfile: + self._outfile = outfile + else: + self._outfile = StdoutNoopContextManager() + + def __enter__(self): + self._outfile.__enter__() + return self + + def __exit__(self, *excinfo): + self._outfile.__exit__(*excinfo) + + def _fire_progress(self, taskprogress, rate=None): + """Internal function to fire the progress event""" + bb.event.fire(bb.build.TaskProgress(taskprogress, rate), self._data) + + def write(self, string): + self._outfile.write(string) + + def flush(self): + self._outfile.flush() + + def update(self, progress, rate=None): + ts = time.time() + if progress > 100: + progress = 100 + if progress != self._progress or self._lastevent + 1 < ts: + self._fire_progress(progress, rate) + self._lastevent = ts + self._progress = progress + + +class LineFilterProgressHandler(ProgressHandler): + """ + A ProgressHandler variant that provides the ability to filter out + the lines if they contain progress information. Additionally, it + filters out anything before the last line feed on a line. This can + be used to keep the logs clean of output that we've only enabled for + getting progress, assuming that that can be done on a per-line + basis. + """ + def __init__(self, d, outfile=None): + self._linebuffer = '' + super().__init__(d, outfile) + + def write(self, string): + self._linebuffer += string + while True: + breakpos = self._linebuffer.find('\n') + 1 + if breakpos == 0: + # for the case when the line with progress ends with only '\r' + breakpos = self._linebuffer.find('\r') + 1 + if breakpos == 0: + break + line = self._linebuffer[:breakpos] + self._linebuffer = self._linebuffer[breakpos:] + # Drop any line feeds and anything that precedes them + lbreakpos = line.rfind('\r') + 1 + if lbreakpos and lbreakpos != breakpos: + line = line[lbreakpos:] + if self.writeline(filter_color(line)): + super().write(line) + + def writeline(self, line): + return True + + +class BasicProgressHandler(ProgressHandler): + def __init__(self, d, regex=r'(\d+)%', outfile=None): + super().__init__(d, outfile) + self._regex = re.compile(regex) + # Send an initial progress event so the bar gets shown + self._fire_progress(0) + + def write(self, string): + percs = self._regex.findall(filter_color(string)) + if percs: + progress = int(percs[-1]) + self.update(progress) + super().write(string) + + +class OutOfProgressHandler(ProgressHandler): + def __init__(self, d, regex, outfile=None): + super().__init__(d, outfile) + self._regex = re.compile(regex) + # Send an initial progress event so the bar gets shown + self._fire_progress(0) + + def write(self, string): + nums = self._regex.findall(filter_color(string)) + if nums: + progress = (float(nums[-1][0]) / float(nums[-1][1])) * 100 + self.update(progress) + super().write(string) + + +class MultiStageProgressReporter: + """ + Class which allows reporting progress without the caller + having to know where they are in the overall sequence. Useful + for tasks made up of python code spread across multiple + classes / functions - the progress reporter object can + be passed around or stored at the object level and calls + to next_stage() and update() made wherever needed. + """ + def __init__(self, d, stage_weights, debug=False): + """ + Initialise the progress reporter. + + Parameters: + * d: the datastore (needed for firing the events) + * stage_weights: a list of weight values, one for each stage. + The value is scaled internally so you only need to specify + values relative to other values in the list, so if there + are two stages and the first takes 2s and the second takes + 10s you would specify [2, 10] (or [1, 5], it doesn't matter). + * debug: specify True (and ensure you call finish() at the end) + in order to show a printout of the calculated stage weights + based on timing each stage. Use this to determine what the + weights should be when you're not sure. + """ + self._data = d + total = sum(stage_weights) + self._stage_weights = [float(x)/total for x in stage_weights] + self._stage = -1 + self._base_progress = 0 + # Send an initial progress event so the bar gets shown + self._fire_progress(0) + self._debug = debug + self._finished = False + if self._debug: + self._last_time = time.time() + self._stage_times = [] + self._stage_total = None + self._callers = [] + + def __enter__(self): + return self + + def __exit__(self, *excinfo): + pass + + def _fire_progress(self, taskprogress): + bb.event.fire(bb.build.TaskProgress(taskprogress), self._data) + + def next_stage(self, stage_total=None): + """ + Move to the next stage. + Parameters: + * stage_total: optional total for progress within the stage, + see update() for details + NOTE: you need to call this before the first stage. + """ + self._stage += 1 + self._stage_total = stage_total + if self._stage == 0: + # First stage + if self._debug: + self._last_time = time.time() + else: + if self._stage < len(self._stage_weights): + self._base_progress = sum(self._stage_weights[:self._stage]) * 100 + if self._debug: + currtime = time.time() + self._stage_times.append(currtime - self._last_time) + self._last_time = currtime + self._callers.append(inspect.getouterframes(inspect.currentframe())[1]) + elif not self._debug: + bb.warn('ProgressReporter: current stage beyond declared number of stages') + self._base_progress = 100 + self._fire_progress(self._base_progress) + + def update(self, stage_progress): + """ + Update progress within the current stage. + Parameters: + * stage_progress: progress value within the stage. If stage_total + was specified when next_stage() was last called, then this + value is considered to be out of stage_total, otherwise it should + be a percentage value from 0 to 100. + """ + progress = None + if self._stage_total: + stage_progress = (float(stage_progress) / self._stage_total) * 100 + if self._stage < 0: + bb.warn('ProgressReporter: update called before first call to next_stage()') + elif self._stage < len(self._stage_weights): + progress = self._base_progress + (stage_progress * self._stage_weights[self._stage]) + else: + progress = self._base_progress + if progress: + if progress > 100: + progress = 100 + self._fire_progress(progress) + + def finish(self): + if self._finished: + return + self._finished = True + if self._debug: + import math + self._stage_times.append(time.time() - self._last_time) + mintime = max(min(self._stage_times), 0.01) + self._callers.append(None) + stage_weights = [int(math.ceil(x / mintime)) for x in self._stage_times] + bb.warn('Stage weights: %s' % stage_weights) + out = [] + for stage_weight, caller in zip(stage_weights, self._callers): + if caller: + out.append('Up to %s:%d: %d' % (caller[1], caller[2], stage_weight)) + else: + out.append('Up to finish: %d' % stage_weight) + bb.warn('Stage times:\n %s' % '\n '.join(out)) + + +class MultiStageProcessProgressReporter(MultiStageProgressReporter): + """ + Version of MultiStageProgressReporter intended for use with + standalone processes (such as preparing the runqueue) + """ + def __init__(self, d, processname, stage_weights, debug=False): + self._processname = processname + self._started = False + super().__init__(d, stage_weights, debug) + + def start(self): + if not self._started: + bb.event.fire(bb.event.ProcessStarted(self._processname, 100), self._data) + self._started = True + + def _fire_progress(self, taskprogress): + if taskprogress == 0: + self.start() + return + bb.event.fire(bb.event.ProcessProgress(self._processname, taskprogress), self._data) + + def finish(self): + MultiStageProgressReporter.finish(self) + bb.event.fire(bb.event.ProcessFinished(self._processname), self._data) + + +class DummyMultiStageProcessProgressReporter(MultiStageProgressReporter): + """ + MultiStageProcessProgressReporter that takes the calls and does nothing + with them (to avoid a bunch of "if progress_reporter:" checks) + """ + def __init__(self): + super().__init__(None, []) + + def _fire_progress(self, taskprogress, rate=None): + pass + + def start(self): + pass + + def next_stage(self, stage_total=None): + pass + + def update(self, stage_progress): + pass + + def finish(self): + pass diff --git a/poky/bitbake/lib/bb/providers.py b/poky/bitbake/lib/bb/providers.py new file mode 100644 index 0000000..e11a463 --- /dev/null +++ b/poky/bitbake/lib/bb/providers.py @@ -0,0 +1,442 @@ +# +# Copyright (C) 2003, 2004 Chris Larson +# Copyright (C) 2003, 2004 Phil Blundell +# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer +# Copyright (C) 2005 Holger Hans Peter Freyther +# Copyright (C) 2005 ROAD GmbH +# Copyright (C) 2006 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import re +import logging +from bb import data, utils +from collections import defaultdict +import bb + +logger = logging.getLogger("BitBake.Provider") + +class NoProvider(bb.BBHandledException): + """Exception raised when no provider of a build dependency can be found""" + +class NoRProvider(bb.BBHandledException): + """Exception raised when no provider of a runtime dependency can be found""" + +class MultipleRProvider(bb.BBHandledException): + """Exception raised when multiple providers of a runtime dependency can be found""" + +def findProviders(cfgData, dataCache, pkg_pn = None): + """ + Convenience function to get latest and preferred providers in pkg_pn + """ + + if not pkg_pn: + pkg_pn = dataCache.pkg_pn + + # Need to ensure data store is expanded + localdata = data.createCopy(cfgData) + bb.data.expandKeys(localdata) + + required = {} + preferred_versions = {} + latest_versions = {} + + for pn in pkg_pn: + (last_ver, last_file, pref_ver, pref_file, req) = findBestProvider(pn, localdata, dataCache, pkg_pn) + preferred_versions[pn] = (pref_ver, pref_file) + latest_versions[pn] = (last_ver, last_file) + required[pn] = req + + return (latest_versions, preferred_versions, required) + +def allProviders(dataCache): + """ + Find all providers for each pn + """ + all_providers = defaultdict(list) + for (fn, pn) in dataCache.pkg_fn.items(): + ver = dataCache.pkg_pepvpr[fn] + all_providers[pn].append((ver, fn)) + return all_providers + +def sortPriorities(pn, dataCache, pkg_pn = None): + """ + Reorder pkg_pn by file priority and default preference + """ + + if not pkg_pn: + pkg_pn = dataCache.pkg_pn + + files = pkg_pn[pn] + priorities = {} + for f in files: + priority = dataCache.bbfile_priority[f] + preference = dataCache.pkg_dp[f] + if priority not in priorities: + priorities[priority] = {} + if preference not in priorities[priority]: + priorities[priority][preference] = [] + priorities[priority][preference].append(f) + tmp_pn = [] + for pri in sorted(priorities): + tmp_pref = [] + for pref in sorted(priorities[pri]): + tmp_pref.extend(priorities[pri][pref]) + tmp_pn = [tmp_pref] + tmp_pn + + return tmp_pn + +def versionVariableMatch(cfgData, keyword, pn): + """ + Return the value of the _VERSION variable if set. + """ + + # pn can contain '_', e.g. gcc-cross-x86_64 and an override cannot + # hence we do this manually rather than use OVERRIDES + ver = cfgData.getVar("%s_VERSION:pn-%s" % (keyword, pn)) + if not ver: + ver = cfgData.getVar("%s_VERSION_%s" % (keyword, pn)) + if not ver: + ver = cfgData.getVar("%s_VERSION" % keyword) + + return ver + +def preferredVersionMatch(pe, pv, pr, preferred_e, preferred_v, preferred_r): + """ + Check if the version pe,pv,pr is the preferred one. + If there is preferred version defined and ends with '%', then pv has to start with that version after removing the '%' + """ + if pr == preferred_r or preferred_r is None: + if pe == preferred_e or preferred_e is None: + if preferred_v == pv: + return True + if preferred_v is not None and preferred_v.endswith('%') and pv.startswith(preferred_v[:len(preferred_v)-1]): + return True + return False + +def findPreferredProvider(pn, cfgData, dataCache, pkg_pn = None, item = None): + """ + Find the first provider in pkg_pn with REQUIRED_VERSION or PREFERRED_VERSION set. + """ + + preferred_file = None + preferred_ver = None + required = False + + required_v = versionVariableMatch(cfgData, "REQUIRED", pn) + preferred_v = versionVariableMatch(cfgData, "PREFERRED", pn) + + itemstr = "" + if item: + itemstr = " (for item %s)" % item + + if required_v is not None: + if preferred_v is not None: + logger.warning("REQUIRED_VERSION and PREFERRED_VERSION for package %s%s are both set using REQUIRED_VERSION %s", pn, itemstr, required_v) + else: + logger.debug("REQUIRED_VERSION is set for package %s%s", pn, itemstr) + # REQUIRED_VERSION always takes precedence over PREFERRED_VERSION + preferred_v = required_v + required = True + + if preferred_v: + m = re.match(r'(\d+:)*(.*)(_.*)*', preferred_v) + if m: + if m.group(1): + preferred_e = m.group(1)[:-1] + else: + preferred_e = None + preferred_v = m.group(2) + if m.group(3): + preferred_r = m.group(3)[1:] + else: + preferred_r = None + else: + preferred_e = None + preferred_r = None + + for file_set in pkg_pn: + for f in file_set: + pe, pv, pr = dataCache.pkg_pepvpr[f] + if preferredVersionMatch(pe, pv, pr, preferred_e, preferred_v, preferred_r): + preferred_file = f + preferred_ver = (pe, pv, pr) + break + if preferred_file: + break; + if preferred_r: + pv_str = '%s-%s' % (preferred_v, preferred_r) + else: + pv_str = preferred_v + if not (preferred_e is None): + pv_str = '%s:%s' % (preferred_e, pv_str) + if preferred_file is None: + if not required: + logger.warning("preferred version %s of %s not available%s", pv_str, pn, itemstr) + available_vers = [] + for file_set in pkg_pn: + for f in file_set: + pe, pv, pr = dataCache.pkg_pepvpr[f] + ver_str = pv + if pe: + ver_str = "%s:%s" % (pe, ver_str) + if not ver_str in available_vers: + available_vers.append(ver_str) + if available_vers: + available_vers.sort() + logger.warning("versions of %s available: %s", pn, ' '.join(available_vers)) + if required: + logger.error("required version %s of %s not available%s", pv_str, pn, itemstr) + else: + if required: + logger.debug("selecting %s as REQUIRED_VERSION %s of package %s%s", preferred_file, pv_str, pn, itemstr) + else: + logger.debug("selecting %s as PREFERRED_VERSION %s of package %s%s", preferred_file, pv_str, pn, itemstr) + + return (preferred_ver, preferred_file, required) + +def findLatestProvider(pn, cfgData, dataCache, file_set): + """ + Return the highest version of the providers in file_set. + Take default preferences into account. + """ + latest = None + latest_p = 0 + latest_f = None + for file_name in file_set: + pe, pv, pr = dataCache.pkg_pepvpr[file_name] + dp = dataCache.pkg_dp[file_name] + + if (latest is None) or ((latest_p == dp) and (utils.vercmp(latest, (pe, pv, pr)) < 0)) or (dp > latest_p): + latest = (pe, pv, pr) + latest_f = file_name + latest_p = dp + + return (latest, latest_f) + +def findBestProvider(pn, cfgData, dataCache, pkg_pn = None, item = None): + """ + If there is a PREFERRED_VERSION, find the highest-priority bbfile + providing that version. If not, find the latest version provided by + an bbfile in the highest-priority set. + """ + + sortpkg_pn = sortPriorities(pn, dataCache, pkg_pn) + # Find the highest priority provider with a REQUIRED_VERSION or PREFERRED_VERSION set + (preferred_ver, preferred_file, required) = findPreferredProvider(pn, cfgData, dataCache, sortpkg_pn, item) + # Find the latest version of the highest priority provider + (latest, latest_f) = findLatestProvider(pn, cfgData, dataCache, sortpkg_pn[0]) + + if not required and preferred_file is None: + preferred_file = latest_f + preferred_ver = latest + + return (latest, latest_f, preferred_ver, preferred_file, required) + +def _filterProviders(providers, item, cfgData, dataCache): + """ + Take a list of providers and filter/reorder according to the + environment variables + """ + eligible = [] + preferred_versions = {} + sortpkg_pn = {} + + # The order of providers depends on the order of the files on the disk + # up to here. Sort pkg_pn to make dependency issues reproducible rather + # than effectively random. + providers.sort() + + # Collate providers by PN + pkg_pn = {} + for p in providers: + pn = dataCache.pkg_fn[p] + if pn not in pkg_pn: + pkg_pn[pn] = [] + pkg_pn[pn].append(p) + + logger.debug("providers for %s are: %s", item, list(sorted(pkg_pn.keys()))) + + # First add REQUIRED_VERSIONS or PREFERRED_VERSIONS + for pn in sorted(pkg_pn): + sortpkg_pn[pn] = sortPriorities(pn, dataCache, pkg_pn) + preferred_ver, preferred_file, required = findPreferredProvider(pn, cfgData, dataCache, sortpkg_pn[pn], item) + if required and preferred_file is None: + return eligible + preferred_versions[pn] = (preferred_ver, preferred_file) + if preferred_versions[pn][1]: + eligible.append(preferred_versions[pn][1]) + + # Now add latest versions + for pn in sorted(sortpkg_pn): + if pn in preferred_versions and preferred_versions[pn][1]: + continue + preferred_versions[pn] = findLatestProvider(pn, cfgData, dataCache, sortpkg_pn[pn][0]) + eligible.append(preferred_versions[pn][1]) + + if not eligible: + return eligible + + # If pn == item, give it a slight default preference + # This means PREFERRED_PROVIDER_foobar defaults to foobar if available + for p in providers: + pn = dataCache.pkg_fn[p] + if pn != item: + continue + (newvers, fn) = preferred_versions[pn] + if not fn in eligible: + continue + eligible.remove(fn) + eligible = [fn] + eligible + + return eligible + +def filterProviders(providers, item, cfgData, dataCache): + """ + Take a list of providers and filter/reorder according to the + environment variables + Takes a "normal" target item + """ + + eligible = _filterProviders(providers, item, cfgData, dataCache) + + prefervar = cfgData.getVar('PREFERRED_PROVIDER_%s' % item) + if prefervar: + dataCache.preferred[item] = prefervar + + foundUnique = False + if item in dataCache.preferred: + for p in eligible: + pn = dataCache.pkg_fn[p] + if dataCache.preferred[item] == pn: + logger.verbose("selecting %s to satisfy %s due to PREFERRED_PROVIDERS", pn, item) + eligible.remove(p) + eligible = [p] + eligible + foundUnique = True + break + + logger.debug("sorted providers for %s are: %s", item, eligible) + + return eligible, foundUnique + +def filterProvidersRunTime(providers, item, cfgData, dataCache): + """ + Take a list of providers and filter/reorder according to the + environment variables + Takes a "runtime" target item + """ + + eligible = _filterProviders(providers, item, cfgData, dataCache) + + # First try and match any PREFERRED_RPROVIDER entry + prefervar = cfgData.getVar('PREFERRED_RPROVIDER_%s' % item) + foundUnique = False + if prefervar: + for p in eligible: + pn = dataCache.pkg_fn[p] + if prefervar == pn: + logger.verbose("selecting %s to satisfy %s due to PREFERRED_RPROVIDER", pn, item) + eligible.remove(p) + eligible = [p] + eligible + foundUnique = True + numberPreferred = 1 + break + + # If we didn't find an RPROVIDER entry, try and infer the provider from PREFERRED_PROVIDER entries + # by looking through the provides of each eligible recipe and seeing if a PREFERRED_PROVIDER was set. + # This is most useful for virtual/ entries rather than having a RPROVIDER per entry. + if not foundUnique: + # Should use dataCache.preferred here? + preferred = [] + preferred_vars = [] + pns = {} + for p in eligible: + pns[dataCache.pkg_fn[p]] = p + for p in eligible: + pn = dataCache.pkg_fn[p] + provides = dataCache.pn_provides[pn] + for provide in provides: + prefervar = cfgData.getVar('PREFERRED_PROVIDER_%s' % provide) + #logger.debug("checking PREFERRED_PROVIDER_%s (value %s) against %s", provide, prefervar, pns.keys()) + if prefervar in pns and pns[prefervar] not in preferred: + var = "PREFERRED_PROVIDER_%s = %s" % (provide, prefervar) + logger.verbose("selecting %s to satisfy runtime %s due to %s", prefervar, item, var) + preferred_vars.append(var) + pref = pns[prefervar] + eligible.remove(pref) + eligible = [pref] + eligible + preferred.append(pref) + break + + numberPreferred = len(preferred) + + if numberPreferred > 1: + logger.error("Trying to resolve runtime dependency %s resulted in conflicting PREFERRED_PROVIDER entries being found.\nThe providers found were: %s\nThe PREFERRED_PROVIDER entries resulting in this conflict were: %s. You could set PREFERRED_RPROVIDER_%s" % (item, preferred, preferred_vars, item)) + + logger.debug("sorted runtime providers for %s are: %s", item, eligible) + + return eligible, numberPreferred + +regexp_cache = {} + +def getRuntimeProviders(dataCache, rdepend): + """ + Return any providers of runtime dependency + """ + rproviders = [] + + if rdepend in dataCache.rproviders: + rproviders += dataCache.rproviders[rdepend] + + if rdepend in dataCache.packages: + rproviders += dataCache.packages[rdepend] + + if rproviders: + return rproviders + + # Only search dynamic packages if we can't find anything in other variables + for pat_key in dataCache.packages_dynamic: + pattern = pat_key.replace(r'+', r"\+") + if pattern in regexp_cache: + regexp = regexp_cache[pattern] + else: + try: + regexp = re.compile(pattern) + except: + logger.error("Error parsing regular expression '%s'", pattern) + raise + regexp_cache[pattern] = regexp + if regexp.match(rdepend): + rproviders += dataCache.packages_dynamic[pat_key] + logger.debug("Assuming %s is a dynamic package, but it may not exist" % rdepend) + + return rproviders + +def buildWorldTargetList(dataCache, task=None): + """ + Build package list for "bitbake world" + """ + if dataCache.world_target: + return + + logger.debug("collating packages for \"world\"") + for f in dataCache.possible_world: + terminal = True + pn = dataCache.pkg_fn[f] + if task and task not in dataCache.task_deps[f]['tasks']: + logger.debug2("World build skipping %s as task %s doesn't exist", f, task) + terminal = False + + for p in dataCache.pn_provides[pn]: + if p.startswith('virtual/'): + logger.debug2("World build skipping %s due to %s provider starting with virtual/", f, p) + terminal = False + break + for pf in dataCache.providers[p]: + if dataCache.pkg_fn[pf] != pn: + logger.debug2("World build skipping %s due to both us and %s providing %s", f, pf, p) + terminal = False + break + if terminal: + dataCache.world_target.add(pn) diff --git a/poky/bitbake/lib/bb/pysh/__init__.py b/poky/bitbake/lib/bb/pysh/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/poky/bitbake/lib/bb/pysh/pyshlex.py b/poky/bitbake/lib/bb/pysh/pyshlex.py new file mode 100644 index 0000000..a42c294 --- /dev/null +++ b/poky/bitbake/lib/bb/pysh/pyshlex.py @@ -0,0 +1,883 @@ +# pyshlex.py - PLY compatible lexer for pysh. +# +# Copyright 2007 Patrick Mezard +# +# This software may be used and distributed according to the terms +# of the GNU General Public License, incorporated herein by reference. + +# TODO: +# - review all "char in 'abc'" snippets: the empty string can be matched +# - test line continuations within quoted/expansion strings +# - eof is buggy wrt sublexers +# - the lexer cannot really work in pull mode as it would be required to run +# PLY in pull mode. It was designed to work incrementally and it would not be +# that hard to enable pull mode. +import re + +from ply import lex +from bb.pysh.sherrors import * + +class NeedMore(Exception): + pass + +def is_blank(c): + return c in (' ', '\t') + +_RE_DIGITS = re.compile(r'^\d+$') + +def are_digits(s): + return _RE_DIGITS.search(s) is not None + +_OPERATORS = dict([ + ('&&', 'AND_IF'), + ('||', 'OR_IF'), + (';;', 'DSEMI'), + ('<<', 'DLESS'), + ('>>', 'DGREAT'), + ('<&', 'LESSAND'), + ('>&', 'GREATAND'), + ('<>', 'LESSGREAT'), + ('<<-', 'DLESSDASH'), + ('>|', 'CLOBBER'), + ('&', 'AMP'), + (';', 'COMMA'), + ('<', 'LESS'), + ('>', 'GREATER'), + ('(', 'LPARENS'), + (')', 'RPARENS'), +]) + +#Make a function to silence pychecker "Local variable shadows global" +def make_partial_ops(): + partials = {} + for k in _OPERATORS: + for i in range(1, len(k)+1): + partials[k[:i]] = None + return partials + +_PARTIAL_OPERATORS = make_partial_ops() + +def is_partial_op(s): + """Return True if s matches a non-empty subpart of an operator starting + at its first character. + """ + return s in _PARTIAL_OPERATORS + +def is_op(s): + """If s matches an operator, returns the operator identifier. Return None + otherwise. + """ + return _OPERATORS.get(s) + +_RESERVEDS = dict([ + ('if', 'If'), + ('then', 'Then'), + ('else', 'Else'), + ('elif', 'Elif'), + ('fi', 'Fi'), + ('do', 'Do'), + ('done', 'Done'), + ('case', 'Case'), + ('esac', 'Esac'), + ('while', 'While'), + ('until', 'Until'), + ('for', 'For'), + ('{', 'Lbrace'), + ('}', 'Rbrace'), + ('!', 'Bang'), + ('in', 'In'), + ('|', 'PIPE'), +]) + +def get_reserved(s): + return _RESERVEDS.get(s) + +_RE_NAME = re.compile(r'^[0-9a-zA-Z_]+$') + +def is_name(s): + return _RE_NAME.search(s) is not None + +def find_chars(seq, chars): + for i,v in enumerate(seq): + if v in chars: + return i,v + return -1, None + +class WordLexer: + """WordLexer parse quoted or expansion expressions and return an expression + tree. The input string can be any well formed sequence beginning with quoting + or expansion character. Embedded expressions are handled recursively. The + resulting tree is made of lists and strings. Lists represent quoted or + expansion expressions. Each list first element is the opening separator, + the last one the closing separator. In-between can be any number of strings + or lists for sub-expressions. Non quoted/expansion expression can written as + strings or as lists with empty strings as starting and ending delimiters. + """ + + NAME_CHARSET = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_' + NAME_CHARSET = dict(zip(NAME_CHARSET, NAME_CHARSET)) + + SPECIAL_CHARSET = '@*#?-$!0' + + #Characters which can be escaped depends on the current delimiters + ESCAPABLE = { + '`': set(['$', '\\', '`']), + '"': set(['$', '\\', '`', '"']), + "'": set(), + } + + def __init__(self, heredoc = False): + # _buffer is the unprocessed input characters buffer + self._buffer = [] + # _stack is empty or contains a quoted list being processed + # (this is the DFS path to the quoted expression being evaluated). + self._stack = [] + self._escapable = None + # True when parsing unquoted here documents + self._heredoc = heredoc + + def add(self, data, eof=False): + """Feed the lexer with more data. If the quoted expression can be + delimited, return a tuple (expr, remaining) containing the expression + tree and the unconsumed data. + Otherwise, raise NeedMore. + """ + self._buffer += list(data) + self._parse(eof) + + result = self._stack[0] + remaining = ''.join(self._buffer) + self._stack = [] + self._buffer = [] + return result, remaining + + def _is_escapable(self, c, delim=None): + if delim is None: + if self._heredoc: + # Backslashes works as if they were double quoted in unquoted + # here-documents + delim = '"' + else: + if len(self._stack)<=1: + return True + delim = self._stack[-2][0] + + escapables = self.ESCAPABLE.get(delim, None) + return escapables is None or c in escapables + + def _parse_squote(self, buf, result, eof): + if not buf: + raise NeedMore() + try: + pos = buf.index("'") + except ValueError: + raise NeedMore() + result[-1] += ''.join(buf[:pos]) + result += ["'"] + return pos+1, True + + def _parse_bquote(self, buf, result, eof): + if not buf: + raise NeedMore() + + if buf[0]=='\n': + #Remove line continuations + result[:] = ['', '', ''] + elif self._is_escapable(buf[0]): + result[-1] += buf[0] + result += [''] + else: + #Keep as such + result[:] = ['', '\\'+buf[0], ''] + + return 1, True + + def _parse_dquote(self, buf, result, eof): + if not buf: + raise NeedMore() + pos, sep = find_chars(buf, '$\\`"') + if pos==-1: + raise NeedMore() + + result[-1] += ''.join(buf[:pos]) + if sep=='"': + result += ['"'] + return pos+1, True + else: + #Keep everything until the separator and defer processing + return pos, False + + def _parse_command(self, buf, result, eof): + if not buf: + raise NeedMore() + + chars = '$\\`"\'' + if result[0] == '$(': + chars += ')' + pos, sep = find_chars(buf, chars) + if pos == -1: + raise NeedMore() + + result[-1] += ''.join(buf[:pos]) + if (result[0]=='$(' and sep==')') or (result[0]=='`' and sep=='`'): + result += [sep] + return pos+1, True + else: + return pos, False + + def _parse_parameter(self, buf, result, eof): + if not buf: + raise NeedMore() + + pos, sep = find_chars(buf, '$\\`"\'}') + if pos==-1: + raise NeedMore() + + result[-1] += ''.join(buf[:pos]) + if sep=='}': + result += [sep] + return pos+1, True + else: + return pos, False + + def _parse_dollar(self, buf, result, eof): + sep = result[0] + if sep=='$': + if not buf: + #TODO: handle empty $ + raise NeedMore() + if buf[0]=='(': + if len(buf)==1: + raise NeedMore() + + if buf[1]=='(': + result[0] = '$((' + buf[:2] = [] + else: + result[0] = '$(' + buf[:1] = [] + + elif buf[0]=='{': + result[0] = '${' + buf[:1] = [] + else: + if buf[0] in self.SPECIAL_CHARSET: + result[-1] = buf[0] + read = 1 + else: + for read,c in enumerate(buf): + if c not in self.NAME_CHARSET: + break + else: + if not eof: + raise NeedMore() + read += 1 + + result[-1] += ''.join(buf[0:read]) + + if not result[-1]: + result[:] = ['', result[0], ''] + else: + result += [''] + return read,True + + sep = result[0] + if sep=='$(': + parsefunc = self._parse_command + elif sep=='${': + parsefunc = self._parse_parameter + else: + raise NotImplementedError(sep) + + pos, closed = parsefunc(buf, result, eof) + return pos, closed + + def _parse(self, eof): + buf = self._buffer + stack = self._stack + recurse = False + + while 1: + if not stack or recurse: + if not buf: + raise NeedMore() + if buf[0] not in ('"\\`$\''): + raise ShellSyntaxError('Invalid quoted string sequence') + stack.append([buf[0], '']) + buf[:1] = [] + recurse = False + + result = stack[-1] + if result[0]=="'": + parsefunc = self._parse_squote + elif result[0]=='\\': + parsefunc = self._parse_bquote + elif result[0]=='"': + parsefunc = self._parse_dquote + elif result[0]=='`': + parsefunc = self._parse_command + elif result[0][0]=='$': + parsefunc = self._parse_dollar + else: + raise NotImplementedError() + + read, closed = parsefunc(buf, result, eof) + + buf[:read] = [] + if closed: + if len(stack)>1: + #Merge in parent expression + parsed = stack.pop() + stack[-1] += [parsed] + stack[-1] += [''] + else: + break + else: + recurse = True + +def normalize_wordtree(wtree): + """Fold back every literal sequence (delimited with empty strings) into + parent sequence. + """ + def normalize(wtree): + result = [] + for part in wtree[1:-1]: + if isinstance(part, list): + part = normalize(part) + if part[0]=='': + #Move the part content back at current level + result += part[1:-1] + continue + elif not part: + #Remove empty strings + continue + result.append(part) + if not result: + result = [''] + return [wtree[0]] + result + [wtree[-1]] + + return normalize(wtree) + + +def make_wordtree(token, here_document=False): + """Parse a delimited token and return a tree similar to the ones returned by + WordLexer. token may contain any combinations of expansion/quoted fields and + non-ones. + """ + tree = [''] + remaining = token + delimiters = '\\$`' + if not here_document: + delimiters += '\'"' + + while 1: + pos, sep = find_chars(remaining, delimiters) + if pos==-1: + tree += [remaining, ''] + return normalize_wordtree(tree) + tree.append(remaining[:pos]) + remaining = remaining[pos:] + + try: + result, remaining = WordLexer(heredoc = here_document).add(remaining, True) + except NeedMore: + raise ShellSyntaxError('Invalid token "%s"') + tree.append(result) + + +def wordtree_as_string(wtree): + """Rewrite an expression tree generated by make_wordtree as string.""" + def visit(node, output): + for child in node: + if isinstance(child, list): + visit(child, output) + else: + output.append(child) + + output = [] + visit(wtree, output) + return ''.join(output) + + +def unquote_wordtree(wtree): + """Fold the word tree while removing quotes everywhere. Other expansion + sequences are joined as such. + """ + def unquote(wtree): + unquoted = [] + if wtree[0] in ('', "'", '"', '\\'): + wtree = wtree[1:-1] + + for part in wtree: + if isinstance(part, list): + part = unquote(part) + unquoted.append(part) + return ''.join(unquoted) + + return unquote(wtree) + + +class HereDocLexer: + """HereDocLexer delimits whatever comes from the here-document starting newline + not included to the closing delimiter line included. + """ + def __init__(self, op, delim): + assert op in ('<<', '<<-') + if not delim: + raise ShellSyntaxError('invalid here document delimiter %s' % str(delim)) + + self._op = op + self._delim = delim + self._buffer = [] + self._token = [] + + def add(self, data, eof): + """If the here-document was delimited, return a tuple (content, remaining). + Raise NeedMore() otherwise. + """ + self._buffer += list(data) + self._parse(eof) + token = ''.join(self._token) + remaining = ''.join(self._buffer) + self._token, self._remaining = [], [] + return token, remaining + + def _parse(self, eof): + while 1: + #Look for first unescaped newline. Quotes may be ignored + escaped = False + for i,c in enumerate(self._buffer): + if escaped: + escaped = False + elif c=='\\': + escaped = True + elif c=='\n': + break + else: + i = -1 + + if i==-1 or self._buffer[i]!='\n': + if not eof: + raise NeedMore() + #No more data, maybe the last line is closing delimiter + line = ''.join(self._buffer) + eol = '' + self._buffer[:] = [] + else: + line = ''.join(self._buffer[:i]) + eol = self._buffer[i] + self._buffer[:i+1] = [] + + if self._op=='<<-': + line = line.lstrip('\t') + + if line==self._delim: + break + + self._token += [line, eol] + if i==-1: + break + +class Token: + #TODO: check this is still in use + OPERATOR = 'OPERATOR' + WORD = 'WORD' + + def __init__(self): + self.value = '' + self.type = None + + def __getitem__(self, key): + #Behave like a two elements tuple + if key==0: + return self.type + if key==1: + return self.value + raise IndexError(key) + + +class HereDoc: + def __init__(self, op, name=None): + self.op = op + self.name = name + self.pendings = [] + +TK_COMMA = 'COMMA' +TK_AMPERSAND = 'AMP' +TK_OP = 'OP' +TK_TOKEN = 'TOKEN' +TK_COMMENT = 'COMMENT' +TK_NEWLINE = 'NEWLINE' +TK_IONUMBER = 'IO_NUMBER' +TK_ASSIGNMENT = 'ASSIGNMENT_WORD' +TK_HERENAME = 'HERENAME' + +class Lexer: + """Main lexer. + + Call add() until the script AST is returned. + """ + # Here-document handling makes the whole thing more complex because they basically + # force tokens to be reordered: here-content must come right after the operator + # and the here-document name, while some other tokens might be following the + # here-document expression on the same line. + # + # So, here-doc states are basically: + # *self._state==ST_NORMAL + # - self._heredoc.op is None: no here-document + # - self._heredoc.op is not None but name is: here-document operator matched, + # waiting for the document name/delimiter + # - self._heredoc.op and name are not None: here-document is ready, following + # tokens are being stored and will be pushed again when the document is + # completely parsed. + # *self._state==ST_HEREDOC + # - The here-document is being delimited by self._herelexer. Once it is done + # the content is pushed in front of the pending token list then all these + # tokens are pushed once again. + ST_NORMAL = 'ST_NORMAL' + ST_OP = 'ST_OP' + ST_BACKSLASH = 'ST_BACKSLASH' + ST_QUOTED = 'ST_QUOTED' + ST_COMMENT = 'ST_COMMENT' + ST_HEREDOC = 'ST_HEREDOC' + + #Match end of backquote strings + RE_BACKQUOTE_END = re.compile(r'(?=len(self._input): + if not eof: + raise NeedMore() + elif self._state not in (self.ST_OP, self.ST_QUOTED, self.ST_HEREDOC): + #Delimit the current token and leave cleanly + self._push_token('') + break + else: + #Let the sublexer handle the eof themselves + pass + + if self._state==self.ST_NORMAL: + self._parse_normal() + elif self._state==self.ST_COMMENT: + self._parse_comment() + elif self._state==self.ST_OP: + self._parse_op(eof) + elif self._state==self.ST_QUOTED: + self._parse_quoted(eof) + elif self._state==self.ST_HEREDOC: + self._parse_heredoc(eof) + else: + assert False, "Unknown state " + str(self._state) + + if self._heredoc.op is not None: + raise ShellSyntaxError('missing here-document delimiter') + + def _parse_normal(self): + c = self._input[self._pos] + if c=='\n': + self._push_token(c) + self._token = c + self._type = TK_NEWLINE + self._push_token('') + self._pos += 1 + elif c in ('\\', '\'', '"', '`', '$'): + self._state = self.ST_QUOTED + elif is_partial_op(c): + self._push_token(c) + + self._type = TK_OP + self._token += c + self._pos += 1 + self._state = self.ST_OP + elif is_blank(c): + self._push_token(c) + + #Discard blanks + self._pos += 1 + elif self._token: + self._token += c + self._pos += 1 + elif c=='#': + self._state = self.ST_COMMENT + self._type = TK_COMMENT + self._pos += 1 + else: + self._pos += 1 + self._token += c + + def _parse_op(self, eof): + assert self._token + + while 1: + if self._pos>=len(self._input): + if not eof: + raise NeedMore() + c = '' + else: + c = self._input[self._pos] + + op = self._token + c + if c and is_partial_op(op): + #Still parsing an operator + self._token = op + self._pos += 1 + else: + #End of operator + self._push_token(c) + self._state = self.ST_NORMAL + break + + def _parse_comment(self): + while 1: + if self._pos>=len(self._input): + raise NeedMore() + + c = self._input[self._pos] + if c=='\n': + #End of comment, do not consume the end of line + self._state = self.ST_NORMAL + break + else: + self._token += c + self._pos += 1 + + def _parse_quoted(self, eof): + """Precondition: the starting backquote/dollar is still in the input queue.""" + if not self._wordlexer: + self._wordlexer = WordLexer() + + if self._pos'): + #Detect IO_NUMBER + self._type = TK_IONUMBER + elif self._token==';': + self._type = TK_COMMA + elif self._token=='&': + self._type = TK_AMPERSAND + elif self._type==TK_COMMENT: + #Comments are not part of sh grammar, ignore them + self._token = '' + self._type = TK_TOKEN + return 0 + + if self._for_count is not None: + #Track token count in 'For' expression to detect 'In' reserved words. + #Can only be in third position, no need to go beyond + self._for_count += 1 + if self._for_count==3: + self._for_count = None + + self.on_token((self._token, self._type)) + self._token = '' + self._type = TK_TOKEN + return 1 + + def on_token(self, token): + raise NotImplementedError + + +tokens = [ + TK_TOKEN, +# To silence yacc unused token warnings +# TK_COMMENT, + TK_NEWLINE, + TK_IONUMBER, + TK_ASSIGNMENT, + TK_HERENAME, +] + +#Add specific operators +tokens += _OPERATORS.values() +#Add reserved words +tokens += _RESERVEDS.values() + +class PLYLexer(Lexer): + """Bridge Lexer and PLY lexer interface.""" + def __init__(self): + Lexer.__init__(self) + self._tokens = [] + self._current = 0 + self.lineno = 0 + + def on_token(self, token): + value, type = token + + self.lineno = 0 + t = lex.LexToken() + t.value = value + t.type = type + t.lexer = self + t.lexpos = 0 + t.lineno = 0 + + self._tokens.append(t) + + def is_empty(self): + return not bool(self._tokens) + + #PLY compliant interface + def token(self): + if self._current>=len(self._tokens): + return None + t = self._tokens[self._current] + self._current += 1 + return t + + +def get_tokens(s): + """Parse the input string and return a tuple (tokens, unprocessed) where + tokens is a list of parsed tokens and unprocessed is the part of the input + string left untouched by the lexer. + """ + lexer = PLYLexer() + untouched = lexer.add(s, True) + tokens = [] + while 1: + token = lexer.token() + if token is None: + break + tokens.append(token) + + tokens = [(t.value, t.type) for t in tokens] + return tokens, untouched diff --git a/poky/bitbake/lib/bb/pysh/pyshyacc.py b/poky/bitbake/lib/bb/pysh/pyshyacc.py new file mode 100644 index 0000000..924860a --- /dev/null +++ b/poky/bitbake/lib/bb/pysh/pyshyacc.py @@ -0,0 +1,783 @@ +# pyshyacc.py - PLY grammar definition for pysh +# +# Copyright 2007 Patrick Mezard +# +# This software may be used and distributed according to the terms +# of the GNU General Public License, incorporated herein by reference. + +"""PLY grammar file. +""" +import os.path +import sys + +import bb.pysh.pyshlex as pyshlex +tokens = pyshlex.tokens + +from ply import yacc +import bb.pysh.sherrors as sherrors + +class IORedirect: + def __init__(self, op, filename, io_number=None): + self.op = op + self.filename = filename + self.io_number = io_number + +class HereDocument: + def __init__(self, op, name, content, io_number=None): + self.op = op + self.name = name + self.content = content + self.io_number = io_number + +def make_io_redirect(p): + """Make an IORedirect instance from the input 'io_redirect' production.""" + name, io_number, io_target = p + assert name=='io_redirect' + + if io_target[0]=='io_file': + io_type, io_op, io_file = io_target + return IORedirect(io_op, io_file, io_number) + elif io_target[0]=='io_here': + io_type, io_op, io_name, io_content = io_target + return HereDocument(io_op, io_name, io_content, io_number) + else: + assert False, "Invalid IO redirection token %s" % repr(io_type) + +class SimpleCommand: + """ + assigns contains (name, value) pairs. + """ + def __init__(self, words, redirs, assigns): + self.words = list(words) + self.redirs = list(redirs) + self.assigns = list(assigns) + +class Pipeline: + def __init__(self, commands, reverse_status=False): + self.commands = list(commands) + assert self.commands #Grammar forbids this + self.reverse_status = reverse_status + +class AndOr: + def __init__(self, op, left, right): + self.op = str(op) + self.left = left + self.right = right + +class ForLoop: + def __init__(self, name, items, cmds): + self.name = str(name) + self.items = list(items) + self.cmds = list(cmds) + +class WhileLoop: + def __init__(self, condition, cmds): + self.condition = list(condition) + self.cmds = list(cmds) + +class UntilLoop: + def __init__(self, condition, cmds): + self.condition = list(condition) + self.cmds = list(cmds) + +class FunDef: + def __init__(self, name, body): + self.name = str(name) + self.body = body + +class BraceGroup: + def __init__(self, cmds): + self.cmds = list(cmds) + +class IfCond: + def __init__(self, cond, if_cmds, else_cmds): + self.cond = list(cond) + self.if_cmds = if_cmds + self.else_cmds = else_cmds + +class Case: + def __init__(self, name, items): + self.name = name + self.items = items + +class SubShell: + def __init__(self, cmds): + self.cmds = cmds + +class RedirectList: + def __init__(self, cmd, redirs): + self.cmd = cmd + self.redirs = list(redirs) + +def get_production(productions, ptype): + """productions must be a list of production tuples like (name, obj) where + name is the production string identifier. + Return the first production named 'ptype'. Raise KeyError if None can be + found. + """ + for production in productions: + if production is not None and production[0]==ptype: + return production + raise KeyError(ptype) + +#------------------------------------------------------------------------------- +# PLY grammar definition +#------------------------------------------------------------------------------- + +def p_multiple_commands(p): + """multiple_commands : newline_sequence + | complete_command + | multiple_commands complete_command""" + if len(p)==2: + if p[1] is not None: + p[0] = [p[1]] + else: + p[0] = [] + else: + p[0] = p[1] + [p[2]] + +def p_complete_command(p): + """complete_command : list separator + | list""" + if len(p)==3 and p[2] and p[2][1] == '&': + p[0] = ('async', p[1]) + else: + p[0] = p[1] + +def p_list(p): + """list : list separator_op and_or + | and_or""" + if len(p)==2: + p[0] = [p[1]] + else: + #if p[2]!=';': + # raise NotImplementedError('AND-OR list asynchronous execution is not implemented') + p[0] = p[1] + [p[3]] + +def p_and_or(p): + """and_or : pipeline + | and_or AND_IF linebreak pipeline + | and_or OR_IF linebreak pipeline""" + if len(p)==2: + p[0] = p[1] + else: + p[0] = ('and_or', AndOr(p[2], p[1], p[4])) + +def p_maybe_bang_word(p): + """maybe_bang_word : Bang""" + p[0] = ('maybe_bang_word', p[1]) + +def p_pipeline(p): + """pipeline : pipe_sequence + | bang_word pipe_sequence""" + if len(p)==3: + p[0] = ('pipeline', Pipeline(p[2][1:], True)) + else: + p[0] = ('pipeline', Pipeline(p[1][1:])) + +def p_pipe_sequence(p): + """pipe_sequence : command + | pipe_sequence PIPE linebreak command""" + if len(p)==2: + p[0] = ['pipe_sequence', p[1]] + else: + p[0] = p[1] + [p[4]] + +def p_command(p): + """command : simple_command + | compound_command + | compound_command redirect_list + | function_definition""" + + if p[1][0] in ( 'simple_command', + 'for_clause', + 'while_clause', + 'until_clause', + 'case_clause', + 'if_clause', + 'function_definition', + 'subshell', + 'brace_group',): + if len(p) == 2: + p[0] = p[1] + else: + p[0] = ('redirect_list', RedirectList(p[1], p[2][1:])) + else: + raise NotImplementedError('%s command is not implemented' % repr(p[1][0])) + +def p_compound_command(p): + """compound_command : brace_group + | subshell + | for_clause + | case_clause + | if_clause + | while_clause + | until_clause""" + p[0] = p[1] + +def p_subshell(p): + """subshell : LPARENS compound_list RPARENS""" + p[0] = ('subshell', SubShell(p[2][1:])) + +def p_compound_list(p): + """compound_list : term + | newline_list term + | term separator + | newline_list term separator""" + productions = p[1:] + try: + sep = get_production(productions, 'separator') + if sep[1]!=';': + raise NotImplementedError() + except KeyError: + pass + term = get_production(productions, 'term') + p[0] = ['compound_list'] + term[1:] + +def p_term(p): + """term : term separator and_or + | and_or""" + if len(p)==2: + p[0] = ['term', p[1]] + else: + if p[2] is not None and p[2][1] == '&': + p[0] = ['term', ('async', p[1][1:])] + [p[3]] + else: + p[0] = p[1] + [p[3]] + +def p_maybe_for_word(p): + # Rearrange 'For' priority wrt TOKEN. See p_for_word + """maybe_for_word : For""" + p[0] = ('maybe_for_word', p[1]) + +def p_for_clause(p): + """for_clause : for_word name linebreak do_group + | for_word name linebreak in sequential_sep do_group + | for_word name linebreak in wordlist sequential_sep do_group""" + productions = p[1:] + do_group = get_production(productions, 'do_group') + try: + items = get_production(productions, 'in')[1:] + except KeyError: + raise NotImplementedError('"in" omission is not implemented') + + try: + items = get_production(productions, 'wordlist')[1:] + except KeyError: + items = [] + + name = p[2] + p[0] = ('for_clause', ForLoop(name, items, do_group[1:])) + +def p_name(p): + """name : token""" #Was NAME instead of token + p[0] = p[1] + +def p_in(p): + """in : In""" + p[0] = ('in', p[1]) + +def p_wordlist(p): + """wordlist : wordlist token + | token""" + if len(p)==2: + p[0] = ['wordlist', ('TOKEN', p[1])] + else: + p[0] = p[1] + [('TOKEN', p[2])] + +def p_case_clause(p): + """case_clause : Case token linebreak in linebreak case_list Esac + | Case token linebreak in linebreak case_list_ns Esac + | Case token linebreak in linebreak Esac""" + if len(p) < 8: + items = [] + else: + items = p[6][1:] + name = p[2] + p[0] = ('case_clause', Case(name, [c[1] for c in items])) + +def p_case_list_ns(p): + """case_list_ns : case_list case_item_ns + | case_item_ns""" + p_case_list(p) + +def p_case_list(p): + """case_list : case_list case_item + | case_item""" + if len(p)==2: + p[0] = ['case_list', p[1]] + else: + p[0] = p[1] + [p[2]] + +def p_case_item_ns(p): + """case_item_ns : pattern RPARENS linebreak + | pattern RPARENS compound_list linebreak + | LPARENS pattern RPARENS linebreak + | LPARENS pattern RPARENS compound_list linebreak""" + p_case_item(p) + +def p_case_item(p): + """case_item : pattern RPARENS linebreak DSEMI linebreak + | pattern RPARENS compound_list DSEMI linebreak + | LPARENS pattern RPARENS linebreak DSEMI linebreak + | LPARENS pattern RPARENS compound_list DSEMI linebreak""" + if len(p) < 7: + name = p[1][1:] + else: + name = p[2][1:] + + try: + cmds = get_production(p[1:], "compound_list")[1:] + except KeyError: + cmds = [] + + p[0] = ('case_item', (name, cmds)) + +def p_pattern(p): + """pattern : token + | pattern PIPE token""" + if len(p)==2: + p[0] = ['pattern', ('TOKEN', p[1])] + else: + p[0] = p[1] + [('TOKEN', p[2])] + +def p_maybe_if_word(p): + # Rearrange 'If' priority wrt TOKEN. See p_if_word + """maybe_if_word : If""" + p[0] = ('maybe_if_word', p[1]) + +def p_maybe_then_word(p): + # Rearrange 'Then' priority wrt TOKEN. See p_then_word + """maybe_then_word : Then""" + p[0] = ('maybe_then_word', p[1]) + +def p_if_clause(p): + """if_clause : if_word compound_list then_word compound_list else_part Fi + | if_word compound_list then_word compound_list Fi""" + else_part = [] + if len(p)==7: + else_part = p[5] + p[0] = ('if_clause', IfCond(p[2][1:], p[4][1:], else_part)) + +def p_else_part(p): + """else_part : Elif compound_list then_word compound_list else_part + | Elif compound_list then_word compound_list + | Else compound_list""" + if len(p)==3: + p[0] = p[2][1:] + else: + else_part = [] + if len(p)==6: + else_part = p[5] + p[0] = ('elif', IfCond(p[2][1:], p[4][1:], else_part)) + +def p_while_clause(p): + """while_clause : While compound_list do_group""" + p[0] = ('while_clause', WhileLoop(p[2][1:], p[3][1:])) + +def p_maybe_until_word(p): + # Rearrange 'Until' priority wrt TOKEN. See p_until_word + """maybe_until_word : Until""" + p[0] = ('maybe_until_word', p[1]) + +def p_until_clause(p): + """until_clause : until_word compound_list do_group""" + p[0] = ('until_clause', UntilLoop(p[2][1:], p[3][1:])) + +def p_function_definition(p): + """function_definition : fname LPARENS RPARENS linebreak function_body""" + p[0] = ('function_definition', FunDef(p[1], p[5])) + +def p_function_body(p): + """function_body : compound_command + | compound_command redirect_list""" + if len(p)!=2: + raise NotImplementedError('functions redirections lists are not implemented') + p[0] = p[1] + +def p_fname(p): + """fname : TOKEN""" #Was NAME instead of token + p[0] = p[1] + +def p_brace_group(p): + """brace_group : Lbrace compound_list Rbrace""" + p[0] = ('brace_group', BraceGroup(p[2][1:])) + +def p_maybe_done_word(p): + #See p_assignment_word for details. + """maybe_done_word : Done""" + p[0] = ('maybe_done_word', p[1]) + +def p_maybe_do_word(p): + """maybe_do_word : Do""" + p[0] = ('maybe_do_word', p[1]) + +def p_do_group(p): + """do_group : do_word compound_list done_word""" + #Do group contains a list of AndOr + p[0] = ['do_group'] + p[2][1:] + +def p_simple_command(p): + """simple_command : cmd_prefix cmd_word cmd_suffix + | cmd_prefix cmd_word + | cmd_prefix + | cmd_name cmd_suffix + | cmd_name""" + words, redirs, assigns = [], [], [] + for e in p[1:]: + name = e[0] + if name in ('cmd_prefix', 'cmd_suffix'): + for sube in e[1:]: + subname = sube[0] + if subname=='io_redirect': + redirs.append(make_io_redirect(sube)) + elif subname=='ASSIGNMENT_WORD': + assigns.append(sube) + else: + words.append(sube) + elif name in ('cmd_word', 'cmd_name'): + words.append(e) + + cmd = SimpleCommand(words, redirs, assigns) + p[0] = ('simple_command', cmd) + +def p_cmd_name(p): + """cmd_name : TOKEN""" + p[0] = ('cmd_name', p[1]) + +def p_cmd_word(p): + """cmd_word : token""" + p[0] = ('cmd_word', p[1]) + +def p_maybe_assignment_word(p): + #See p_assignment_word for details. + """maybe_assignment_word : ASSIGNMENT_WORD""" + p[0] = ('maybe_assignment_word', p[1]) + +def p_cmd_prefix(p): + """cmd_prefix : io_redirect + | cmd_prefix io_redirect + | assignment_word + | cmd_prefix assignment_word""" + try: + prefix = get_production(p[1:], 'cmd_prefix') + except KeyError: + prefix = ['cmd_prefix'] + + try: + value = get_production(p[1:], 'assignment_word')[1] + value = ('ASSIGNMENT_WORD', value.split('=', 1)) + except KeyError: + value = get_production(p[1:], 'io_redirect') + p[0] = prefix + [value] + +def p_cmd_suffix(p): + """cmd_suffix : io_redirect + | cmd_suffix io_redirect + | token + | cmd_suffix token + | maybe_for_word + | cmd_suffix maybe_for_word + | maybe_done_word + | cmd_suffix maybe_done_word + | maybe_do_word + | cmd_suffix maybe_do_word + | maybe_until_word + | cmd_suffix maybe_until_word + | maybe_assignment_word + | cmd_suffix maybe_assignment_word + | maybe_if_word + | cmd_suffix maybe_if_word + | maybe_then_word + | cmd_suffix maybe_then_word + | maybe_bang_word + | cmd_suffix maybe_bang_word""" + try: + suffix = get_production(p[1:], 'cmd_suffix') + token = p[2] + except KeyError: + suffix = ['cmd_suffix'] + token = p[1] + + if isinstance(token, tuple): + if token[0]=='io_redirect': + p[0] = suffix + [token] + else: + #Convert maybe_* to TOKEN if necessary + p[0] = suffix + [('TOKEN', token[1])] + else: + p[0] = suffix + [('TOKEN', token)] + +def p_redirect_list(p): + """redirect_list : io_redirect + | redirect_list io_redirect""" + if len(p) == 2: + p[0] = ['redirect_list', make_io_redirect(p[1])] + else: + p[0] = p[1] + [make_io_redirect(p[2])] + +def p_io_redirect(p): + """io_redirect : io_file + | IO_NUMBER io_file + | io_here + | IO_NUMBER io_here""" + if len(p)==3: + p[0] = ('io_redirect', p[1], p[2]) + else: + p[0] = ('io_redirect', None, p[1]) + +def p_io_file(p): + #Return the tuple (operator, filename) + """io_file : LESS filename + | LESSAND filename + | GREATER filename + | GREATAND filename + | DGREAT filename + | LESSGREAT filename + | CLOBBER filename""" + #Extract the filename from the file + p[0] = ('io_file', p[1], p[2][1]) + +def p_filename(p): + #Return the filename + """filename : TOKEN""" + p[0] = ('filename', p[1]) + +def p_io_here(p): + """io_here : DLESS here_end + | DLESSDASH here_end""" + p[0] = ('io_here', p[1], p[2][1], p[2][2]) + +def p_here_end(p): + """here_end : HERENAME TOKEN""" + p[0] = ('here_document', p[1], p[2]) + +def p_newline_sequence(p): + # Nothing in the grammar can handle leading NEWLINE productions, so add + # this one with the lowest possible priority relatively to newline_list. + """newline_sequence : newline_list""" + p[0] = None + +def p_newline_list(p): + """newline_list : NEWLINE + | newline_list NEWLINE""" + p[0] = None + +def p_linebreak(p): + """linebreak : newline_list + | empty""" + p[0] = None + +def p_separator_op(p): + """separator_op : COMMA + | COMMA COMMA + | AMP""" + p[0] = p[1] + +def p_separator(p): + """separator : separator_op linebreak + | newline_list""" + if len(p)==2: + #Ignore newlines + p[0] = None + else: + #Keep the separator operator + p[0] = ('separator', p[1]) + +def p_sequential_sep(p): + """sequential_sep : COMMA linebreak + | newline_list""" + p[0] = None + +# Low priority TOKEN => for_word conversion. +# Let maybe_for_word be used as a token when necessary in higher priority +# rules. +def p_for_word(p): + """for_word : maybe_for_word""" + p[0] = p[1] + +def p_if_word(p): + """if_word : maybe_if_word""" + p[0] = p[1] + +def p_then_word(p): + """then_word : maybe_then_word""" + p[0] = p[1] + +def p_done_word(p): + """done_word : maybe_done_word""" + p[0] = p[1] + +def p_do_word(p): + """do_word : maybe_do_word""" + p[0] = p[1] + +def p_until_word(p): + """until_word : maybe_until_word""" + p[0] = p[1] + +def p_assignment_word(p): + """assignment_word : maybe_assignment_word""" + p[0] = ('assignment_word', p[1][1]) + +def p_bang_word(p): + """bang_word : maybe_bang_word""" + p[0] = ('bang_word', p[1][1]) + +def p_token(p): + """token : TOKEN + | Fi""" + p[0] = p[1] + +def p_empty(p): + 'empty :' + p[0] = None + +# Error rule for syntax errors +def p_error(p): + msg = [] + w = msg.append + if p: + w('%r\n' % p) + w('followed by:\n') + for i in range(5): + n = yacc.token() + if not n: + break + w(' %r\n' % n) + else: + w('Unexpected EOF') + raise sherrors.ShellSyntaxError(''.join(msg)) + +# Build the parser +try: + import pyshtables +except ImportError: + outputdir = os.path.dirname(__file__) + if not os.access(outputdir, os.W_OK): + outputdir = '' + yacc.yacc(tabmodule = 'pyshtables', outputdir = outputdir, debug = 0) +else: + yacc.yacc(tabmodule = 'pysh.pyshtables', write_tables = 0, debug = 0) + + +def parse(input, eof=False, debug=False): + """Parse a whole script at once and return the generated AST and unconsumed + data in a tuple. + + NOTE: eof is probably meaningless for now, the parser being unable to work + in pull mode. It should be set to True. + """ + lexer = pyshlex.PLYLexer() + remaining = lexer.add(input, eof) + if lexer.is_empty(): + return [], remaining + if debug: + debug = 2 + return yacc.parse(lexer=lexer, debug=debug), remaining + +#------------------------------------------------------------------------------- +# AST rendering helpers +#------------------------------------------------------------------------------- + +def format_commands(v): + """Return a tree made of strings and lists. Make command trees easier to + display. + """ + if isinstance(v, list): + return [format_commands(c) for c in v] + if isinstance(v, tuple): + if len(v)==2 and isinstance(v[0], str) and not isinstance(v[1], str): + if v[0] == 'async': + return ['AsyncList', map(format_commands, v[1])] + else: + #Avoid decomposing tuples like ('pipeline', Pipeline(...)) + return format_commands(v[1]) + return format_commands(list(v)) + elif isinstance(v, IfCond): + name = ['IfCond'] + name += ['if', map(format_commands, v.cond)] + name += ['then', map(format_commands, v.if_cmds)] + name += ['else', map(format_commands, v.else_cmds)] + return name + elif isinstance(v, ForLoop): + name = ['ForLoop'] + name += [repr(v.name)+' in ', map(str, v.items)] + name += ['commands', map(format_commands, v.cmds)] + return name + elif isinstance(v, AndOr): + return [v.op, format_commands(v.left), format_commands(v.right)] + elif isinstance(v, Pipeline): + name = 'Pipeline' + if v.reverse_status: + name = '!' + name + return [name, format_commands(v.commands)] + elif isinstance(v, Case): + name = ['Case'] + name += [v.name, format_commands(v.items)] + elif isinstance(v, SimpleCommand): + name = ['SimpleCommand'] + if v.words: + name += ['words', map(str, v.words)] + if v.assigns: + assigns = [tuple(a[1]) for a in v.assigns] + name += ['assigns', map(str, assigns)] + if v.redirs: + name += ['redirs', map(format_commands, v.redirs)] + return name + elif isinstance(v, RedirectList): + name = ['RedirectList'] + if v.redirs: + name += ['redirs', map(format_commands, v.redirs)] + name += ['command', format_commands(v.cmd)] + return name + elif isinstance(v, IORedirect): + return ' '.join(map(str, (v.io_number, v.op, v.filename))) + elif isinstance(v, HereDocument): + return ' '.join(map(str, (v.io_number, v.op, repr(v.name), repr(v.content)))) + elif isinstance(v, SubShell): + return ['SubShell', map(format_commands, v.cmds)] + else: + return repr(v) + +def print_commands(cmds, output=sys.stdout): + """Pretty print a command tree.""" + def print_tree(cmd, spaces, output): + if isinstance(cmd, list): + for c in cmd: + print_tree(c, spaces + 3, output) + else: + print >>output, ' '*spaces + str(cmd) + + formatted = format_commands(cmds) + print_tree(formatted, 0, output) + + +def stringify_commands(cmds): + """Serialize a command tree as a string. + + Returned string is not pretty and is currently used for unit tests only. + """ + def stringify(value): + output = [] + if isinstance(value, list): + formatted = [] + for v in value: + formatted.append(stringify(v)) + formatted = ' '.join(formatted) + output.append(''.join(['<', formatted, '>'])) + else: + output.append(value) + return ' '.join(output) + + return stringify(format_commands(cmds)) + + +def visit_commands(cmds, callable): + """Visit the command tree and execute callable on every Pipeline and + SimpleCommand instances. + """ + if isinstance(cmds, (tuple, list)): + map(lambda c: visit_commands(c,callable), cmds) + elif isinstance(cmds, (Pipeline, SimpleCommand)): + callable(cmds) diff --git a/poky/bitbake/lib/bb/pysh/sherrors.py b/poky/bitbake/lib/bb/pysh/sherrors.py new file mode 100644 index 0000000..3fe8e47 --- /dev/null +++ b/poky/bitbake/lib/bb/pysh/sherrors.py @@ -0,0 +1,15 @@ +# sherrors.py - shell errors and signals +# +# Copyright 2007 Patrick Mezard +# +# This software may be used and distributed according to the terms +# of the GNU General Public License, incorporated herein by reference. + +"""Define shell exceptions and error codes. +""" + +class ShellError(Exception): + pass + +class ShellSyntaxError(ShellError): + pass diff --git a/poky/bitbake/lib/bb/remotedata.py b/poky/bitbake/lib/bb/remotedata.py new file mode 100644 index 0000000..6c9864d --- /dev/null +++ b/poky/bitbake/lib/bb/remotedata.py @@ -0,0 +1,65 @@ +""" +BitBake 'remotedata' module + +Provides support for using a datastore from the bitbake client +""" + +# Copyright (C) 2016 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import bb.data + +class RemoteDatastores: + """Used on the server side to manage references to server-side datastores""" + def __init__(self, cooker): + self.cooker = cooker + self.datastores = {} + self.locked = [] + self.datastores[0] = self.cooker.data + self.nextindex = 1 + + def __len__(self): + return len(self.datastores) + + def __getitem__(self, key): + # Cooker could have changed its datastore from under us + self.datastores[0] = self.cooker.data + return self.datastores[key] + + def items(self): + return self.datastores.items() + + def store(self, d, locked=False): + """ + Put a datastore into the collection. If locked=True then the datastore + is understood to be managed externally and cannot be released by calling + release(). + """ + idx = self.nextindex + self.datastores[idx] = d + if locked: + self.locked.append(idx) + self.nextindex += 1 + return idx + + def check_store(self, d, locked=False): + """ + Put a datastore into the collection if it's not already in there; + in either case return the index + """ + for key, val in self.datastores.items(): + if val is d: + idx = key + break + else: + idx = self.store(d, locked) + return idx + + def release(self, idx): + """Discard a datastore in the collection""" + if idx in self.locked: + raise Exception('Tried to release locked datastore %d' % idx) + del self.datastores[idx] + diff --git a/poky/bitbake/lib/bb/runqueue.py b/poky/bitbake/lib/bb/runqueue.py new file mode 100644 index 0000000..5695207 --- /dev/null +++ b/poky/bitbake/lib/bb/runqueue.py @@ -0,0 +1,3192 @@ +""" +BitBake 'RunQueue' implementation + +Handles preparation and execution of a queue of tasks +""" + +# Copyright (C) 2006-2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import copy +import os +import sys +import stat +import errno +import logging +import re +import bb +from bb import msg, event +from bb import monitordisk +import subprocess +import pickle +from multiprocessing import Process +import shlex +import pprint +import time + +bblogger = logging.getLogger("BitBake") +logger = logging.getLogger("BitBake.RunQueue") +hashequiv_logger = logging.getLogger("BitBake.RunQueue.HashEquiv") + +__find_sha256__ = re.compile( r'(?i)(?= 2: + return tid.split(':')[1] + return "" + +def split_tid(tid): + (mc, fn, taskname, _) = split_tid_mcfn(tid) + return (mc, fn, taskname) + +def split_mc(n): + if n.startswith("mc:") and n.count(':') >= 2: + _, mc, n = n.split(":", 2) + return (mc, n) + return ('', n) + +def split_tid_mcfn(tid): + if tid.startswith('mc:') and tid.count(':') >= 2: + elems = tid.split(':') + mc = elems[1] + fn = ":".join(elems[2:-1]) + taskname = elems[-1] + mcfn = "mc:" + mc + ":" + fn + else: + tid = tid.rsplit(":", 1) + mc = "" + fn = tid[0] + taskname = tid[1] + mcfn = fn + + return (mc, fn, taskname, mcfn) + +def build_tid(mc, fn, taskname): + if mc: + return "mc:" + mc + ":" + fn + ":" + taskname + return fn + ":" + taskname + +# Index used to pair up potentially matching multiconfig tasks +# We match on PN, taskname and hash being equal +def pending_hash_index(tid, rqdata): + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + pn = rqdata.dataCaches[mc].pkg_fn[taskfn] + h = rqdata.runtaskentries[tid].unihash + return pn + ":" + "taskname" + h + +class RunQueueStats: + """ + Holds statistics on the tasks handled by the associated runQueue + """ + def __init__(self, total, setscene_total): + self.completed = 0 + self.skipped = 0 + self.failed = 0 + self.active = 0 + self.setscene_active = 0 + self.setscene_covered = 0 + self.setscene_notcovered = 0 + self.setscene_total = setscene_total + self.total = total + + def copy(self): + obj = self.__class__(self.total, self.setscene_total) + obj.__dict__.update(self.__dict__) + return obj + + def taskFailed(self): + self.active = self.active - 1 + self.failed = self.failed + 1 + + def taskCompleted(self): + self.active = self.active - 1 + self.completed = self.completed + 1 + + def taskSkipped(self): + self.active = self.active + 1 + self.skipped = self.skipped + 1 + + def taskActive(self): + self.active = self.active + 1 + + def updateCovered(self, covered, notcovered): + self.setscene_covered = covered + self.setscene_notcovered = notcovered + + def updateActiveSetscene(self, active): + self.setscene_active = active + +# These values indicate the next step due to be run in the +# runQueue state machine +runQueuePrepare = 2 +runQueueSceneInit = 3 +runQueueRunning = 6 +runQueueFailed = 7 +runQueueCleanUp = 8 +runQueueComplete = 9 + +class RunQueueScheduler(object): + """ + Control the order tasks are scheduled in. + """ + name = "basic" + + def __init__(self, runqueue, rqdata): + """ + The default scheduler just returns the first buildable task (the + priority map is sorted by task number) + """ + self.rq = runqueue + self.rqdata = rqdata + self.numTasks = len(self.rqdata.runtaskentries) + + self.prio_map = [self.rqdata.runtaskentries.keys()] + + self.buildable = set() + self.skip_maxthread = {} + self.stamps = {} + for tid in self.rqdata.runtaskentries: + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + self.stamps[tid] = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn, noextra=True) + if tid in self.rq.runq_buildable: + self.buildable.append(tid) + + self.rev_prio_map = None + self.is_pressure_usable() + + def is_pressure_usable(self): + """ + If monitoring pressure, return True if pressure files can be open and read. For example + openSUSE /proc/pressure/* files have readable file permissions but when read the error EOPNOTSUPP (Operation not supported) + is returned. + """ + if self.rq.max_cpu_pressure or self.rq.max_io_pressure or self.rq.max_memory_pressure: + try: + with open("/proc/pressure/cpu") as cpu_pressure_fds, \ + open("/proc/pressure/io") as io_pressure_fds, \ + open("/proc/pressure/memory") as memory_pressure_fds: + + self.prev_cpu_pressure = cpu_pressure_fds.readline().split()[4].split("=")[1] + self.prev_io_pressure = io_pressure_fds.readline().split()[4].split("=")[1] + self.prev_memory_pressure = memory_pressure_fds.readline().split()[4].split("=")[1] + self.prev_pressure_time = time.time() + self.check_pressure = True + except: + bb.note("The /proc/pressure files can't be read. Continuing build without monitoring pressure") + self.check_pressure = False + else: + self.check_pressure = False + + def exceeds_max_pressure(self): + """ + Monitor the difference in total pressure at least once per second, if + BB_PRESSURE_MAX_{CPU|IO|MEMORY} are set, return True if above threshold. + """ + if self.check_pressure: + with open("/proc/pressure/cpu") as cpu_pressure_fds, \ + open("/proc/pressure/io") as io_pressure_fds, \ + open("/proc/pressure/memory") as memory_pressure_fds: + # extract "total" from /proc/pressure/{cpu|io} + curr_cpu_pressure = cpu_pressure_fds.readline().split()[4].split("=")[1] + curr_io_pressure = io_pressure_fds.readline().split()[4].split("=")[1] + curr_memory_pressure = memory_pressure_fds.readline().split()[4].split("=")[1] + exceeds_cpu_pressure = self.rq.max_cpu_pressure and (float(curr_cpu_pressure) - float(self.prev_cpu_pressure)) > self.rq.max_cpu_pressure + exceeds_io_pressure = self.rq.max_io_pressure and (float(curr_io_pressure) - float(self.prev_io_pressure)) > self.rq.max_io_pressure + exceeds_memory_pressure = self.rq.max_memory_pressure and (float(curr_memory_pressure) - float(self.prev_memory_pressure)) > self.rq.max_memory_pressure + now = time.time() + if now - self.prev_pressure_time > 1.0: + self.prev_cpu_pressure = curr_cpu_pressure + self.prev_io_pressure = curr_io_pressure + self.prev_memory_pressure = curr_memory_pressure + self.prev_pressure_time = now + return (exceeds_cpu_pressure or exceeds_io_pressure or exceeds_memory_pressure) + return False + + def next_buildable_task(self): + """ + Return the id of the first task we find that is buildable + """ + # Once tasks are running we don't need to worry about them again + self.buildable.difference_update(self.rq.runq_running) + buildable = set(self.buildable) + buildable.difference_update(self.rq.holdoff_tasks) + buildable.intersection_update(self.rq.tasks_covered | self.rq.tasks_notcovered) + if not buildable: + return None + + # Bitbake requires that at least one task be active. Only check for pressure if + # this is the case, otherwise the pressure limitation could result in no tasks + # being active and no new tasks started thereby, at times, breaking the scheduler. + if self.rq.stats.active and self.exceeds_max_pressure(): + return None + + # Filter out tasks that have a max number of threads that have been exceeded + skip_buildable = {} + for running in self.rq.runq_running.difference(self.rq.runq_complete): + rtaskname = taskname_from_tid(running) + if rtaskname not in self.skip_maxthread: + self.skip_maxthread[rtaskname] = self.rq.cfgData.getVarFlag(rtaskname, "number_threads") + if not self.skip_maxthread[rtaskname]: + continue + if rtaskname in skip_buildable: + skip_buildable[rtaskname] += 1 + else: + skip_buildable[rtaskname] = 1 + + if len(buildable) == 1: + tid = buildable.pop() + taskname = taskname_from_tid(tid) + if taskname in skip_buildable and skip_buildable[taskname] >= int(self.skip_maxthread[taskname]): + return None + stamp = self.stamps[tid] + if stamp not in self.rq.build_stamps.values(): + return tid + + if not self.rev_prio_map: + self.rev_prio_map = {} + for tid in self.rqdata.runtaskentries: + self.rev_prio_map[tid] = self.prio_map.index(tid) + + best = None + bestprio = None + for tid in buildable: + taskname = taskname_from_tid(tid) + if taskname in skip_buildable and skip_buildable[taskname] >= int(self.skip_maxthread[taskname]): + continue + prio = self.rev_prio_map[tid] + if bestprio is None or bestprio > prio: + stamp = self.stamps[tid] + if stamp in self.rq.build_stamps.values(): + continue + bestprio = prio + best = tid + + return best + + def next(self): + """ + Return the id of the task we should build next + """ + if self.rq.can_start_task(): + return self.next_buildable_task() + + def newbuildable(self, task): + self.buildable.add(task) + + def removebuildable(self, task): + self.buildable.remove(task) + + def describe_task(self, taskid): + result = 'ID %s' % taskid + if self.rev_prio_map: + result = result + (' pri %d' % self.rev_prio_map[taskid]) + return result + + def dump_prio(self, comment): + bb.debug(3, '%s (most important first):\n%s' % + (comment, + '\n'.join(['%d. %s' % (index + 1, self.describe_task(taskid)) for + index, taskid in enumerate(self.prio_map)]))) + +class RunQueueSchedulerSpeed(RunQueueScheduler): + """ + A scheduler optimised for speed. The priority map is sorted by task weight, + heavier weighted tasks (tasks needed by the most other tasks) are run first. + """ + name = "speed" + + def __init__(self, runqueue, rqdata): + """ + The priority map is sorted by task weight. + """ + RunQueueScheduler.__init__(self, runqueue, rqdata) + + weights = {} + for tid in self.rqdata.runtaskentries: + weight = self.rqdata.runtaskentries[tid].weight + if not weight in weights: + weights[weight] = [] + weights[weight].append(tid) + + self.prio_map = [] + for weight in sorted(weights): + for w in weights[weight]: + self.prio_map.append(w) + + self.prio_map.reverse() + +class RunQueueSchedulerCompletion(RunQueueSchedulerSpeed): + """ + A scheduler optimised to complete .bb files as quickly as possible. The + priority map is sorted by task weight, but then reordered so once a given + .bb file starts to build, it's completed as quickly as possible by + running all tasks related to the same .bb file one after the after. + This works well where disk space is at a premium and classes like OE's + rm_work are in force. + """ + name = "completion" + + def __init__(self, runqueue, rqdata): + super(RunQueueSchedulerCompletion, self).__init__(runqueue, rqdata) + + # Extract list of tasks for each recipe, with tasks sorted + # ascending from "must run first" (typically do_fetch) to + # "runs last" (do_build). The speed scheduler prioritizes + # tasks that must run first before the ones that run later; + # this is what we depend on here. + task_lists = {} + for taskid in self.prio_map: + fn, taskname = taskid.rsplit(':', 1) + task_lists.setdefault(fn, []).append(taskname) + + # Now unify the different task lists. The strategy is that + # common tasks get skipped and new ones get inserted after the + # preceeding common one(s) as they are found. Because task + # lists should differ only by their number of tasks, but not + # the ordering of the common tasks, this should result in a + # deterministic result that is a superset of the individual + # task ordering. + all_tasks = [] + for recipe, new_tasks in task_lists.items(): + index = 0 + old_task = all_tasks[index] if index < len(all_tasks) else None + for new_task in new_tasks: + if old_task == new_task: + # Common task, skip it. This is the fast-path which + # avoids a full search. + index += 1 + old_task = all_tasks[index] if index < len(all_tasks) else None + else: + try: + index = all_tasks.index(new_task) + # Already present, just not at the current + # place. We re-synchronized by changing the + # index so that it matches again. Now + # move on to the next existing task. + index += 1 + old_task = all_tasks[index] if index < len(all_tasks) else None + except ValueError: + # Not present. Insert before old_task, which + # remains the same (but gets shifted back). + all_tasks.insert(index, new_task) + index += 1 + bb.debug(3, 'merged task list: %s' % all_tasks) + + # Now reverse the order so that tasks that finish the work on one + # recipe are considered more imporant (= come first). The ordering + # is now so that do_build is most important. + all_tasks.reverse() + + # Group tasks of the same kind before tasks of less important + # kinds at the head of the queue (because earlier = lower + # priority number = runs earlier), while preserving the + # ordering by recipe. If recipe foo is more important than + # bar, then the goal is to work on foo's do_populate_sysroot + # before bar's do_populate_sysroot and on the more important + # tasks of foo before any of the less important tasks in any + # other recipe (if those other recipes are more important than + # foo). + # + # All of this only applies when tasks are runable. Explicit + # dependencies still override this ordering by priority. + # + # Here's an example why this priority re-ordering helps with + # minimizing disk usage. Consider a recipe foo with a higher + # priority than bar where foo DEPENDS on bar. Then the + # implicit rule (from base.bbclass) is that foo's do_configure + # depends on bar's do_populate_sysroot. This ensures that + # bar's do_populate_sysroot gets done first. Normally the + # tasks from foo would continue to run once that is done, and + # bar only gets completed and cleaned up later. By ordering + # bar's task that depend on bar's do_populate_sysroot before foo's + # do_configure, that problem gets avoided. + task_index = 0 + self.dump_prio('original priorities') + for task in all_tasks: + for index in range(task_index, self.numTasks): + taskid = self.prio_map[index] + taskname = taskid.rsplit(':', 1)[1] + if taskname == task: + del self.prio_map[index] + self.prio_map.insert(task_index, taskid) + task_index += 1 + self.dump_prio('completion priorities') + +class RunTaskEntry(object): + def __init__(self): + self.depends = set() + self.revdeps = set() + self.hash = None + self.unihash = None + self.task = None + self.weight = 1 + +class RunQueueData: + """ + BitBake Run Queue implementation + """ + def __init__(self, rq, cooker, cfgData, dataCaches, taskData, targets): + self.cooker = cooker + self.dataCaches = dataCaches + self.taskData = taskData + self.targets = targets + self.rq = rq + self.warn_multi_bb = False + + self.multi_provider_allowed = (cfgData.getVar("BB_MULTI_PROVIDER_ALLOWED") or "").split() + self.setscene_ignore_tasks = get_setscene_enforce_ignore_tasks(cfgData, targets) + self.setscene_ignore_tasks_checked = False + self.setscene_enforce = (cfgData.getVar('BB_SETSCENE_ENFORCE') == "1") + self.init_progress_reporter = bb.progress.DummyMultiStageProcessProgressReporter() + + self.reset() + + def reset(self): + self.runtaskentries = {} + + def runq_depends_names(self, ids): + import re + ret = [] + for id in ids: + nam = os.path.basename(id) + nam = re.sub("_[^,]*,", ",", nam) + ret.extend([nam]) + return ret + + def get_task_hash(self, tid): + return self.runtaskentries[tid].hash + + def get_task_unihash(self, tid): + return self.runtaskentries[tid].unihash + + def get_user_idstring(self, tid, task_name_suffix = ""): + return tid + task_name_suffix + + def get_short_user_idstring(self, task, task_name_suffix = ""): + (mc, fn, taskname, taskfn) = split_tid_mcfn(task) + pn = self.dataCaches[mc].pkg_fn[taskfn] + taskname = taskname_from_tid(task) + task_name_suffix + return "%s:%s" % (pn, taskname) + + def circular_depchains_handler(self, tasks): + """ + Some tasks aren't buildable, likely due to circular dependency issues. + Identify the circular dependencies and print them in a user readable format. + """ + from copy import deepcopy + + valid_chains = [] + explored_deps = {} + msgs = [] + + class TooManyLoops(Exception): + pass + + def chain_reorder(chain): + """ + Reorder a dependency chain so the lowest task id is first + """ + lowest = 0 + new_chain = [] + for entry in range(len(chain)): + if chain[entry] < chain[lowest]: + lowest = entry + new_chain.extend(chain[lowest:]) + new_chain.extend(chain[:lowest]) + return new_chain + + def chain_compare_equal(chain1, chain2): + """ + Compare two dependency chains and see if they're the same + """ + if len(chain1) != len(chain2): + return False + for index in range(len(chain1)): + if chain1[index] != chain2[index]: + return False + return True + + def chain_array_contains(chain, chain_array): + """ + Return True if chain_array contains chain + """ + for ch in chain_array: + if chain_compare_equal(ch, chain): + return True + return False + + def find_chains(tid, prev_chain): + prev_chain.append(tid) + total_deps = [] + total_deps.extend(self.runtaskentries[tid].revdeps) + for revdep in self.runtaskentries[tid].revdeps: + if revdep in prev_chain: + idx = prev_chain.index(revdep) + # To prevent duplicates, reorder the chain to start with the lowest taskid + # and search through an array of those we've already printed + chain = prev_chain[idx:] + new_chain = chain_reorder(chain) + if not chain_array_contains(new_chain, valid_chains): + valid_chains.append(new_chain) + msgs.append("Dependency loop #%d found:\n" % len(valid_chains)) + for dep in new_chain: + msgs.append(" Task %s (dependent Tasks %s)\n" % (dep, self.runq_depends_names(self.runtaskentries[dep].depends))) + msgs.append("\n") + if len(valid_chains) > 10: + msgs.append("Halted dependency loops search after 10 matches.\n") + raise TooManyLoops + continue + scan = False + if revdep not in explored_deps: + scan = True + elif revdep in explored_deps[revdep]: + scan = True + else: + for dep in prev_chain: + if dep in explored_deps[revdep]: + scan = True + if scan: + find_chains(revdep, copy.deepcopy(prev_chain)) + for dep in explored_deps[revdep]: + if dep not in total_deps: + total_deps.append(dep) + + explored_deps[tid] = total_deps + + try: + for task in tasks: + find_chains(task, []) + except TooManyLoops: + pass + + return msgs + + def calculate_task_weights(self, endpoints): + """ + Calculate a number representing the "weight" of each task. Heavier weighted tasks + have more dependencies and hence should be executed sooner for maximum speed. + + This function also sanity checks the task list finding tasks that are not + possible to execute due to circular dependencies. + """ + + numTasks = len(self.runtaskentries) + weight = {} + deps_left = {} + task_done = {} + + for tid in self.runtaskentries: + task_done[tid] = False + weight[tid] = 1 + deps_left[tid] = len(self.runtaskentries[tid].revdeps) + + for tid in endpoints: + weight[tid] = 10 + task_done[tid] = True + + while True: + next_points = [] + for tid in endpoints: + for revdep in self.runtaskentries[tid].depends: + weight[revdep] = weight[revdep] + weight[tid] + deps_left[revdep] = deps_left[revdep] - 1 + if deps_left[revdep] == 0: + next_points.append(revdep) + task_done[revdep] = True + endpoints = next_points + if not next_points: + break + + # Circular dependency sanity check + problem_tasks = [] + for tid in self.runtaskentries: + if task_done[tid] is False or deps_left[tid] != 0: + problem_tasks.append(tid) + logger.debug2("Task %s is not buildable", tid) + logger.debug2("(Complete marker was %s and the remaining dependency count was %s)\n", task_done[tid], deps_left[tid]) + self.runtaskentries[tid].weight = weight[tid] + + if problem_tasks: + message = "%s unbuildable tasks were found.\n" % len(problem_tasks) + message = message + "These are usually caused by circular dependencies and any circular dependency chains found will be printed below. Increase the debug level to see a list of unbuildable tasks.\n\n" + message = message + "Identifying dependency loops (this may take a short while)...\n" + logger.error(message) + + msgs = self.circular_depchains_handler(problem_tasks) + + message = "\n" + for msg in msgs: + message = message + msg + bb.msg.fatal("RunQueue", message) + + return weight + + def prepare(self): + """ + Turn a set of taskData into a RunQueue and compute data needed + to optimise the execution order. + """ + + runq_build = {} + recursivetasks = {} + recursiveitasks = {} + recursivetasksselfref = set() + + taskData = self.taskData + + found = False + for mc in self.taskData: + if taskData[mc].taskentries: + found = True + break + if not found: + # Nothing to do + return 0 + + self.init_progress_reporter.start() + self.init_progress_reporter.next_stage() + + # Step A - Work out a list of tasks to run + # + # Taskdata gives us a list of possible providers for every build and run + # target ordered by priority. It also gives information on each of those + # providers. + # + # To create the actual list of tasks to execute we fix the list of + # providers and then resolve the dependencies into task IDs. This + # process is repeated for each type of dependency (tdepends, deptask, + # rdeptast, recrdeptask, idepends). + + def add_build_dependencies(depids, tasknames, depends, mc): + for depname in depids: + # Won't be in build_targets if ASSUME_PROVIDED + if depname not in taskData[mc].build_targets or not taskData[mc].build_targets[depname]: + continue + depdata = taskData[mc].build_targets[depname][0] + if depdata is None: + continue + for taskname in tasknames: + t = depdata + ":" + taskname + if t in taskData[mc].taskentries: + depends.add(t) + + def add_runtime_dependencies(depids, tasknames, depends, mc): + for depname in depids: + if depname not in taskData[mc].run_targets or not taskData[mc].run_targets[depname]: + continue + depdata = taskData[mc].run_targets[depname][0] + if depdata is None: + continue + for taskname in tasknames: + t = depdata + ":" + taskname + if t in taskData[mc].taskentries: + depends.add(t) + + def add_mc_dependencies(mc, tid): + mcdeps = taskData[mc].get_mcdepends() + for dep in mcdeps: + mcdependency = dep.split(':') + pn = mcdependency[3] + frommc = mcdependency[1] + mcdep = mcdependency[2] + deptask = mcdependency[4] + if mc == frommc: + fn = taskData[mcdep].build_targets[pn][0] + newdep = '%s:%s' % (fn,deptask) + taskData[mc].taskentries[tid].tdepends.append(newdep) + + for mc in taskData: + for tid in taskData[mc].taskentries: + + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + #runtid = build_tid(mc, fn, taskname) + + #logger.debug2("Processing %s,%s:%s", mc, fn, taskname) + + depends = set() + task_deps = self.dataCaches[mc].task_deps[taskfn] + + self.runtaskentries[tid] = RunTaskEntry() + + if fn in taskData[mc].failed_fns: + continue + + # We add multiconfig dependencies before processing internal task deps (tdepends) + if 'mcdepends' in task_deps and taskname in task_deps['mcdepends']: + add_mc_dependencies(mc, tid) + + # Resolve task internal dependencies + # + # e.g. addtask before X after Y + for t in taskData[mc].taskentries[tid].tdepends: + (depmc, depfn, deptaskname, _) = split_tid_mcfn(t) + depends.add(build_tid(depmc, depfn, deptaskname)) + + # Resolve 'deptask' dependencies + # + # e.g. do_sometask[deptask] = "do_someothertask" + # (makes sure sometask runs after someothertask of all DEPENDS) + if 'deptask' in task_deps and taskname in task_deps['deptask']: + tasknames = task_deps['deptask'][taskname].split() + add_build_dependencies(taskData[mc].depids[taskfn], tasknames, depends, mc) + + # Resolve 'rdeptask' dependencies + # + # e.g. do_sometask[rdeptask] = "do_someothertask" + # (makes sure sometask runs after someothertask of all RDEPENDS) + if 'rdeptask' in task_deps and taskname in task_deps['rdeptask']: + tasknames = task_deps['rdeptask'][taskname].split() + add_runtime_dependencies(taskData[mc].rdepids[taskfn], tasknames, depends, mc) + + # Resolve inter-task dependencies + # + # e.g. do_sometask[depends] = "targetname:do_someothertask" + # (makes sure sometask runs after targetname's someothertask) + idepends = taskData[mc].taskentries[tid].idepends + for (depname, idependtask) in idepends: + if depname in taskData[mc].build_targets and taskData[mc].build_targets[depname] and not depname in taskData[mc].failed_deps: + # Won't be in build_targets if ASSUME_PROVIDED + depdata = taskData[mc].build_targets[depname][0] + if depdata is not None: + t = depdata + ":" + idependtask + depends.add(t) + if t not in taskData[mc].taskentries: + bb.msg.fatal("RunQueue", "Task %s in %s depends upon non-existent task %s in %s" % (taskname, fn, idependtask, depdata)) + irdepends = taskData[mc].taskentries[tid].irdepends + for (depname, idependtask) in irdepends: + if depname in taskData[mc].run_targets: + # Won't be in run_targets if ASSUME_PROVIDED + if not taskData[mc].run_targets[depname]: + continue + depdata = taskData[mc].run_targets[depname][0] + if depdata is not None: + t = depdata + ":" + idependtask + depends.add(t) + if t not in taskData[mc].taskentries: + bb.msg.fatal("RunQueue", "Task %s in %s rdepends upon non-existent task %s in %s" % (taskname, fn, idependtask, depdata)) + + # Resolve recursive 'recrdeptask' dependencies (Part A) + # + # e.g. do_sometask[recrdeptask] = "do_someothertask" + # (makes sure sometask runs after someothertask of all DEPENDS, RDEPENDS and intertask dependencies, recursively) + # We cover the recursive part of the dependencies below + if 'recrdeptask' in task_deps and taskname in task_deps['recrdeptask']: + tasknames = task_deps['recrdeptask'][taskname].split() + recursivetasks[tid] = tasknames + add_build_dependencies(taskData[mc].depids[taskfn], tasknames, depends, mc) + add_runtime_dependencies(taskData[mc].rdepids[taskfn], tasknames, depends, mc) + if taskname in tasknames: + recursivetasksselfref.add(tid) + + if 'recideptask' in task_deps and taskname in task_deps['recideptask']: + recursiveitasks[tid] = [] + for t in task_deps['recideptask'][taskname].split(): + newdep = build_tid(mc, fn, t) + recursiveitasks[tid].append(newdep) + + self.runtaskentries[tid].depends = depends + # Remove all self references + self.runtaskentries[tid].depends.discard(tid) + + #self.dump_data() + + self.init_progress_reporter.next_stage() + + # Resolve recursive 'recrdeptask' dependencies (Part B) + # + # e.g. do_sometask[recrdeptask] = "do_someothertask" + # (makes sure sometask runs after someothertask of all DEPENDS, RDEPENDS and intertask dependencies, recursively) + # We need to do this separately since we need all of runtaskentries[*].depends to be complete before this is processed + + # Generating/interating recursive lists of dependencies is painful and potentially slow + # Precompute recursive task dependencies here by: + # a) create a temp list of reverse dependencies (revdeps) + # b) walk up the ends of the chains (when a given task no longer has dependencies i.e. len(deps) == 0) + # c) combine the total list of dependencies in cumulativedeps + # d) optimise by pre-truncating 'task' off the items in cumulativedeps (keeps items in sets lower) + + + revdeps = {} + deps = {} + cumulativedeps = {} + for tid in self.runtaskentries: + deps[tid] = set(self.runtaskentries[tid].depends) + revdeps[tid] = set() + cumulativedeps[tid] = set() + # Generate a temp list of reverse dependencies + for tid in self.runtaskentries: + for dep in self.runtaskentries[tid].depends: + revdeps[dep].add(tid) + # Find the dependency chain endpoints + endpoints = set() + for tid in self.runtaskentries: + if not deps[tid]: + endpoints.add(tid) + # Iterate the chains collating dependencies + while endpoints: + next = set() + for tid in endpoints: + for dep in revdeps[tid]: + cumulativedeps[dep].add(fn_from_tid(tid)) + cumulativedeps[dep].update(cumulativedeps[tid]) + if tid in deps[dep]: + deps[dep].remove(tid) + if not deps[dep]: + next.add(dep) + endpoints = next + #for tid in deps: + # if deps[tid]: + # bb.warn("Sanity test failure, dependencies left for %s (%s)" % (tid, deps[tid])) + + # Loop here since recrdeptasks can depend upon other recrdeptasks and we have to + # resolve these recursively until we aren't adding any further extra dependencies + extradeps = True + while extradeps: + extradeps = 0 + for tid in recursivetasks: + tasknames = recursivetasks[tid] + + totaldeps = set(self.runtaskentries[tid].depends) + if tid in recursiveitasks: + totaldeps.update(recursiveitasks[tid]) + for dep in recursiveitasks[tid]: + if dep not in self.runtaskentries: + continue + totaldeps.update(self.runtaskentries[dep].depends) + + deps = set() + for dep in totaldeps: + if dep in cumulativedeps: + deps.update(cumulativedeps[dep]) + + for t in deps: + for taskname in tasknames: + newtid = t + ":" + taskname + if newtid == tid: + continue + if newtid in self.runtaskentries and newtid not in self.runtaskentries[tid].depends: + extradeps += 1 + self.runtaskentries[tid].depends.add(newtid) + + # Handle recursive tasks which depend upon other recursive tasks + deps = set() + for dep in self.runtaskentries[tid].depends.intersection(recursivetasks): + deps.update(self.runtaskentries[dep].depends.difference(self.runtaskentries[tid].depends)) + for newtid in deps: + for taskname in tasknames: + if not newtid.endswith(":" + taskname): + continue + if newtid in self.runtaskentries: + extradeps += 1 + self.runtaskentries[tid].depends.add(newtid) + + bb.debug(1, "Added %s recursive dependencies in this loop" % extradeps) + + # Remove recrdeptask circular references so that do_a[recrdeptask] = "do_a do_b" can work + for tid in recursivetasksselfref: + self.runtaskentries[tid].depends.difference_update(recursivetasksselfref) + + self.init_progress_reporter.next_stage() + + #self.dump_data() + + # Step B - Mark all active tasks + # + # Start with the tasks we were asked to run and mark all dependencies + # as active too. If the task is to be 'forced', clear its stamp. Once + # all active tasks are marked, prune the ones we don't need. + + logger.verbose("Marking Active Tasks") + + def mark_active(tid, depth): + """ + Mark an item as active along with its depends + (calls itself recursively) + """ + + if tid in runq_build: + return + + runq_build[tid] = 1 + + depends = self.runtaskentries[tid].depends + for depend in depends: + mark_active(depend, depth+1) + + def invalidate_task(tid, error_nostamp): + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + taskdep = self.dataCaches[mc].task_deps[taskfn] + if fn + ":" + taskname not in taskData[mc].taskentries: + logger.warning("Task %s does not exist, invalidating this task will have no effect" % taskname) + if 'nostamp' in taskdep and taskname in taskdep['nostamp']: + if error_nostamp: + bb.fatal("Task %s is marked nostamp, cannot invalidate this task" % taskname) + else: + bb.debug(1, "Task %s is marked nostamp, cannot invalidate this task" % taskname) + else: + logger.verbose("Invalidate task %s, %s", taskname, fn) + bb.parse.siggen.invalidate_task(taskname, self.dataCaches[mc], taskfn) + + self.target_tids = [] + for (mc, target, task, fn) in self.targets: + + if target not in taskData[mc].build_targets or not taskData[mc].build_targets[target]: + continue + + if target in taskData[mc].failed_deps: + continue + + parents = False + if task.endswith('-'): + parents = True + task = task[:-1] + + if fn in taskData[mc].failed_fns: + continue + + # fn already has mc prefix + tid = fn + ":" + task + self.target_tids.append(tid) + if tid not in taskData[mc].taskentries: + import difflib + tasks = [] + for x in taskData[mc].taskentries: + if x.startswith(fn + ":"): + tasks.append(taskname_from_tid(x)) + close_matches = difflib.get_close_matches(task, tasks, cutoff=0.7) + if close_matches: + extra = ". Close matches:\n %s" % "\n ".join(close_matches) + else: + extra = "" + bb.msg.fatal("RunQueue", "Task %s does not exist for target %s (%s)%s" % (task, target, tid, extra)) + + # For tasks called "XXXX-", ony run their dependencies + if parents: + for i in self.runtaskentries[tid].depends: + mark_active(i, 1) + else: + mark_active(tid, 1) + + self.init_progress_reporter.next_stage() + + # Step C - Prune all inactive tasks + # + # Once all active tasks are marked, prune the ones we don't need. + + # Handle --runall + if self.cooker.configuration.runall: + # re-run the mark_active and then drop unused tasks from new list + reduced_tasklist = set(self.runtaskentries.keys()) + for tid in list(self.runtaskentries.keys()): + if tid not in runq_build: + reduced_tasklist.remove(tid) + runq_build = {} + + for task in self.cooker.configuration.runall: + if not task.startswith("do_"): + task = "do_{0}".format(task) + runall_tids = set() + for tid in reduced_tasklist: + wanttid = "{0}:{1}".format(fn_from_tid(tid), task) + if wanttid in self.runtaskentries: + runall_tids.add(wanttid) + + for tid in list(runall_tids): + mark_active(tid, 1) + if self.cooker.configuration.force: + invalidate_task(tid, False) + + delcount = set() + for tid in list(self.runtaskentries.keys()): + if tid not in runq_build: + delcount.add(tid) + del self.runtaskentries[tid] + + if self.cooker.configuration.runall: + if not self.runtaskentries: + bb.msg.fatal("RunQueue", "Could not find any tasks with the tasknames %s to run within the recipes of the taskgraphs of the targets %s" % (str(self.cooker.configuration.runall), str(self.targets))) + + self.init_progress_reporter.next_stage() + + # Handle runonly + if self.cooker.configuration.runonly: + # re-run the mark_active and then drop unused tasks from new list + runq_build = {} + + for task in self.cooker.configuration.runonly: + if not task.startswith("do_"): + task = "do_{0}".format(task) + runonly_tids = [k for k in self.runtaskentries.keys() if taskname_from_tid(k) == task] + + for tid in runonly_tids: + mark_active(tid, 1) + if self.cooker.configuration.force: + invalidate_task(tid, False) + + for tid in list(self.runtaskentries.keys()): + if tid not in runq_build: + delcount.add(tid) + del self.runtaskentries[tid] + + if not self.runtaskentries: + bb.msg.fatal("RunQueue", "Could not find any tasks with the tasknames %s to run within the taskgraphs of the targets %s" % (str(self.cooker.configuration.runonly), str(self.targets))) + + # + # Step D - Sanity checks and computation + # + + # Check to make sure we still have tasks to run + if not self.runtaskentries: + if not taskData[''].halt: + bb.msg.fatal("RunQueue", "All buildable tasks have been run but the build is incomplete (--continue mode). Errors for the tasks that failed will have been printed above.") + else: + bb.msg.fatal("RunQueue", "No active tasks and not in --continue mode?! Please report this bug.") + + logger.verbose("Pruned %s inactive tasks, %s left", len(delcount), len(self.runtaskentries)) + + logger.verbose("Assign Weightings") + + self.init_progress_reporter.next_stage() + + # Generate a list of reverse dependencies to ease future calculations + for tid in self.runtaskentries: + for dep in self.runtaskentries[tid].depends: + self.runtaskentries[dep].revdeps.add(tid) + + self.init_progress_reporter.next_stage() + + # Identify tasks at the end of dependency chains + # Error on circular dependency loops (length two) + endpoints = [] + for tid in self.runtaskentries: + revdeps = self.runtaskentries[tid].revdeps + if not revdeps: + endpoints.append(tid) + for dep in revdeps: + if dep in self.runtaskentries[tid].depends: + bb.msg.fatal("RunQueue", "Task %s has circular dependency on %s" % (tid, dep)) + + + logger.verbose("Compute totals (have %s endpoint(s))", len(endpoints)) + + self.init_progress_reporter.next_stage() + + # Calculate task weights + # Check of higher length circular dependencies + self.runq_weight = self.calculate_task_weights(endpoints) + + self.init_progress_reporter.next_stage() + + # Sanity Check - Check for multiple tasks building the same provider + for mc in self.dataCaches: + prov_list = {} + seen_fn = [] + for tid in self.runtaskentries: + (tidmc, fn, taskname, taskfn) = split_tid_mcfn(tid) + if taskfn in seen_fn: + continue + if mc != tidmc: + continue + seen_fn.append(taskfn) + for prov in self.dataCaches[mc].fn_provides[taskfn]: + if prov not in prov_list: + prov_list[prov] = [taskfn] + elif taskfn not in prov_list[prov]: + prov_list[prov].append(taskfn) + for prov in prov_list: + if len(prov_list[prov]) < 2: + continue + if prov in self.multi_provider_allowed: + continue + seen_pn = [] + # If two versions of the same PN are being built its fatal, we don't support it. + for fn in prov_list[prov]: + pn = self.dataCaches[mc].pkg_fn[fn] + if pn not in seen_pn: + seen_pn.append(pn) + else: + bb.fatal("Multiple versions of %s are due to be built (%s). Only one version of a given PN should be built in any given build. You likely need to set PREFERRED_VERSION_%s to select the correct version or don't depend on multiple versions." % (pn, " ".join(prov_list[prov]), pn)) + msgs = ["Multiple .bb files are due to be built which each provide %s:\n %s" % (prov, "\n ".join(prov_list[prov]))] + # + # Construct a list of things which uniquely depend on each provider + # since this may help the user figure out which dependency is triggering this warning + # + msgs.append("\nA list of tasks depending on these providers is shown and may help explain where the dependency comes from.") + deplist = {} + commondeps = None + for provfn in prov_list[prov]: + deps = set() + for tid in self.runtaskentries: + fn = fn_from_tid(tid) + if fn != provfn: + continue + for dep in self.runtaskentries[tid].revdeps: + fn = fn_from_tid(dep) + if fn == provfn: + continue + deps.add(dep) + if not commondeps: + commondeps = set(deps) + else: + commondeps &= deps + deplist[provfn] = deps + for provfn in deplist: + msgs.append("\n%s has unique dependees:\n %s" % (provfn, "\n ".join(deplist[provfn] - commondeps))) + # + # Construct a list of provides and runtime providers for each recipe + # (rprovides has to cover RPROVIDES, PACKAGES, PACKAGES_DYNAMIC) + # + msgs.append("\nIt could be that one recipe provides something the other doesn't and should. The following provider and runtime provider differences may be helpful.") + provide_results = {} + rprovide_results = {} + commonprovs = None + commonrprovs = None + for provfn in prov_list[prov]: + provides = set(self.dataCaches[mc].fn_provides[provfn]) + rprovides = set() + for rprovide in self.dataCaches[mc].rproviders: + if provfn in self.dataCaches[mc].rproviders[rprovide]: + rprovides.add(rprovide) + for package in self.dataCaches[mc].packages: + if provfn in self.dataCaches[mc].packages[package]: + rprovides.add(package) + for package in self.dataCaches[mc].packages_dynamic: + if provfn in self.dataCaches[mc].packages_dynamic[package]: + rprovides.add(package) + if not commonprovs: + commonprovs = set(provides) + else: + commonprovs &= provides + provide_results[provfn] = provides + if not commonrprovs: + commonrprovs = set(rprovides) + else: + commonrprovs &= rprovides + rprovide_results[provfn] = rprovides + #msgs.append("\nCommon provides:\n %s" % ("\n ".join(commonprovs))) + #msgs.append("\nCommon rprovides:\n %s" % ("\n ".join(commonrprovs))) + for provfn in prov_list[prov]: + msgs.append("\n%s has unique provides:\n %s" % (provfn, "\n ".join(provide_results[provfn] - commonprovs))) + msgs.append("\n%s has unique rprovides:\n %s" % (provfn, "\n ".join(rprovide_results[provfn] - commonrprovs))) + + if self.warn_multi_bb: + logger.verbnote("".join(msgs)) + else: + logger.error("".join(msgs)) + + self.init_progress_reporter.next_stage() + self.init_progress_reporter.next_stage() + + # Iterate over the task list looking for tasks with a 'setscene' function + self.runq_setscene_tids = set() + if not self.cooker.configuration.nosetscene: + for tid in self.runtaskentries: + (mc, fn, taskname, _) = split_tid_mcfn(tid) + setscenetid = tid + "_setscene" + if setscenetid not in taskData[mc].taskentries: + continue + self.runq_setscene_tids.add(tid) + + self.init_progress_reporter.next_stage() + + # Invalidate task if force mode active + if self.cooker.configuration.force: + for tid in self.target_tids: + invalidate_task(tid, False) + + # Invalidate task if invalidate mode active + if self.cooker.configuration.invalidate_stamp: + for tid in self.target_tids: + fn = fn_from_tid(tid) + for st in self.cooker.configuration.invalidate_stamp.split(','): + if not st.startswith("do_"): + st = "do_%s" % st + invalidate_task(fn + ":" + st, True) + + self.init_progress_reporter.next_stage() + + # Create and print to the logs a virtual/xxxx -> PN (fn) table + for mc in taskData: + virtmap = taskData[mc].get_providermap(prefix="virtual/") + virtpnmap = {} + for v in virtmap: + virtpnmap[v] = self.dataCaches[mc].pkg_fn[virtmap[v]] + bb.debug(2, "%s resolved to: %s (%s)" % (v, virtpnmap[v], virtmap[v])) + if hasattr(bb.parse.siggen, "tasks_resolved"): + bb.parse.siggen.tasks_resolved(virtmap, virtpnmap, self.dataCaches[mc]) + + self.init_progress_reporter.next_stage() + + bb.parse.siggen.set_setscene_tasks(self.runq_setscene_tids) + + # Iterate over the task list and call into the siggen code + dealtwith = set() + todeal = set(self.runtaskentries) + while todeal: + for tid in todeal.copy(): + if not (self.runtaskentries[tid].depends - dealtwith): + dealtwith.add(tid) + todeal.remove(tid) + self.prepare_task_hash(tid) + + bb.parse.siggen.writeout_file_checksum_cache() + + #self.dump_data() + return len(self.runtaskentries) + + def prepare_task_hash(self, tid): + dc = bb.parse.siggen.get_data_caches(self.dataCaches, mc_from_tid(tid)) + bb.parse.siggen.prep_taskhash(tid, self.runtaskentries[tid].depends, dc) + self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(tid, self.runtaskentries[tid].depends, dc) + self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(tid) + + def dump_data(self): + """ + Dump some debug information on the internal data structures + """ + logger.debug3("run_tasks:") + for tid in self.runtaskentries: + logger.debug3(" %s: %s Deps %s RevDeps %s", tid, + self.runtaskentries[tid].weight, + self.runtaskentries[tid].depends, + self.runtaskentries[tid].revdeps) + +class RunQueueWorker(): + def __init__(self, process, pipe): + self.process = process + self.pipe = pipe + +class RunQueue: + def __init__(self, cooker, cfgData, dataCaches, taskData, targets): + + self.cooker = cooker + self.cfgData = cfgData + self.rqdata = RunQueueData(self, cooker, cfgData, dataCaches, taskData, targets) + + self.hashvalidate = cfgData.getVar("BB_HASHCHECK_FUNCTION") or None + self.depvalidate = cfgData.getVar("BB_SETSCENE_DEPVALID") or None + + self.state = runQueuePrepare + + # For disk space monitor + # Invoked at regular time intervals via the bitbake heartbeat event + # while the build is running. We generate a unique name for the handler + # here, just in case that there ever is more than one RunQueue instance, + # start the handler when reaching runQueueSceneInit, and stop it when + # done with the build. + self.dm = monitordisk.diskMonitor(cfgData) + self.dm_event_handler_name = '_bb_diskmonitor_' + str(id(self)) + self.dm_event_handler_registered = False + self.rqexe = None + self.worker = {} + self.fakeworker = {} + + def _start_worker(self, mc, fakeroot = False, rqexec = None): + logger.debug("Starting bitbake-worker") + magic = "decafbad" + if self.cooker.configuration.profile: + magic = "decafbadbad" + fakerootlogs = None + if fakeroot: + magic = magic + "beef" + mcdata = self.cooker.databuilder.mcdata[mc] + fakerootcmd = shlex.split(mcdata.getVar("FAKEROOTCMD")) + fakerootenv = (mcdata.getVar("FAKEROOTBASEENV") or "").split() + env = os.environ.copy() + for key, value in (var.split('=') for var in fakerootenv): + env[key] = value + worker = subprocess.Popen(fakerootcmd + ["bitbake-worker", magic], stdout=subprocess.PIPE, stdin=subprocess.PIPE, env=env) + fakerootlogs = self.rqdata.dataCaches[mc].fakerootlogs + else: + worker = subprocess.Popen(["bitbake-worker", magic], stdout=subprocess.PIPE, stdin=subprocess.PIPE) + bb.utils.nonblockingfd(worker.stdout) + workerpipe = runQueuePipe(worker.stdout, None, self.cfgData, self, rqexec, fakerootlogs=fakerootlogs) + + workerdata = { + "taskdeps" : self.rqdata.dataCaches[mc].task_deps, + "fakerootenv" : self.rqdata.dataCaches[mc].fakerootenv, + "fakerootdirs" : self.rqdata.dataCaches[mc].fakerootdirs, + "fakerootnoenv" : self.rqdata.dataCaches[mc].fakerootnoenv, + "sigdata" : bb.parse.siggen.get_taskdata(), + "logdefaultlevel" : bb.msg.loggerDefaultLogLevel, + "build_verbose_shell" : self.cooker.configuration.build_verbose_shell, + "build_verbose_stdout" : self.cooker.configuration.build_verbose_stdout, + "logdefaultdomain" : bb.msg.loggerDefaultDomains, + "prhost" : self.cooker.prhost, + "buildname" : self.cfgData.getVar("BUILDNAME"), + "date" : self.cfgData.getVar("DATE"), + "time" : self.cfgData.getVar("TIME"), + "hashservaddr" : self.cooker.hashservaddr, + "umask" : self.cfgData.getVar("BB_DEFAULT_UMASK"), + } + + worker.stdin.write(b"" + pickle.dumps(self.cooker.configuration) + b"") + worker.stdin.write(b"" + pickle.dumps(self.cooker.extraconfigdata) + b"") + worker.stdin.write(b"" + pickle.dumps(workerdata) + b"") + worker.stdin.flush() + + return RunQueueWorker(worker, workerpipe) + + def _teardown_worker(self, worker): + if not worker: + return + logger.debug("Teardown for bitbake-worker") + try: + worker.process.stdin.write(b"") + worker.process.stdin.flush() + worker.process.stdin.close() + except IOError: + pass + while worker.process.returncode is None: + worker.pipe.read() + worker.process.poll() + while worker.pipe.read(): + continue + worker.pipe.close() + + def start_worker(self): + if self.worker: + self.teardown_workers() + self.teardown = False + for mc in self.rqdata.dataCaches: + self.worker[mc] = self._start_worker(mc) + + def start_fakeworker(self, rqexec, mc): + if not mc in self.fakeworker: + self.fakeworker[mc] = self._start_worker(mc, True, rqexec) + + def teardown_workers(self): + self.teardown = True + for mc in self.worker: + self._teardown_worker(self.worker[mc]) + self.worker = {} + for mc in self.fakeworker: + self._teardown_worker(self.fakeworker[mc]) + self.fakeworker = {} + + def read_workers(self): + for mc in self.worker: + self.worker[mc].pipe.read() + for mc in self.fakeworker: + self.fakeworker[mc].pipe.read() + + def active_fds(self): + fds = [] + for mc in self.worker: + fds.append(self.worker[mc].pipe.input) + for mc in self.fakeworker: + fds.append(self.fakeworker[mc].pipe.input) + return fds + + def check_stamp_task(self, tid, taskname = None, recurse = False, cache = None): + def get_timestamp(f): + try: + if not os.access(f, os.F_OK): + return None + return os.stat(f)[stat.ST_MTIME] + except: + return None + + (mc, fn, tn, taskfn) = split_tid_mcfn(tid) + if taskname is None: + taskname = tn + + stampfile = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn) + + # If the stamp is missing, it's not current + if not os.access(stampfile, os.F_OK): + logger.debug2("Stampfile %s not available", stampfile) + return False + # If it's a 'nostamp' task, it's not current + taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] + if 'nostamp' in taskdep and taskname in taskdep['nostamp']: + logger.debug2("%s.%s is nostamp\n", fn, taskname) + return False + + if taskname != "do_setscene" and taskname.endswith("_setscene"): + return True + + if cache is None: + cache = {} + + iscurrent = True + t1 = get_timestamp(stampfile) + for dep in self.rqdata.runtaskentries[tid].depends: + if iscurrent: + (mc2, fn2, taskname2, taskfn2) = split_tid_mcfn(dep) + stampfile2 = bb.build.stampfile(taskname2, self.rqdata.dataCaches[mc2], taskfn2) + stampfile3 = bb.build.stampfile(taskname2 + "_setscene", self.rqdata.dataCaches[mc2], taskfn2) + t2 = get_timestamp(stampfile2) + t3 = get_timestamp(stampfile3) + if t3 and not t2: + continue + if t3 and t3 > t2: + continue + if fn == fn2: + if not t2: + logger.debug2('Stampfile %s does not exist', stampfile2) + iscurrent = False + break + if t1 < t2: + logger.debug2('Stampfile %s < %s', stampfile, stampfile2) + iscurrent = False + break + if recurse and iscurrent: + if dep in cache: + iscurrent = cache[dep] + if not iscurrent: + logger.debug2('Stampfile for dependency %s:%s invalid (cached)' % (fn2, taskname2)) + else: + iscurrent = self.check_stamp_task(dep, recurse=True, cache=cache) + cache[dep] = iscurrent + if recurse: + cache[tid] = iscurrent + return iscurrent + + def validate_hashes(self, tocheck, data, currentcount=0, siginfo=False, summary=True): + valid = set() + if self.hashvalidate: + sq_data = {} + sq_data['hash'] = {} + sq_data['hashfn'] = {} + sq_data['unihash'] = {} + for tid in tocheck: + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + sq_data['hash'][tid] = self.rqdata.runtaskentries[tid].hash + sq_data['hashfn'][tid] = self.rqdata.dataCaches[mc].hashfn[taskfn] + sq_data['unihash'][tid] = self.rqdata.runtaskentries[tid].unihash + + valid = self.validate_hash(sq_data, data, siginfo, currentcount, summary) + + return valid + + def validate_hash(self, sq_data, d, siginfo, currentcount, summary): + locs = {"sq_data" : sq_data, "d" : d, "siginfo" : siginfo, "currentcount" : currentcount, "summary" : summary} + + # Metadata has **kwargs so args can be added, sq_data can also gain new fields + call = self.hashvalidate + "(sq_data, d, siginfo=siginfo, currentcount=currentcount, summary=summary)" + + return bb.utils.better_eval(call, locs) + + def _execute_runqueue(self): + """ + Run the tasks in a queue prepared by rqdata.prepare() + Upon failure, optionally try to recover the build using any alternate providers + (if the halt on failure configuration option isn't set) + """ + + retval = True + + if self.state is runQueuePrepare: + # NOTE: if you add, remove or significantly refactor the stages of this + # process then you should recalculate the weightings here. This is quite + # easy to do - just change the next line temporarily to pass debug=True as + # the last parameter and you'll get a printout of the weightings as well + # as a map to the lines where next_stage() was called. Of course this isn't + # critical, but it helps to keep the progress reporting accurate. + self.rqdata.init_progress_reporter = bb.progress.MultiStageProcessProgressReporter(self.cooker.data, + "Initialising tasks", + [43, 967, 4, 3, 1, 5, 3, 7, 13, 1, 2, 1, 1, 246, 35, 1, 38, 1, 35, 2, 338, 204, 142, 3, 3, 37, 244]) + if self.rqdata.prepare() == 0: + self.state = runQueueComplete + else: + self.state = runQueueSceneInit + bb.parse.siggen.save_unitaskhashes() + + if self.state is runQueueSceneInit: + self.rqdata.init_progress_reporter.next_stage() + + # we are ready to run, emit dependency info to any UI or class which + # needs it + depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData) + self.rqdata.init_progress_reporter.next_stage() + bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data) + + if not self.dm_event_handler_registered: + res = bb.event.register(self.dm_event_handler_name, + lambda x: self.dm.check(self) if self.state in [runQueueRunning, runQueueCleanUp] else False, + ('bb.event.HeartbeatEvent',), data=self.cfgData) + self.dm_event_handler_registered = True + + dump = self.cooker.configuration.dump_signatures + if dump: + self.rqdata.init_progress_reporter.finish() + if 'printdiff' in dump: + invalidtasks = self.print_diffscenetasks() + self.dump_signatures(dump) + if 'printdiff' in dump: + self.write_diffscenetasks(invalidtasks) + self.state = runQueueComplete + + if self.state is runQueueSceneInit: + self.rqdata.init_progress_reporter.next_stage() + self.start_worker() + self.rqdata.init_progress_reporter.next_stage() + self.rqexe = RunQueueExecute(self) + + # If we don't have any setscene functions, skip execution + if not self.rqdata.runq_setscene_tids: + logger.info('No setscene tasks') + for tid in self.rqdata.runtaskentries: + if not self.rqdata.runtaskentries[tid].depends: + self.rqexe.setbuildable(tid) + self.rqexe.tasks_notcovered.add(tid) + self.rqexe.sqdone = True + logger.info('Executing Tasks') + self.state = runQueueRunning + + if self.state is runQueueRunning: + retval = self.rqexe.execute() + + if self.state is runQueueCleanUp: + retval = self.rqexe.finish() + + build_done = self.state is runQueueComplete or self.state is runQueueFailed + + if build_done and self.dm_event_handler_registered: + bb.event.remove(self.dm_event_handler_name, None, data=self.cfgData) + self.dm_event_handler_registered = False + + if build_done and self.rqexe: + bb.parse.siggen.save_unitaskhashes() + self.teardown_workers() + if self.rqexe: + if self.rqexe.stats.failed: + logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and %d failed.", self.rqexe.stats.completed + self.rqexe.stats.failed, self.rqexe.stats.skipped, self.rqexe.stats.failed) + else: + # Let's avoid the word "failed" if nothing actually did + logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and all succeeded.", self.rqexe.stats.completed, self.rqexe.stats.skipped) + + if self.state is runQueueFailed: + raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) + + if self.state is runQueueComplete: + # All done + return False + + # Loop + return retval + + def execute_runqueue(self): + # Catch unexpected exceptions and ensure we exit when an error occurs, not loop. + try: + return self._execute_runqueue() + except bb.runqueue.TaskFailure: + raise + except SystemExit: + raise + except bb.BBHandledException: + try: + self.teardown_workers() + except: + pass + self.state = runQueueComplete + raise + except Exception as err: + logger.exception("An uncaught exception occurred in runqueue") + try: + self.teardown_workers() + except: + pass + self.state = runQueueComplete + raise + + def finish_runqueue(self, now = False): + if not self.rqexe: + self.state = runQueueComplete + return + + if now: + self.rqexe.finish_now() + else: + self.rqexe.finish() + + def rq_dump_sigfn(self, fn, options): + bb_cache = bb.cache.NoCache(self.cooker.databuilder) + mc = bb.runqueue.mc_from_tid(fn) + the_data = bb_cache.loadDataFull(fn, self.cooker.collections[mc].get_file_appends(fn)) + siggen = bb.parse.siggen + dataCaches = self.rqdata.dataCaches + siggen.dump_sigfn(fn, dataCaches, options) + + def dump_signatures(self, options): + fns = set() + bb.note("Reparsing files to collect dependency data") + + for tid in self.rqdata.runtaskentries: + fn = fn_from_tid(tid) + fns.add(fn) + + max_process = int(self.cfgData.getVar("BB_NUMBER_PARSE_THREADS") or os.cpu_count() or 1) + # We cannot use the real multiprocessing.Pool easily due to some local data + # that can't be pickled. This is a cheap multi-process solution. + launched = [] + while fns: + if len(launched) < max_process: + p = Process(target=self.rq_dump_sigfn, args=(fns.pop(), options)) + p.start() + launched.append(p) + for q in launched: + # The finished processes are joined when calling is_alive() + if not q.is_alive(): + launched.remove(q) + for p in launched: + p.join() + + bb.parse.siggen.dump_sigs(self.rqdata.dataCaches, options) + + return + + def print_diffscenetasks(self): + + noexec = [] + tocheck = set() + + for tid in self.rqdata.runtaskentries: + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] + + if 'noexec' in taskdep and taskname in taskdep['noexec']: + noexec.append(tid) + continue + + tocheck.add(tid) + + valid_new = self.validate_hashes(tocheck, self.cooker.data, 0, True, summary=False) + + # Tasks which are both setscene and noexec never care about dependencies + # We therefore find tasks which are setscene and noexec and mark their + # unique dependencies as valid. + for tid in noexec: + if tid not in self.rqdata.runq_setscene_tids: + continue + for dep in self.rqdata.runtaskentries[tid].depends: + hasnoexecparents = True + for dep2 in self.rqdata.runtaskentries[dep].revdeps: + if dep2 in self.rqdata.runq_setscene_tids and dep2 in noexec: + continue + hasnoexecparents = False + break + if hasnoexecparents: + valid_new.add(dep) + + invalidtasks = set() + for tid in self.rqdata.runtaskentries: + if tid not in valid_new and tid not in noexec: + invalidtasks.add(tid) + + found = set() + processed = set() + for tid in invalidtasks: + toprocess = set([tid]) + while toprocess: + next = set() + for t in toprocess: + for dep in self.rqdata.runtaskentries[t].depends: + if dep in invalidtasks: + found.add(tid) + if dep not in processed: + processed.add(dep) + next.add(dep) + toprocess = next + if tid in found: + toprocess = set() + + tasklist = [] + for tid in invalidtasks.difference(found): + tasklist.append(tid) + + if tasklist: + bb.plain("The differences between the current build and any cached tasks start at the following tasks:\n" + "\n".join(tasklist)) + + return invalidtasks.difference(found) + + def write_diffscenetasks(self, invalidtasks): + + # Define recursion callback + def recursecb(key, hash1, hash2): + hashes = [hash1, hash2] + hashfiles = bb.siggen.find_siginfo(key, None, hashes, self.cfgData) + + recout = [] + if len(hashfiles) == 2: + out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb) + recout.extend(list(' ' + l for l in out2)) + else: + recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2)) + + return recout + + + for tid in invalidtasks: + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] + h = self.rqdata.runtaskentries[tid].hash + matches = bb.siggen.find_siginfo(pn, taskname, [], self.cooker.databuilder.mcdata[mc]) + match = None + for m in matches: + if h in m: + match = m + if match is None: + bb.fatal("Can't find a task we're supposed to have written out? (hash: %s)?" % h) + matches = {k : v for k, v in iter(matches.items()) if h not in k} + if matches: + latestmatch = sorted(matches.keys(), key=lambda f: matches[f])[-1] + prevh = __find_sha256__.search(latestmatch).group(0) + output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb) + bb.plain("\nTask %s:%s couldn't be used from the cache because:\n We need hash %s, closest matching task was %s\n " % (pn, taskname, h, prevh) + '\n '.join(output)) + + +class RunQueueExecute: + + def __init__(self, rq): + self.rq = rq + self.cooker = rq.cooker + self.cfgData = rq.cfgData + self.rqdata = rq.rqdata + + self.number_tasks = int(self.cfgData.getVar("BB_NUMBER_THREADS") or 1) + self.scheduler = self.cfgData.getVar("BB_SCHEDULER") or "speed" + self.max_cpu_pressure = self.cfgData.getVar("BB_PRESSURE_MAX_CPU") + self.max_io_pressure = self.cfgData.getVar("BB_PRESSURE_MAX_IO") + self.max_memory_pressure = self.cfgData.getVar("BB_PRESSURE_MAX_MEMORY") + + self.sq_buildable = set() + self.sq_running = set() + self.sq_live = set() + + self.updated_taskhash_queue = [] + self.pending_migrations = set() + + self.runq_buildable = set() + self.runq_running = set() + self.runq_complete = set() + self.runq_tasksrun = set() + + self.build_stamps = {} + self.build_stamps2 = [] + self.failed_tids = [] + self.sq_deferred = {} + + self.stampcache = {} + + self.holdoff_tasks = set() + self.holdoff_need_update = True + self.sqdone = False + + self.stats = RunQueueStats(len(self.rqdata.runtaskentries), len(self.rqdata.runq_setscene_tids)) + + for mc in rq.worker: + rq.worker[mc].pipe.setrunqueueexec(self) + for mc in rq.fakeworker: + rq.fakeworker[mc].pipe.setrunqueueexec(self) + + if self.number_tasks <= 0: + bb.fatal("Invalid BB_NUMBER_THREADS %s" % self.number_tasks) + + lower_limit = 1.0 + upper_limit = 1000000.0 + if self.max_cpu_pressure: + self.max_cpu_pressure = float(self.max_cpu_pressure) + if self.max_cpu_pressure < lower_limit: + bb.fatal("Invalid BB_PRESSURE_MAX_CPU %s, minimum value is %s." % (self.max_cpu_pressure, lower_limit)) + if self.max_cpu_pressure > upper_limit: + bb.warn("Your build will be largely unregulated since BB_PRESSURE_MAX_CPU is set to %s. It is very unlikely that such high pressure will be experienced." % (self.max_cpu_pressure)) + + if self.max_io_pressure: + self.max_io_pressure = float(self.max_io_pressure) + if self.max_io_pressure < lower_limit: + bb.fatal("Invalid BB_PRESSURE_MAX_IO %s, minimum value is %s." % (self.max_io_pressure, lower_limit)) + if self.max_io_pressure > upper_limit: + bb.warn("Your build will be largely unregulated since BB_PRESSURE_MAX_IO is set to %s. It is very unlikely that such high pressure will be experienced." % (self.max_io_pressure)) + + if self.max_memory_pressure: + self.max_memory_pressure = float(self.max_memory_pressure) + if self.max_memory_pressure < lower_limit: + bb.fatal("Invalid BB_PRESSURE_MAX_MEMORY %s, minimum value is %s." % (self.max_memory_pressure, lower_limit)) + if self.max_memory_pressure > upper_limit: + bb.warn("Your build will be largely unregulated since BB_PRESSURE_MAX_MEMORY is set to %s. It is very unlikely that such high pressure will be experienced." % (self.max_io_pressure)) + + # List of setscene tasks which we've covered + self.scenequeue_covered = set() + # List of tasks which are covered (including setscene ones) + self.tasks_covered = set() + self.tasks_scenequeue_done = set() + self.scenequeue_notcovered = set() + self.tasks_notcovered = set() + self.scenequeue_notneeded = set() + + # We can't skip specified target tasks which aren't setscene tasks + self.cantskip = set(self.rqdata.target_tids) + self.cantskip.difference_update(self.rqdata.runq_setscene_tids) + self.cantskip.intersection_update(self.rqdata.runtaskentries) + + schedulers = self.get_schedulers() + for scheduler in schedulers: + if self.scheduler == scheduler.name: + self.sched = scheduler(self, self.rqdata) + logger.debug("Using runqueue scheduler '%s'", scheduler.name) + break + else: + bb.fatal("Invalid scheduler '%s'. Available schedulers: %s" % + (self.scheduler, ", ".join(obj.name for obj in schedulers))) + + #if self.rqdata.runq_setscene_tids: + self.sqdata = SQData() + build_scenequeue_data(self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self) + + def runqueue_process_waitpid(self, task, status, fakerootlog=None): + + # self.build_stamps[pid] may not exist when use shared work directory. + if task in self.build_stamps: + self.build_stamps2.remove(self.build_stamps[task]) + del self.build_stamps[task] + + if task in self.sq_live: + if status != 0: + self.sq_task_fail(task, status) + else: + self.sq_task_complete(task) + self.sq_live.remove(task) + self.stats.updateActiveSetscene(len(self.sq_live)) + else: + if status != 0: + self.task_fail(task, status, fakerootlog=fakerootlog) + else: + self.task_complete(task) + return True + + def finish_now(self): + for mc in self.rq.worker: + try: + self.rq.worker[mc].process.stdin.write(b"") + self.rq.worker[mc].process.stdin.flush() + except IOError: + # worker must have died? + pass + for mc in self.rq.fakeworker: + try: + self.rq.fakeworker[mc].process.stdin.write(b"") + self.rq.fakeworker[mc].process.stdin.flush() + except IOError: + # worker must have died? + pass + + if self.failed_tids: + self.rq.state = runQueueFailed + return + + self.rq.state = runQueueComplete + return + + def finish(self): + self.rq.state = runQueueCleanUp + + active = self.stats.active + len(self.sq_live) + if active > 0: + bb.event.fire(runQueueExitWait(active), self.cfgData) + self.rq.read_workers() + return self.rq.active_fds() + + if self.failed_tids: + self.rq.state = runQueueFailed + return True + + self.rq.state = runQueueComplete + return True + + # Used by setscene only + def check_dependencies(self, task, taskdeps): + if not self.rq.depvalidate: + return False + + # Must not edit parent data + taskdeps = set(taskdeps) + + taskdata = {} + taskdeps.add(task) + for dep in taskdeps: + (mc, fn, taskname, taskfn) = split_tid_mcfn(dep) + pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] + taskdata[dep] = [pn, taskname, fn] + call = self.rq.depvalidate + "(task, taskdata, notneeded, d)" + locs = { "task" : task, "taskdata" : taskdata, "notneeded" : self.scenequeue_notneeded, "d" : self.cooker.data } + valid = bb.utils.better_eval(call, locs) + return valid + + def can_start_task(self): + active = self.stats.active + len(self.sq_live) + can_start = active < self.number_tasks + return can_start + + def get_schedulers(self): + schedulers = set(obj for obj in globals().values() + if type(obj) is type and + issubclass(obj, RunQueueScheduler)) + + user_schedulers = self.cfgData.getVar("BB_SCHEDULERS") + if user_schedulers: + for sched in user_schedulers.split(): + if not "." in sched: + bb.note("Ignoring scheduler '%s' from BB_SCHEDULERS: not an import" % sched) + continue + + modname, name = sched.rsplit(".", 1) + try: + module = __import__(modname, fromlist=(name,)) + except ImportError as exc: + logger.critical("Unable to import scheduler '%s' from '%s': %s" % (name, modname, exc)) + raise SystemExit(1) + else: + schedulers.add(getattr(module, name)) + return schedulers + + def setbuildable(self, task): + self.runq_buildable.add(task) + self.sched.newbuildable(task) + + def task_completeoutright(self, task): + """ + Mark a task as completed + Look at the reverse dependencies and mark any task with + completed dependencies as buildable + """ + self.runq_complete.add(task) + for revdep in self.rqdata.runtaskentries[task].revdeps: + if revdep in self.runq_running: + continue + if revdep in self.runq_buildable: + continue + alldeps = True + for dep in self.rqdata.runtaskentries[revdep].depends: + if dep not in self.runq_complete: + alldeps = False + break + if alldeps: + self.setbuildable(revdep) + logger.debug("Marking task %s as buildable", revdep) + + found = None + for t in sorted(self.sq_deferred.copy()): + if self.sq_deferred[t] == task: + # Allow the next deferred task to run. Any other deferred tasks should be deferred after that task. + # We shouldn't allow all to run at once as it is prone to races. + if not found: + bb.note("Deferred task %s now buildable" % t) + del self.sq_deferred[t] + update_scenequeue_data([t], self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=False) + found = t + else: + bb.note("Deferring %s after %s" % (t, found)) + self.sq_deferred[t] = found + + def task_complete(self, task): + self.stats.taskCompleted() + bb.event.fire(runQueueTaskCompleted(task, self.stats, self.rq), self.cfgData) + self.task_completeoutright(task) + self.runq_tasksrun.add(task) + + def task_fail(self, task, exitcode, fakerootlog=None): + """ + Called when a task has failed + Updates the state engine with the failure + """ + self.stats.taskFailed() + self.failed_tids.append(task) + + fakeroot_log = [] + if fakerootlog and os.path.exists(fakerootlog): + with open(fakerootlog) as fakeroot_log_file: + fakeroot_failed = False + for line in reversed(fakeroot_log_file.readlines()): + for fakeroot_error in ['mismatch', 'error', 'fatal']: + if fakeroot_error in line.lower(): + fakeroot_failed = True + if 'doing new pid setup and server start' in line: + break + fakeroot_log.append(line) + + if not fakeroot_failed: + fakeroot_log = [] + + bb.event.fire(runQueueTaskFailed(task, self.stats, exitcode, self.rq, fakeroot_log=("".join(fakeroot_log) or None)), self.cfgData) + + if self.rqdata.taskData[''].halt: + self.rq.state = runQueueCleanUp + + def task_skip(self, task, reason): + self.runq_running.add(task) + self.setbuildable(task) + bb.event.fire(runQueueTaskSkipped(task, self.stats, self.rq, reason), self.cfgData) + self.task_completeoutright(task) + self.stats.taskSkipped() + self.stats.taskCompleted() + + def summarise_scenequeue_errors(self): + err = False + if not self.sqdone: + logger.debug('We could skip tasks %s', "\n".join(sorted(self.scenequeue_covered))) + completeevent = sceneQueueComplete(self.stats, self.rq) + bb.event.fire(completeevent, self.cfgData) + if self.sq_deferred: + logger.error("Scenequeue had deferred entries: %s" % pprint.pformat(self.sq_deferred)) + err = True + if self.updated_taskhash_queue: + logger.error("Scenequeue had unprocessed changed taskhash entries: %s" % pprint.pformat(self.updated_taskhash_queue)) + err = True + if self.holdoff_tasks: + logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks)) + err = True + + for tid in self.scenequeue_covered.intersection(self.scenequeue_notcovered): + # No task should end up in both covered and uncovered, that is a bug. + logger.error("Setscene task %s in both covered and notcovered." % tid) + + for tid in self.rqdata.runq_setscene_tids: + if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered: + err = True + logger.error("Setscene Task %s was never marked as covered or not covered" % tid) + if tid not in self.sq_buildable: + err = True + logger.error("Setscene Task %s was never marked as buildable" % tid) + if tid not in self.sq_running: + err = True + logger.error("Setscene Task %s was never marked as running" % tid) + + for x in self.rqdata.runtaskentries: + if x not in self.tasks_covered and x not in self.tasks_notcovered: + logger.error("Task %s was never moved from the setscene queue" % x) + err = True + if x not in self.tasks_scenequeue_done: + logger.error("Task %s was never processed by the setscene code" % x) + err = True + if not self.rqdata.runtaskentries[x].depends and x not in self.runq_buildable: + logger.error("Task %s was never marked as buildable by the setscene code" % x) + err = True + return err + + + def execute(self): + """ + Run the tasks in a queue prepared by prepare_runqueue + """ + + self.rq.read_workers() + if self.updated_taskhash_queue or self.pending_migrations: + self.process_possible_migrations() + + if not hasattr(self, "sorted_setscene_tids"): + # Don't want to sort this set every execution + self.sorted_setscene_tids = sorted(self.rqdata.runq_setscene_tids) + + task = None + if not self.sqdone and self.can_start_task(): + # Find the next setscene to run + for nexttask in self.sorted_setscene_tids: + if nexttask in self.sq_buildable and nexttask not in self.sq_running and self.sqdata.stamps[nexttask] not in self.build_stamps.values(): + if nexttask not in self.sqdata.unskippable and self.sqdata.sq_revdeps[nexttask] and self.sqdata.sq_revdeps[nexttask].issubset(self.scenequeue_covered) and self.check_dependencies(nexttask, self.sqdata.sq_revdeps[nexttask]): + if nexttask not in self.rqdata.target_tids: + logger.debug2("Skipping setscene for task %s" % nexttask) + self.sq_task_skip(nexttask) + self.scenequeue_notneeded.add(nexttask) + if nexttask in self.sq_deferred: + del self.sq_deferred[nexttask] + return True + # If covered tasks are running, need to wait for them to complete + for t in self.sqdata.sq_covered_tasks[nexttask]: + if t in self.runq_running and t not in self.runq_complete: + continue + if nexttask in self.sq_deferred: + if self.sq_deferred[nexttask] not in self.runq_complete: + continue + logger.debug("Task %s no longer deferred" % nexttask) + del self.sq_deferred[nexttask] + valid = self.rq.validate_hashes(set([nexttask]), self.cooker.data, 0, False, summary=False) + if not valid: + logger.debug("%s didn't become valid, skipping setscene" % nexttask) + self.sq_task_failoutright(nexttask) + return True + if nexttask in self.sqdata.outrightfail: + logger.debug2('No package found, so skipping setscene task %s', nexttask) + self.sq_task_failoutright(nexttask) + return True + if nexttask in self.sqdata.unskippable: + logger.debug2("Setscene task %s is unskippable" % nexttask) + task = nexttask + break + if task is not None: + (mc, fn, taskname, taskfn) = split_tid_mcfn(task) + taskname = taskname + "_setscene" + if self.rq.check_stamp_task(task, taskname_from_tid(task), recurse = True, cache=self.stampcache): + logger.debug2('Stamp for underlying task %s is current, so skipping setscene variant', task) + self.sq_task_failoutright(task) + return True + + if self.cooker.configuration.force: + if task in self.rqdata.target_tids: + self.sq_task_failoutright(task) + return True + + if self.rq.check_stamp_task(task, taskname, cache=self.stampcache): + logger.debug2('Setscene stamp current task %s, so skip it and its dependencies', task) + self.sq_task_skip(task) + return True + + if self.cooker.configuration.skipsetscene: + logger.debug2('No setscene tasks should be executed. Skipping %s', task) + self.sq_task_failoutright(task) + return True + + startevent = sceneQueueTaskStarted(task, self.stats, self.rq) + bb.event.fire(startevent, self.cfgData) + + taskdepdata = self.sq_build_taskdepdata(task) + + taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] + taskhash = self.rqdata.get_task_hash(task) + unihash = self.rqdata.get_task_unihash(task) + if 'fakeroot' in taskdep and taskname in taskdep['fakeroot'] and not self.cooker.configuration.dry_run: + if not mc in self.rq.fakeworker: + self.rq.start_fakeworker(self, mc) + self.rq.fakeworker[mc].process.stdin.write(b"" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, True, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, False)) + b"") + self.rq.fakeworker[mc].process.stdin.flush() + else: + self.rq.worker[mc].process.stdin.write(b"" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, True, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, False)) + b"") + self.rq.worker[mc].process.stdin.flush() + + self.build_stamps[task] = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn, noextra=True) + self.build_stamps2.append(self.build_stamps[task]) + self.sq_running.add(task) + self.sq_live.add(task) + self.stats.updateActiveSetscene(len(self.sq_live)) + if self.can_start_task(): + return True + + self.update_holdofftasks() + + if not self.sq_live and not self.sqdone and not self.sq_deferred and not self.updated_taskhash_queue and not self.holdoff_tasks: + hashequiv_logger.verbose("Setscene tasks completed") + + err = self.summarise_scenequeue_errors() + if err: + self.rq.state = runQueueFailed + return True + + if self.cooker.configuration.setsceneonly: + self.rq.state = runQueueComplete + return True + self.sqdone = True + + if self.stats.total == 0: + # nothing to do + self.rq.state = runQueueComplete + return True + + if self.cooker.configuration.setsceneonly: + task = None + else: + task = self.sched.next() + if task is not None: + (mc, fn, taskname, taskfn) = split_tid_mcfn(task) + + if self.rqdata.setscene_ignore_tasks is not None: + if self.check_setscene_ignore_tasks(task): + self.task_fail(task, "setscene ignore_tasks") + return True + + if task in self.tasks_covered: + logger.debug2("Setscene covered task %s", task) + self.task_skip(task, "covered") + return True + + if self.rq.check_stamp_task(task, taskname, cache=self.stampcache): + logger.debug2("Stamp current task %s", task) + + self.task_skip(task, "existing") + self.runq_tasksrun.add(task) + return True + + taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] + if 'noexec' in taskdep and taskname in taskdep['noexec']: + startevent = runQueueTaskStarted(task, self.stats, self.rq, + noexec=True) + bb.event.fire(startevent, self.cfgData) + self.runq_running.add(task) + self.stats.taskActive() + if not (self.cooker.configuration.dry_run or self.rqdata.setscene_enforce): + bb.build.make_stamp(taskname, self.rqdata.dataCaches[mc], taskfn) + self.task_complete(task) + return True + else: + startevent = runQueueTaskStarted(task, self.stats, self.rq) + bb.event.fire(startevent, self.cfgData) + + taskdepdata = self.build_taskdepdata(task) + + taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] + taskhash = self.rqdata.get_task_hash(task) + unihash = self.rqdata.get_task_unihash(task) + if 'fakeroot' in taskdep and taskname in taskdep['fakeroot'] and not (self.cooker.configuration.dry_run or self.rqdata.setscene_enforce): + if not mc in self.rq.fakeworker: + try: + self.rq.start_fakeworker(self, mc) + except OSError as exc: + logger.critical("Failed to spawn fakeroot worker to run %s: %s" % (task, str(exc))) + self.rq.state = runQueueFailed + self.stats.taskFailed() + return True + self.rq.fakeworker[mc].process.stdin.write(b"" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, False, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, self.rqdata.setscene_enforce)) + b"") + self.rq.fakeworker[mc].process.stdin.flush() + else: + self.rq.worker[mc].process.stdin.write(b"" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, False, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, self.rqdata.setscene_enforce)) + b"") + self.rq.worker[mc].process.stdin.flush() + + self.build_stamps[task] = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn, noextra=True) + self.build_stamps2.append(self.build_stamps[task]) + self.runq_running.add(task) + self.stats.taskActive() + if self.can_start_task(): + return True + + if self.stats.active > 0 or self.sq_live: + self.rq.read_workers() + return self.rq.active_fds() + + # No more tasks can be run. If we have deferred setscene tasks we should run them. + if self.sq_deferred: + deferred_tid = list(self.sq_deferred.keys())[0] + blocking_tid = self.sq_deferred.pop(deferred_tid) + logger.warning("Runqeueue deadlocked on deferred tasks, forcing task %s blocked by %s" % (deferred_tid, blocking_tid)) + return True + + if self.failed_tids: + self.rq.state = runQueueFailed + return True + + # Sanity Checks + err = self.summarise_scenequeue_errors() + for task in self.rqdata.runtaskentries: + if task not in self.runq_buildable: + logger.error("Task %s never buildable!", task) + err = True + elif task not in self.runq_running: + logger.error("Task %s never ran!", task) + err = True + elif task not in self.runq_complete: + logger.error("Task %s never completed!", task) + err = True + + if err: + self.rq.state = runQueueFailed + else: + self.rq.state = runQueueComplete + + return True + + def filtermcdeps(self, task, mc, deps): + ret = set() + for dep in deps: + thismc = mc_from_tid(dep) + if thismc != mc: + continue + ret.add(dep) + return ret + + # We filter out multiconfig dependencies from taskdepdata we pass to the tasks + # as most code can't handle them + def build_taskdepdata(self, task): + taskdepdata = {} + mc = mc_from_tid(task) + next = self.rqdata.runtaskentries[task].depends.copy() + next.add(task) + next = self.filtermcdeps(task, mc, next) + while next: + additional = [] + for revdep in next: + (mc, fn, taskname, taskfn) = split_tid_mcfn(revdep) + pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] + deps = self.rqdata.runtaskentries[revdep].depends + provides = self.rqdata.dataCaches[mc].fn_provides[taskfn] + taskhash = self.rqdata.runtaskentries[revdep].hash + unihash = self.rqdata.runtaskentries[revdep].unihash + deps = self.filtermcdeps(task, mc, deps) + taskdepdata[revdep] = [pn, taskname, fn, deps, provides, taskhash, unihash] + for revdep2 in deps: + if revdep2 not in taskdepdata: + additional.append(revdep2) + next = additional + + #bb.note("Task %s: " % task + str(taskdepdata).replace("], ", "],\n")) + return taskdepdata + + def update_holdofftasks(self): + + if not self.holdoff_need_update: + return + + notcovered = set(self.scenequeue_notcovered) + notcovered |= self.cantskip + for tid in self.scenequeue_notcovered: + notcovered |= self.sqdata.sq_covered_tasks[tid] + notcovered |= self.sqdata.unskippable.difference(self.rqdata.runq_setscene_tids) + notcovered.intersection_update(self.tasks_scenequeue_done) + + covered = set(self.scenequeue_covered) + for tid in self.scenequeue_covered: + covered |= self.sqdata.sq_covered_tasks[tid] + covered.difference_update(notcovered) + covered.intersection_update(self.tasks_scenequeue_done) + + for tid in notcovered | covered: + if not self.rqdata.runtaskentries[tid].depends: + self.setbuildable(tid) + elif self.rqdata.runtaskentries[tid].depends.issubset(self.runq_complete): + self.setbuildable(tid) + + self.tasks_covered = covered + self.tasks_notcovered = notcovered + + self.holdoff_tasks = set() + + for tid in self.rqdata.runq_setscene_tids: + if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered: + self.holdoff_tasks.add(tid) + + for tid in self.holdoff_tasks.copy(): + for dep in self.sqdata.sq_covered_tasks[tid]: + if dep not in self.runq_complete: + self.holdoff_tasks.add(dep) + + self.holdoff_need_update = False + + def process_possible_migrations(self): + + changed = set() + toprocess = set() + for tid, unihash in self.updated_taskhash_queue.copy(): + if tid in self.runq_running and tid not in self.runq_complete: + continue + + self.updated_taskhash_queue.remove((tid, unihash)) + + if unihash != self.rqdata.runtaskentries[tid].unihash: + # Make sure we rehash any other tasks with the same task hash that we're deferred against. + torehash = [tid] + for deftid in self.sq_deferred: + if self.sq_deferred[deftid] == tid: + torehash.append(deftid) + for hashtid in torehash: + hashequiv_logger.verbose("Task %s unihash changed to %s" % (hashtid, unihash)) + self.rqdata.runtaskentries[hashtid].unihash = unihash + bb.parse.siggen.set_unihash(hashtid, unihash) + toprocess.add(hashtid) + if torehash: + # Need to save after set_unihash above + bb.parse.siggen.save_unitaskhashes() + + # Work out all tasks which depend upon these + total = set() + next = set() + for p in toprocess: + next |= self.rqdata.runtaskentries[p].revdeps + while next: + current = next.copy() + total = total | next + next = set() + for ntid in current: + next |= self.rqdata.runtaskentries[ntid].revdeps + next.difference_update(total) + + # Now iterate those tasks in dependency order to regenerate their taskhash/unihash + next = set() + for p in total: + if not self.rqdata.runtaskentries[p].depends: + next.add(p) + elif self.rqdata.runtaskentries[p].depends.isdisjoint(total): + next.add(p) + + # When an item doesn't have dependencies in total, we can process it. Drop items from total when handled + while next: + current = next.copy() + next = set() + for tid in current: + if self.rqdata.runtaskentries[p].depends and not self.rqdata.runtaskentries[tid].depends.isdisjoint(total): + continue + orighash = self.rqdata.runtaskentries[tid].hash + dc = bb.parse.siggen.get_data_caches(self.rqdata.dataCaches, mc_from_tid(tid)) + newhash = bb.parse.siggen.get_taskhash(tid, self.rqdata.runtaskentries[tid].depends, dc) + origuni = self.rqdata.runtaskentries[tid].unihash + newuni = bb.parse.siggen.get_unihash(tid) + # FIXME, need to check it can come from sstate at all for determinism? + remapped = False + if newuni == origuni: + # Nothing to do, we match, skip code below + remapped = True + elif tid in self.scenequeue_covered or tid in self.sq_live: + # Already ran this setscene task or it running. Report the new taskhash + bb.parse.siggen.report_unihash_equiv(tid, newhash, origuni, newuni, self.rqdata.dataCaches) + hashequiv_logger.verbose("Already covered setscene for %s so ignoring rehash (remap)" % (tid)) + remapped = True + + if not remapped: + #logger.debug("Task %s hash changes: %s->%s %s->%s" % (tid, orighash, newhash, origuni, newuni)) + self.rqdata.runtaskentries[tid].hash = newhash + self.rqdata.runtaskentries[tid].unihash = newuni + changed.add(tid) + + next |= self.rqdata.runtaskentries[tid].revdeps + total.remove(tid) + next.intersection_update(total) + + if changed: + for mc in self.rq.worker: + self.rq.worker[mc].process.stdin.write(b"" + pickle.dumps(bb.parse.siggen.get_taskhashes()) + b"") + for mc in self.rq.fakeworker: + self.rq.fakeworker[mc].process.stdin.write(b"" + pickle.dumps(bb.parse.siggen.get_taskhashes()) + b"") + + hashequiv_logger.debug(pprint.pformat("Tasks changed:\n%s" % (changed))) + + for tid in changed: + if tid not in self.rqdata.runq_setscene_tids: + continue + if tid not in self.pending_migrations: + self.pending_migrations.add(tid) + + update_tasks = [] + for tid in self.pending_migrations.copy(): + if tid in self.runq_running or tid in self.sq_live: + # Too late, task already running, not much we can do now + self.pending_migrations.remove(tid) + continue + + valid = True + # Check no tasks this covers are running + for dep in self.sqdata.sq_covered_tasks[tid]: + if dep in self.runq_running and dep not in self.runq_complete: + hashequiv_logger.debug2("Task %s is running which blocks setscene for %s from running" % (dep, tid)) + valid = False + break + if not valid: + continue + + self.pending_migrations.remove(tid) + changed = True + + if tid in self.tasks_scenequeue_done: + self.tasks_scenequeue_done.remove(tid) + for dep in self.sqdata.sq_covered_tasks[tid]: + if dep in self.runq_complete and dep not in self.runq_tasksrun: + bb.error("Task %s marked as completed but now needing to rerun? Halting build." % dep) + self.failed_tids.append(tid) + self.rq.state = runQueueCleanUp + return + + if dep not in self.runq_complete: + if dep in self.tasks_scenequeue_done and dep not in self.sqdata.unskippable: + self.tasks_scenequeue_done.remove(dep) + + if tid in self.sq_buildable: + self.sq_buildable.remove(tid) + if tid in self.sq_running: + self.sq_running.remove(tid) + if tid in self.sqdata.outrightfail: + self.sqdata.outrightfail.remove(tid) + if tid in self.scenequeue_notcovered: + self.scenequeue_notcovered.remove(tid) + if tid in self.scenequeue_covered: + self.scenequeue_covered.remove(tid) + if tid in self.scenequeue_notneeded: + self.scenequeue_notneeded.remove(tid) + + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True) + + if tid in self.stampcache: + del self.stampcache[tid] + + if tid in self.build_stamps: + del self.build_stamps[tid] + + update_tasks.append(tid) + + update_tasks2 = [] + for tid in update_tasks: + harddepfail = False + for t in self.sqdata.sq_harddeps: + if tid in self.sqdata.sq_harddeps[t] and t in self.scenequeue_notcovered: + harddepfail = True + break + if not harddepfail and self.sqdata.sq_revdeps[tid].issubset(self.scenequeue_covered | self.scenequeue_notcovered): + if tid not in self.sq_buildable: + self.sq_buildable.add(tid) + if not self.sqdata.sq_revdeps[tid]: + self.sq_buildable.add(tid) + + update_tasks2.append((tid, harddepfail, tid in self.sqdata.valid)) + + if update_tasks2: + self.sqdone = False + for mc in sorted(self.sqdata.multiconfigs): + for tid in sorted([t[0] for t in update_tasks2]): + if mc_from_tid(tid) != mc: + continue + h = pending_hash_index(tid, self.rqdata) + if h in self.sqdata.hashes and tid != self.sqdata.hashes[h]: + self.sq_deferred[tid] = self.sqdata.hashes[h] + bb.note("Deferring %s after %s" % (tid, self.sqdata.hashes[h])) + update_scenequeue_data([t[0] for t in update_tasks2], self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=False) + + for (tid, harddepfail, origvalid) in update_tasks2: + if tid in self.sqdata.valid and not origvalid: + hashequiv_logger.verbose("Setscene task %s became valid" % tid) + if harddepfail: + self.sq_task_failoutright(tid) + + if changed: + self.stats.updateCovered(len(self.scenequeue_covered), len(self.scenequeue_notcovered)) + self.holdoff_need_update = True + + def scenequeue_updatecounters(self, task, fail=False): + + for dep in sorted(self.sqdata.sq_deps[task]): + if fail and task in self.sqdata.sq_harddeps and dep in self.sqdata.sq_harddeps[task]: + if dep in self.scenequeue_covered or dep in self.scenequeue_notcovered: + # dependency could be already processed, e.g. noexec setscene task + continue + noexec, stamppresent = check_setscene_stamps(dep, self.rqdata, self.rq, self.stampcache) + if noexec or stamppresent: + continue + logger.debug2("%s was unavailable and is a hard dependency of %s so skipping" % (task, dep)) + self.sq_task_failoutright(dep) + continue + if self.sqdata.sq_revdeps[dep].issubset(self.scenequeue_covered | self.scenequeue_notcovered): + if dep not in self.sq_buildable: + self.sq_buildable.add(dep) + + next = set([task]) + while next: + new = set() + for t in sorted(next): + self.tasks_scenequeue_done.add(t) + # Look down the dependency chain for non-setscene things which this task depends on + # and mark as 'done' + for dep in self.rqdata.runtaskentries[t].depends: + if dep in self.rqdata.runq_setscene_tids or dep in self.tasks_scenequeue_done: + continue + if self.rqdata.runtaskentries[dep].revdeps.issubset(self.tasks_scenequeue_done): + new.add(dep) + next = new + + self.stats.updateCovered(len(self.scenequeue_covered), len(self.scenequeue_notcovered)) + self.holdoff_need_update = True + + def sq_task_completeoutright(self, task): + """ + Mark a task as completed + Look at the reverse dependencies and mark any task with + completed dependencies as buildable + """ + + logger.debug('Found task %s which could be accelerated', task) + self.scenequeue_covered.add(task) + self.scenequeue_updatecounters(task) + + def sq_check_taskfail(self, task): + if self.rqdata.setscene_ignore_tasks is not None: + realtask = task.split('_setscene')[0] + (mc, fn, taskname, taskfn) = split_tid_mcfn(realtask) + pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] + if not check_setscene_enforce_ignore_tasks(pn, taskname, self.rqdata.setscene_ignore_tasks): + logger.error('Task %s.%s failed' % (pn, taskname + "_setscene")) + self.rq.state = runQueueCleanUp + + def sq_task_complete(self, task): + bb.event.fire(sceneQueueTaskCompleted(task, self.stats, self.rq), self.cfgData) + self.sq_task_completeoutright(task) + + def sq_task_fail(self, task, result): + bb.event.fire(sceneQueueTaskFailed(task, self.stats, result, self), self.cfgData) + self.scenequeue_notcovered.add(task) + self.scenequeue_updatecounters(task, True) + self.sq_check_taskfail(task) + + def sq_task_failoutright(self, task): + self.sq_running.add(task) + self.sq_buildable.add(task) + self.scenequeue_notcovered.add(task) + self.scenequeue_updatecounters(task, True) + + def sq_task_skip(self, task): + self.sq_running.add(task) + self.sq_buildable.add(task) + self.sq_task_completeoutright(task) + + def sq_build_taskdepdata(self, task): + def getsetscenedeps(tid): + deps = set() + (mc, fn, taskname, _) = split_tid_mcfn(tid) + realtid = tid + "_setscene" + idepends = self.rqdata.taskData[mc].taskentries[realtid].idepends + for (depname, idependtask) in idepends: + if depname not in self.rqdata.taskData[mc].build_targets: + continue + + depfn = self.rqdata.taskData[mc].build_targets[depname][0] + if depfn is None: + continue + deptid = depfn + ":" + idependtask.replace("_setscene", "") + deps.add(deptid) + return deps + + taskdepdata = {} + next = getsetscenedeps(task) + next.add(task) + while next: + additional = [] + for revdep in next: + (mc, fn, taskname, taskfn) = split_tid_mcfn(revdep) + pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] + deps = getsetscenedeps(revdep) + provides = self.rqdata.dataCaches[mc].fn_provides[taskfn] + taskhash = self.rqdata.runtaskentries[revdep].hash + unihash = self.rqdata.runtaskentries[revdep].unihash + taskdepdata[revdep] = [pn, taskname, fn, deps, provides, taskhash, unihash] + for revdep2 in deps: + if revdep2 not in taskdepdata: + additional.append(revdep2) + next = additional + + #bb.note("Task %s: " % task + str(taskdepdata).replace("], ", "],\n")) + return taskdepdata + + def check_setscene_ignore_tasks(self, tid): + # Check task that is going to run against the ignore tasks list + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + # Ignore covered tasks + if tid in self.tasks_covered: + return False + # Ignore stamped tasks + if self.rq.check_stamp_task(tid, taskname, cache=self.stampcache): + return False + # Ignore noexec tasks + taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] + if 'noexec' in taskdep and taskname in taskdep['noexec']: + return False + + pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] + if not check_setscene_enforce_ignore_tasks(pn, taskname, self.rqdata.setscene_ignore_tasks): + if tid in self.rqdata.runq_setscene_tids: + msg = ['Task %s.%s attempted to execute unexpectedly and should have been setscened' % (pn, taskname)] + else: + msg = ['Task %s.%s attempted to execute unexpectedly' % (pn, taskname)] + for t in self.scenequeue_notcovered: + msg.append("\nTask %s, unihash %s, taskhash %s" % (t, self.rqdata.runtaskentries[t].unihash, self.rqdata.runtaskentries[t].hash)) + msg.append('\nThis is usually due to missing setscene tasks. Those missing in this build were: %s' % pprint.pformat(self.scenequeue_notcovered)) + logger.error("".join(msg)) + return True + return False + +class SQData(object): + def __init__(self): + # SceneQueue dependencies + self.sq_deps = {} + # SceneQueue reverse dependencies + self.sq_revdeps = {} + # Injected inter-setscene task dependencies + self.sq_harddeps = {} + # Cache of stamp files so duplicates can't run in parallel + self.stamps = {} + # Setscene tasks directly depended upon by the build + self.unskippable = set() + # List of setscene tasks which aren't present + self.outrightfail = set() + # A list of normal tasks a setscene task covers + self.sq_covered_tasks = {} + +def build_scenequeue_data(sqdata, rqdata, rq, cooker, stampcache, sqrq): + + sq_revdeps = {} + sq_revdeps_squash = {} + sq_collated_deps = {} + + # We need to construct a dependency graph for the setscene functions. Intermediate + # dependencies between the setscene tasks only complicate the code. This code + # therefore aims to collapse the huge runqueue dependency tree into a smaller one + # only containing the setscene functions. + + rqdata.init_progress_reporter.next_stage() + + # First process the chains up to the first setscene task. + endpoints = {} + for tid in rqdata.runtaskentries: + sq_revdeps[tid] = copy.copy(rqdata.runtaskentries[tid].revdeps) + sq_revdeps_squash[tid] = set() + if not sq_revdeps[tid] and tid not in rqdata.runq_setscene_tids: + #bb.warn("Added endpoint %s" % (tid)) + endpoints[tid] = set() + + rqdata.init_progress_reporter.next_stage() + + # Secondly process the chains between setscene tasks. + for tid in rqdata.runq_setscene_tids: + sq_collated_deps[tid] = set() + #bb.warn("Added endpoint 2 %s" % (tid)) + for dep in rqdata.runtaskentries[tid].depends: + if tid in sq_revdeps[dep]: + sq_revdeps[dep].remove(tid) + if dep not in endpoints: + endpoints[dep] = set() + #bb.warn(" Added endpoint 3 %s" % (dep)) + endpoints[dep].add(tid) + + rqdata.init_progress_reporter.next_stage() + + def process_endpoints(endpoints): + newendpoints = {} + for point, task in endpoints.items(): + tasks = set() + if task: + tasks |= task + if sq_revdeps_squash[point]: + tasks |= sq_revdeps_squash[point] + if point not in rqdata.runq_setscene_tids: + for t in tasks: + sq_collated_deps[t].add(point) + sq_revdeps_squash[point] = set() + if point in rqdata.runq_setscene_tids: + sq_revdeps_squash[point] = tasks + continue + for dep in rqdata.runtaskentries[point].depends: + if point in sq_revdeps[dep]: + sq_revdeps[dep].remove(point) + if tasks: + sq_revdeps_squash[dep] |= tasks + if not sq_revdeps[dep] and dep not in rqdata.runq_setscene_tids: + newendpoints[dep] = task + if newendpoints: + process_endpoints(newendpoints) + + process_endpoints(endpoints) + + rqdata.init_progress_reporter.next_stage() + + # Build a list of tasks which are "unskippable" + # These are direct endpoints referenced by the build upto and including setscene tasks + # Take the build endpoints (no revdeps) and find the sstate tasks they depend upon + new = True + for tid in rqdata.runtaskentries: + if not rqdata.runtaskentries[tid].revdeps: + sqdata.unskippable.add(tid) + sqdata.unskippable |= sqrq.cantskip + while new: + new = False + orig = sqdata.unskippable.copy() + for tid in sorted(orig, reverse=True): + if tid in rqdata.runq_setscene_tids: + continue + if not rqdata.runtaskentries[tid].depends: + # These are tasks which have no setscene tasks in their chain, need to mark as directly buildable + sqrq.setbuildable(tid) + sqdata.unskippable |= rqdata.runtaskentries[tid].depends + if sqdata.unskippable != orig: + new = True + + sqrq.tasks_scenequeue_done |= sqdata.unskippable.difference(rqdata.runq_setscene_tids) + + rqdata.init_progress_reporter.next_stage(len(rqdata.runtaskentries)) + + # Sanity check all dependencies could be changed to setscene task references + for taskcounter, tid in enumerate(rqdata.runtaskentries): + if tid in rqdata.runq_setscene_tids: + pass + elif sq_revdeps_squash[tid]: + bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, halting. Please report this problem.") + else: + del sq_revdeps_squash[tid] + rqdata.init_progress_reporter.update(taskcounter) + + rqdata.init_progress_reporter.next_stage() + + # Resolve setscene inter-task dependencies + # e.g. do_sometask_setscene[depends] = "targetname:do_someothertask_setscene" + # Note that anything explicitly depended upon will have its reverse dependencies removed to avoid circular dependencies + for tid in rqdata.runq_setscene_tids: + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + realtid = tid + "_setscene" + idepends = rqdata.taskData[mc].taskentries[realtid].idepends + sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", rqdata.dataCaches[mc], taskfn, noextra=True) + for (depname, idependtask) in idepends: + + if depname not in rqdata.taskData[mc].build_targets: + continue + + depfn = rqdata.taskData[mc].build_targets[depname][0] + if depfn is None: + continue + deptid = depfn + ":" + idependtask.replace("_setscene", "") + if deptid not in rqdata.runtaskentries: + bb.msg.fatal("RunQueue", "Task %s depends upon non-existent task %s:%s" % (realtid, depfn, idependtask)) + + if not deptid in sqdata.sq_harddeps: + sqdata.sq_harddeps[deptid] = set() + sqdata.sq_harddeps[deptid].add(tid) + + sq_revdeps_squash[tid].add(deptid) + # Have to zero this to avoid circular dependencies + sq_revdeps_squash[deptid] = set() + + rqdata.init_progress_reporter.next_stage() + + for task in sqdata.sq_harddeps: + for dep in sqdata.sq_harddeps[task]: + sq_revdeps_squash[dep].add(task) + + rqdata.init_progress_reporter.next_stage() + + #for tid in sq_revdeps_squash: + # data = "" + # for dep in sq_revdeps_squash[tid]: + # data = data + "\n %s" % dep + # bb.warn("Task %s_setscene: is %s " % (tid, data)) + + sqdata.sq_revdeps = sq_revdeps_squash + sqdata.sq_covered_tasks = sq_collated_deps + + # Build reverse version of revdeps to populate deps structure + for tid in sqdata.sq_revdeps: + sqdata.sq_deps[tid] = set() + for tid in sqdata.sq_revdeps: + for dep in sqdata.sq_revdeps[tid]: + sqdata.sq_deps[dep].add(tid) + + rqdata.init_progress_reporter.next_stage() + + sqdata.multiconfigs = set() + for tid in sqdata.sq_revdeps: + sqdata.multiconfigs.add(mc_from_tid(tid)) + if not sqdata.sq_revdeps[tid]: + sqrq.sq_buildable.add(tid) + + rqdata.init_progress_reporter.finish() + + sqdata.noexec = set() + sqdata.stamppresent = set() + sqdata.valid = set() + + sqdata.hashes = {} + sqrq.sq_deferred = {} + for mc in sorted(sqdata.multiconfigs): + for tid in sorted(sqdata.sq_revdeps): + if mc_from_tid(tid) != mc: + continue + h = pending_hash_index(tid, rqdata) + if h not in sqdata.hashes: + sqdata.hashes[h] = tid + else: + sqrq.sq_deferred[tid] = sqdata.hashes[h] + bb.note("Deferring %s after %s" % (tid, sqdata.hashes[h])) + + update_scenequeue_data(sqdata.sq_revdeps, sqdata, rqdata, rq, cooker, stampcache, sqrq, summary=True) + + # Compute a list of 'stale' sstate tasks where the current hash does not match the one + # in any stamp files. Pass the list out to metadata as an event. + found = {} + for tid in rqdata.runq_setscene_tids: + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + stamps = bb.build.find_stale_stamps(taskname, rqdata.dataCaches[mc], taskfn) + if stamps: + if mc not in found: + found[mc] = {} + found[mc][tid] = stamps + for mc in found: + event = bb.event.StaleSetSceneTasks(found[mc]) + bb.event.fire(event, cooker.databuilder.mcdata[mc]) + +def check_setscene_stamps(tid, rqdata, rq, stampcache, noexecstamp=False): + + (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) + + taskdep = rqdata.dataCaches[mc].task_deps[taskfn] + + if 'noexec' in taskdep and taskname in taskdep['noexec']: + bb.build.make_stamp(taskname + "_setscene", rqdata.dataCaches[mc], taskfn) + return True, False + + if rq.check_stamp_task(tid, taskname + "_setscene", cache=stampcache): + logger.debug2('Setscene stamp current for task %s', tid) + return False, True + + if rq.check_stamp_task(tid, taskname, recurse = True, cache=stampcache): + logger.debug2('Normal stamp current for task %s', tid) + return False, True + + return False, False + +def update_scenequeue_data(tids, sqdata, rqdata, rq, cooker, stampcache, sqrq, summary=True): + + tocheck = set() + + for tid in sorted(tids): + if tid in sqdata.stamppresent: + sqdata.stamppresent.remove(tid) + if tid in sqdata.valid: + sqdata.valid.remove(tid) + if tid in sqdata.outrightfail: + sqdata.outrightfail.remove(tid) + + noexec, stamppresent = check_setscene_stamps(tid, rqdata, rq, stampcache, noexecstamp=True) + + if noexec: + sqdata.noexec.add(tid) + sqrq.sq_task_skip(tid) + continue + + if stamppresent: + sqdata.stamppresent.add(tid) + sqrq.sq_task_skip(tid) + continue + + tocheck.add(tid) + + sqdata.valid |= rq.validate_hashes(tocheck, cooker.data, len(sqdata.stamppresent), False, summary=summary) + + for tid in tids: + if tid in sqdata.stamppresent: + continue + if tid in sqdata.valid: + continue + if tid in sqdata.noexec: + continue + if tid in sqrq.scenequeue_covered: + continue + if tid in sqrq.scenequeue_notcovered: + continue + if tid in sqrq.sq_deferred: + continue + sqdata.outrightfail.add(tid) + +class TaskFailure(Exception): + """ + Exception raised when a task in a runqueue fails + """ + def __init__(self, x): + self.args = x + + +class runQueueExitWait(bb.event.Event): + """ + Event when waiting for task processes to exit + """ + + def __init__(self, remain): + self.remain = remain + self.message = "Waiting for %s active tasks to finish" % remain + bb.event.Event.__init__(self) + +class runQueueEvent(bb.event.Event): + """ + Base runQueue event class + """ + def __init__(self, task, stats, rq): + self.taskid = task + self.taskstring = task + self.taskname = taskname_from_tid(task) + self.taskfile = fn_from_tid(task) + self.taskhash = rq.rqdata.get_task_hash(task) + self.stats = stats.copy() + bb.event.Event.__init__(self) + +class sceneQueueEvent(runQueueEvent): + """ + Base sceneQueue event class + """ + def __init__(self, task, stats, rq, noexec=False): + runQueueEvent.__init__(self, task, stats, rq) + self.taskstring = task + "_setscene" + self.taskname = taskname_from_tid(task) + "_setscene" + self.taskfile = fn_from_tid(task) + self.taskhash = rq.rqdata.get_task_hash(task) + +class runQueueTaskStarted(runQueueEvent): + """ + Event notifying a task was started + """ + def __init__(self, task, stats, rq, noexec=False): + runQueueEvent.__init__(self, task, stats, rq) + self.noexec = noexec + +class sceneQueueTaskStarted(sceneQueueEvent): + """ + Event notifying a setscene task was started + """ + def __init__(self, task, stats, rq, noexec=False): + sceneQueueEvent.__init__(self, task, stats, rq) + self.noexec = noexec + +class runQueueTaskFailed(runQueueEvent): + """ + Event notifying a task failed + """ + def __init__(self, task, stats, exitcode, rq, fakeroot_log=None): + runQueueEvent.__init__(self, task, stats, rq) + self.exitcode = exitcode + self.fakeroot_log = fakeroot_log + + def __str__(self): + if self.fakeroot_log: + return "Task (%s) failed with exit code '%s' \nPseudo log:\n%s" % (self.taskstring, self.exitcode, self.fakeroot_log) + else: + return "Task (%s) failed with exit code '%s'" % (self.taskstring, self.exitcode) + +class sceneQueueTaskFailed(sceneQueueEvent): + """ + Event notifying a setscene task failed + """ + def __init__(self, task, stats, exitcode, rq): + sceneQueueEvent.__init__(self, task, stats, rq) + self.exitcode = exitcode + + def __str__(self): + return "Setscene task (%s) failed with exit code '%s' - real task will be run instead" % (self.taskstring, self.exitcode) + +class sceneQueueComplete(sceneQueueEvent): + """ + Event when all the sceneQueue tasks are complete + """ + def __init__(self, stats, rq): + self.stats = stats.copy() + bb.event.Event.__init__(self) + +class runQueueTaskCompleted(runQueueEvent): + """ + Event notifying a task completed + """ + +class sceneQueueTaskCompleted(sceneQueueEvent): + """ + Event notifying a setscene task completed + """ + +class runQueueTaskSkipped(runQueueEvent): + """ + Event notifying a task was skipped + """ + def __init__(self, task, stats, rq, reason): + runQueueEvent.__init__(self, task, stats, rq) + self.reason = reason + +class taskUniHashUpdate(bb.event.Event): + """ + Base runQueue event class + """ + def __init__(self, task, unihash): + self.taskid = task + self.unihash = unihash + bb.event.Event.__init__(self) + +class runQueuePipe(): + """ + Abstraction for a pipe between a worker thread and the server + """ + def __init__(self, pipein, pipeout, d, rq, rqexec, fakerootlogs=None): + self.input = pipein + if pipeout: + pipeout.close() + bb.utils.nonblockingfd(self.input) + self.queue = b"" + self.d = d + self.rq = rq + self.rqexec = rqexec + self.fakerootlogs = fakerootlogs + + def setrunqueueexec(self, rqexec): + self.rqexec = rqexec + + def read(self): + for workers, name in [(self.rq.worker, "Worker"), (self.rq.fakeworker, "Fakeroot")]: + for worker in workers.values(): + worker.process.poll() + if worker.process.returncode is not None and not self.rq.teardown: + bb.error("%s process (%s) exited unexpectedly (%s), shutting down..." % (name, worker.process.pid, str(worker.process.returncode))) + self.rq.finish_runqueue(True) + + start = len(self.queue) + try: + self.queue = self.queue + (self.input.read(102400) or b"") + except (OSError, IOError) as e: + if e.errno != errno.EAGAIN: + raise + end = len(self.queue) + found = True + while found and self.queue: + found = False + index = self.queue.find(b"") + while index != -1 and self.queue.startswith(b""): + try: + event = pickle.loads(self.queue[7:index]) + except (ValueError, pickle.UnpicklingError, AttributeError, IndexError) as e: + if isinstance(e, pickle.UnpicklingError) and "truncated" in str(e): + # The pickled data could contain "" so search for the next occurance + # unpickling again, this should be the only way an unpickle error could occur + index = self.queue.find(b"", index + 1) + continue + bb.msg.fatal("RunQueue", "failed load pickle '%s': '%s'" % (e, self.queue[7:index])) + bb.event.fire_from_worker(event, self.d) + if isinstance(event, taskUniHashUpdate): + self.rqexec.updated_taskhash_queue.append((event.taskid, event.unihash)) + found = True + self.queue = self.queue[index+8:] + index = self.queue.find(b"") + index = self.queue.find(b"") + while index != -1 and self.queue.startswith(b""): + try: + task, status = pickle.loads(self.queue[10:index]) + except (ValueError, pickle.UnpicklingError, AttributeError, IndexError) as e: + bb.msg.fatal("RunQueue", "failed load pickle '%s': '%s'" % (e, self.queue[10:index])) + (_, _, _, taskfn) = split_tid_mcfn(task) + fakerootlog = None + if self.fakerootlogs and taskfn and taskfn in self.fakerootlogs: + fakerootlog = self.fakerootlogs[taskfn] + self.rqexec.runqueue_process_waitpid(task, status, fakerootlog=fakerootlog) + found = True + self.queue = self.queue[index+11:] + index = self.queue.find(b"") + return (end > start) + + def close(self): + while self.read(): + continue + if self.queue: + print("Warning, worker left partial message: %s" % self.queue) + self.input.close() + +def get_setscene_enforce_ignore_tasks(d, targets): + if d.getVar('BB_SETSCENE_ENFORCE') != '1': + return None + ignore_tasks = (d.getVar("BB_SETSCENE_ENFORCE_IGNORE_TASKS") or "").split() + outlist = [] + for item in ignore_tasks[:]: + if item.startswith('%:'): + for (mc, target, task, fn) in targets: + outlist.append(target + ':' + item.split(':')[1]) + else: + outlist.append(item) + return outlist + +def check_setscene_enforce_ignore_tasks(pn, taskname, ignore_tasks): + import fnmatch + if ignore_tasks is not None: + item = '%s:%s' % (pn, taskname) + for ignore_tasks in ignore_tasks: + if fnmatch.fnmatch(item, ignore_tasks): + return True + return False + return True diff --git a/poky/bitbake/lib/bb/server/__init__.py b/poky/bitbake/lib/bb/server/__init__.py new file mode 100644 index 0000000..b6f7513 --- /dev/null +++ b/poky/bitbake/lib/bb/server/__init__.py @@ -0,0 +1,9 @@ +# +# BitBake Base Server Code +# +# Copyright (C) 2006 - 2007 Michael 'Mickey' Lauer +# Copyright (C) 2006 - 2008 Richard Purdie +# Copyright (C) 2013 Alexandru Damian +# +# SPDX-License-Identifier: GPL-2.0-only +# diff --git a/poky/bitbake/lib/bb/server/process.py b/poky/bitbake/lib/bb/server/process.py new file mode 100644 index 0000000..f2c5c15 --- /dev/null +++ b/poky/bitbake/lib/bb/server/process.py @@ -0,0 +1,772 @@ +# +# BitBake Process based server. +# +# Copyright (C) 2010 Bob Foerster +# +# SPDX-License-Identifier: GPL-2.0-only +# + +""" + This module implements a multiprocessing.Process based server for bitbake. +""" + +import bb +import bb.event +import logging +import multiprocessing +import threading +import array +import os +import sys +import time +import select +import socket +import subprocess +import errno +import re +import datetime +import pickle +import traceback +import gc +import bb.server.xmlrpcserver +from bb import daemonize +from multiprocessing import queues + +logger = logging.getLogger('BitBake') + +class ProcessTimeout(SystemExit): + pass + +def serverlog(msg): + print(str(os.getpid()) + " " + datetime.datetime.now().strftime('%H:%M:%S.%f') + " " + msg) + sys.stdout.flush() + +class ProcessServer(): + profile_filename = "profile.log" + profile_processed_filename = "profile.log.processed" + + def __init__(self, lock, lockname, sock, sockname, server_timeout, xmlrpcinterface): + self.command_channel = False + self.command_channel_reply = False + self.quit = False + self.heartbeat_seconds = 1 # default, BB_HEARTBEAT_EVENT will be checked once we have a datastore. + self.next_heartbeat = time.time() + + self.event_handle = None + self.hadanyui = False + self.haveui = False + self.maxuiwait = 30 + self.xmlrpc = False + + self._idlefuns = {} + + self.bitbake_lock = lock + self.bitbake_lock_name = lockname + self.sock = sock + self.sockname = sockname + + self.server_timeout = server_timeout + self.timeout = self.server_timeout + self.xmlrpcinterface = xmlrpcinterface + + def register_idle_function(self, function, data): + """Register a function to be called while the server is idle""" + assert hasattr(function, '__call__') + self._idlefuns[function] = data + + def run(self): + + if self.xmlrpcinterface[0]: + self.xmlrpc = bb.server.xmlrpcserver.BitBakeXMLRPCServer(self.xmlrpcinterface, self.cooker, self) + + serverlog("Bitbake XMLRPC server address: %s, server port: %s" % (self.xmlrpc.host, self.xmlrpc.port)) + + try: + self.bitbake_lock.seek(0) + self.bitbake_lock.truncate() + if self.xmlrpc: + self.bitbake_lock.write("%s %s:%s\n" % (os.getpid(), self.xmlrpc.host, self.xmlrpc.port)) + else: + self.bitbake_lock.write("%s\n" % (os.getpid())) + self.bitbake_lock.flush() + except Exception as e: + serverlog("Error writing to lock file: %s" % str(e)) + pass + + if self.cooker.configuration.profile: + try: + import cProfile as profile + except: + import profile + prof = profile.Profile() + + ret = profile.Profile.runcall(prof, self.main) + + prof.dump_stats("profile.log") + bb.utils.process_profilelog("profile.log") + serverlog("Raw profiling information saved to profile.log and processed statistics to profile.log.processed") + + else: + ret = self.main() + + return ret + + def main(self): + self.cooker.pre_serve() + + bb.utils.set_process_name("Cooker") + + ready = [] + newconnections = [] + + self.controllersock = False + fds = [self.sock] + if self.xmlrpc: + fds.append(self.xmlrpc) + seendata = False + serverlog("Entering server connection loop") + + def disconnect_client(self, fds): + serverlog("Disconnecting Client") + if self.controllersock: + fds.remove(self.controllersock) + self.controllersock.close() + self.controllersock = False + if self.haveui: + fds.remove(self.command_channel) + bb.event.unregister_UIHhandler(self.event_handle, True) + self.command_channel_reply.writer.close() + self.event_writer.writer.close() + self.command_channel.close() + self.command_channel = False + del self.event_writer + self.lastui = time.time() + self.cooker.clientComplete() + self.haveui = False + ready = select.select(fds,[],[],0)[0] + if newconnections: + serverlog("Starting new client") + conn = newconnections.pop(-1) + fds.append(conn) + self.controllersock = conn + elif not self.timeout and not ready: + serverlog("No timeout, exiting.") + self.quit = True + + self.lastui = time.time() + while not self.quit: + if self.sock in ready: + while select.select([self.sock],[],[],0)[0]: + controllersock, address = self.sock.accept() + if self.controllersock: + serverlog("Queuing %s (%s)" % (str(ready), str(newconnections))) + newconnections.append(controllersock) + else: + serverlog("Accepting %s (%s)" % (str(ready), str(newconnections))) + self.controllersock = controllersock + fds.append(controllersock) + if self.controllersock in ready: + try: + serverlog("Processing Client") + ui_fds = recvfds(self.controllersock, 3) + serverlog("Connecting Client") + + # Where to write events to + writer = ConnectionWriter(ui_fds[0]) + self.event_handle = bb.event.register_UIHhandler(writer, True) + self.event_writer = writer + + # Where to read commands from + reader = ConnectionReader(ui_fds[1]) + fds.append(reader) + self.command_channel = reader + + # Where to send command return values to + writer = ConnectionWriter(ui_fds[2]) + self.command_channel_reply = writer + + self.haveui = True + self.hadanyui = True + + except (EOFError, OSError): + disconnect_client(self, fds) + + if not self.timeout == -1.0 and not self.haveui and self.timeout and \ + (self.lastui + self.timeout) < time.time(): + serverlog("Server timeout, exiting.") + self.quit = True + + # If we don't see a UI connection within maxuiwait, its unlikely we're going to see + # one. We have had issue with processes hanging indefinitely so timing out UI-less + # servers is useful. + if not self.hadanyui and not self.xmlrpc and not self.timeout and (self.lastui + self.maxuiwait) < time.time(): + serverlog("No UI connection within max timeout, exiting to avoid infinite loop.") + self.quit = True + + if self.command_channel in ready: + try: + command = self.command_channel.get() + except EOFError: + # Client connection shutting down + ready = [] + disconnect_client(self, fds) + continue + if command[0] == "terminateServer": + self.quit = True + continue + try: + serverlog("Running command %s" % command) + self.command_channel_reply.send(self.cooker.command.runCommand(command)) + serverlog("Command Completed") + except Exception as e: + stack = traceback.format_exc() + serverlog('Exception in server main event loop running command %s (%s)' % (command, stack)) + logger.exception('Exception in server main event loop running command %s (%s)' % (command, stack)) + + if self.xmlrpc in ready: + self.xmlrpc.handle_requests() + + if not seendata and hasattr(self.cooker, "data"): + heartbeat_event = self.cooker.data.getVar('BB_HEARTBEAT_EVENT') + if heartbeat_event: + try: + self.heartbeat_seconds = float(heartbeat_event) + except: + bb.warn('Ignoring invalid BB_HEARTBEAT_EVENT=%s, must be a float specifying seconds.' % heartbeat_event) + + self.timeout = self.server_timeout or self.cooker.data.getVar('BB_SERVER_TIMEOUT') + try: + if self.timeout: + self.timeout = float(self.timeout) + except: + bb.warn('Ignoring invalid BB_SERVER_TIMEOUT=%s, must be a float specifying seconds.' % self.timeout) + seendata = True + + ready = self.idle_commands(.1, fds) + + serverlog("Exiting") + # Remove the socket file so we don't get any more connections to avoid races + try: + os.unlink(self.sockname) + except: + pass + self.sock.close() + + try: + self.cooker.shutdown(True) + self.cooker.notifier.stop() + self.cooker.confignotifier.stop() + except: + pass + + self.cooker.post_serve() + + if len(threading.enumerate()) != 1: + serverlog("More than one thread left?: " + str(threading.enumerate())) + + # Flush logs before we release the lock + sys.stdout.flush() + sys.stderr.flush() + + # Finally release the lockfile but warn about other processes holding it open + lock = self.bitbake_lock + lockfile = self.bitbake_lock_name + + def get_lock_contents(lockfile): + try: + with open(lockfile, "r") as f: + return f.readlines() + except FileNotFoundError: + return None + + lockcontents = get_lock_contents(lockfile) + serverlog("Original lockfile contents: " + str(lockcontents)) + + lock.close() + lock = None + + while not lock: + i = 0 + lock = None + while not lock and i < 30: + lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) + if not lock: + newlockcontents = get_lock_contents(lockfile) + if newlockcontents != lockcontents: + # A new server was started, the lockfile contents changed, we can exit + serverlog("Lockfile now contains different contents, exiting: " + str(newlockcontents)) + return + time.sleep(0.1) + i += 1 + if lock: + # We hold the lock so we can remove the file (hide stale pid data) + # via unlockfile. + bb.utils.unlockfile(lock) + serverlog("Exiting as we could obtain the lock") + return + + if not lock: + # Some systems may not have lsof available + procs = None + try: + procs = subprocess.check_output(["lsof", '-w', lockfile], stderr=subprocess.STDOUT) + except subprocess.CalledProcessError: + # File was deleted? + continue + except OSError as e: + if e.errno != errno.ENOENT: + raise + if procs is None: + # Fall back to fuser if lsof is unavailable + try: + procs = subprocess.check_output(["fuser", '-v', lockfile], stderr=subprocess.STDOUT) + except subprocess.CalledProcessError: + # File was deleted? + continue + except OSError as e: + if e.errno != errno.ENOENT: + raise + + msg = ["Delaying shutdown due to active processes which appear to be holding bitbake.lock"] + if procs: + msg.append(":\n%s" % str(procs.decode("utf-8"))) + serverlog("".join(msg)) + + def idle_commands(self, delay, fds=None): + nextsleep = delay + if not fds: + fds = [] + + for function, data in list(self._idlefuns.items()): + try: + retval = function(self, data, False) + if retval is False: + del self._idlefuns[function] + nextsleep = None + elif retval is True: + nextsleep = None + elif isinstance(retval, float) and nextsleep: + if (retval < nextsleep): + nextsleep = retval + elif nextsleep is None: + continue + else: + fds = fds + retval + except SystemExit: + raise + except Exception as exc: + if not isinstance(exc, bb.BBHandledException): + logger.exception('Running idle function') + del self._idlefuns[function] + self.quit = True + + # Create new heartbeat event? + now = time.time() + if now >= self.next_heartbeat: + # We might have missed heartbeats. Just trigger once in + # that case and continue after the usual delay. + self.next_heartbeat += self.heartbeat_seconds + if self.next_heartbeat <= now: + self.next_heartbeat = now + self.heartbeat_seconds + if hasattr(self.cooker, "data"): + heartbeat = bb.event.HeartbeatEvent(now) + try: + bb.event.fire(heartbeat, self.cooker.data) + except Exception as exc: + if not isinstance(exc, bb.BBHandledException): + logger.exception('Running heartbeat function') + self.quit = True + if nextsleep and now + nextsleep > self.next_heartbeat: + # Shorten timeout so that we we wake up in time for + # the heartbeat. + nextsleep = self.next_heartbeat - now + + if nextsleep is not None: + if self.xmlrpc: + nextsleep = self.xmlrpc.get_timeout(nextsleep) + try: + return select.select(fds,[],[],nextsleep)[0] + except InterruptedError: + # Ignore EINTR + return [] + else: + return select.select(fds,[],[],0)[0] + + +class ServerCommunicator(): + def __init__(self, connection, recv): + self.connection = connection + self.recv = recv + + def runCommand(self, command): + self.connection.send(command) + if not self.recv.poll(30): + logger.info("No reply from server in 30s") + if not self.recv.poll(30): + raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)") + ret, exc = self.recv.get() + # Should probably turn all exceptions in exc back into exceptions? + # For now, at least handle BBHandledException + if exc and ("BBHandledException" in exc or "SystemExit" in exc): + raise bb.BBHandledException() + return ret, exc + + def updateFeatureSet(self, featureset): + _, error = self.runCommand(["setFeatures", featureset]) + if error: + logger.error("Unable to set the cooker to the correct featureset: %s" % error) + raise BaseException(error) + + def getEventHandle(self): + handle, error = self.runCommand(["getUIHandlerNum"]) + if error: + logger.error("Unable to get UI Handler Number: %s" % error) + raise BaseException(error) + + return handle + + def terminateServer(self): + self.connection.send(['terminateServer']) + return + +class BitBakeProcessServerConnection(object): + def __init__(self, ui_channel, recv, eq, sock): + self.connection = ServerCommunicator(ui_channel, recv) + self.events = eq + # Save sock so it doesn't get gc'd for the life of our connection + self.socket_connection = sock + + def terminate(self): + self.socket_connection.close() + self.connection.connection.close() + self.connection.recv.close() + return + +start_log_format = '--- Starting bitbake server pid %s at %s ---' +start_log_datetime_format = '%Y-%m-%d %H:%M:%S.%f' + +class BitBakeServer(object): + + def __init__(self, lock, sockname, featureset, server_timeout, xmlrpcinterface): + + self.server_timeout = server_timeout + self.xmlrpcinterface = xmlrpcinterface + self.featureset = featureset + self.sockname = sockname + self.bitbake_lock = lock + self.readypipe, self.readypipein = os.pipe() + + # Place the log in the builddirectory alongside the lock file + logfile = os.path.join(os.path.dirname(self.bitbake_lock.name), "bitbake-cookerdaemon.log") + self.logfile = logfile + + startdatetime = datetime.datetime.now() + bb.daemonize.createDaemon(self._startServer, logfile) + self.bitbake_lock.close() + os.close(self.readypipein) + + ready = ConnectionReader(self.readypipe) + r = ready.poll(5) + if not r: + bb.note("Bitbake server didn't start within 5 seconds, waiting for 90") + r = ready.poll(90) + if r: + try: + r = ready.get() + except EOFError: + # Trap the child exiting/closing the pipe and error out + r = None + if not r or r[0] != "r": + ready.close() + bb.error("Unable to start bitbake server (%s)" % str(r)) + if os.path.exists(logfile): + logstart_re = re.compile(start_log_format % ('([0-9]+)', '([0-9-]+ [0-9:.]+)')) + started = False + lines = [] + lastlines = [] + with open(logfile, "r") as f: + for line in f: + if started: + lines.append(line) + else: + lastlines.append(line) + res = logstart_re.search(line.rstrip()) + if res: + ldatetime = datetime.datetime.strptime(res.group(2), start_log_datetime_format) + if ldatetime >= startdatetime: + started = True + lines.append(line) + if len(lastlines) > 60: + lastlines = lastlines[-60:] + if lines: + if len(lines) > 60: + bb.error("Last 60 lines of server log for this session (%s):\n%s" % (logfile, "".join(lines[-60:]))) + else: + bb.error("Server log for this session (%s):\n%s" % (logfile, "".join(lines))) + elif lastlines: + bb.error("Server didn't start, last 60 loglines (%s):\n%s" % (logfile, "".join(lastlines))) + else: + bb.error("%s doesn't exist" % logfile) + + raise SystemExit(1) + + ready.close() + + def _startServer(self): + os.close(self.readypipe) + os.set_inheritable(self.bitbake_lock.fileno(), True) + os.set_inheritable(self.readypipein, True) + serverscript = os.path.realpath(os.path.dirname(__file__) + "/../../../bin/bitbake-server") + os.execl(sys.executable, "bitbake-server", serverscript, "decafbad", str(self.bitbake_lock.fileno()), str(self.readypipein), self.logfile, self.bitbake_lock.name, self.sockname, str(self.server_timeout or 0), str(self.xmlrpcinterface[0]), str(self.xmlrpcinterface[1])) + +def execServer(lockfd, readypipeinfd, lockname, sockname, server_timeout, xmlrpcinterface): + + import bb.cookerdata + import bb.cooker + + serverlog(start_log_format % (os.getpid(), datetime.datetime.now().strftime(start_log_datetime_format))) + + try: + bitbake_lock = os.fdopen(lockfd, "w") + + # Create server control socket + if os.path.exists(sockname): + os.unlink(sockname) + + sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) + # AF_UNIX has path length issues so chdir here to workaround + cwd = os.getcwd() + try: + os.chdir(os.path.dirname(sockname)) + sock.bind(os.path.basename(sockname)) + finally: + os.chdir(cwd) + sock.listen(1) + + server = ProcessServer(bitbake_lock, lockname, sock, sockname, server_timeout, xmlrpcinterface) + writer = ConnectionWriter(readypipeinfd) + try: + featureset = [] + cooker = bb.cooker.BBCooker(featureset, server.register_idle_function) + except bb.BBHandledException: + return None + writer.send("r") + writer.close() + server.cooker = cooker + serverlog("Started bitbake server pid %d" % os.getpid()) + + server.run() + finally: + # Flush any messages/errors to the logfile before exit + sys.stdout.flush() + sys.stderr.flush() + +def connectProcessServer(sockname, featureset): + # Connect to socket + sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) + # AF_UNIX has path length issues so chdir here to workaround + cwd = os.getcwd() + + readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None + eq = command_chan_recv = command_chan = None + + sock.settimeout(10) + + try: + try: + os.chdir(os.path.dirname(sockname)) + finished = False + while not finished: + try: + sock.connect(os.path.basename(sockname)) + finished = True + except IOError as e: + if e.errno == errno.EWOULDBLOCK: + pass + raise + finally: + os.chdir(cwd) + + # Send an fd for the remote to write events to + readfd, writefd = os.pipe() + eq = BBUIEventQueue(readfd) + # Send an fd for the remote to recieve commands from + readfd1, writefd1 = os.pipe() + command_chan = ConnectionWriter(writefd1) + # Send an fd for the remote to write commands results to + readfd2, writefd2 = os.pipe() + command_chan_recv = ConnectionReader(readfd2) + + sendfds(sock, [writefd, readfd1, writefd2]) + + server_connection = BitBakeProcessServerConnection(command_chan, command_chan_recv, eq, sock) + + # Close the ends of the pipes we won't use + for i in [writefd, readfd1, writefd2]: + os.close(i) + + server_connection.connection.updateFeatureSet(featureset) + + except (Exception, SystemExit) as e: + if command_chan_recv: + command_chan_recv.close() + if command_chan: + command_chan.close() + for i in [writefd, readfd1, writefd2]: + try: + if i: + os.close(i) + except OSError: + pass + sock.close() + raise + + return server_connection + +def sendfds(sock, fds): + '''Send an array of fds over an AF_UNIX socket.''' + fds = array.array('i', fds) + msg = bytes([len(fds) % 256]) + sock.sendmsg([msg], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, fds)]) + +def recvfds(sock, size): + '''Receive an array of fds over an AF_UNIX socket.''' + a = array.array('i') + bytes_size = a.itemsize * size + msg, ancdata, flags, addr = sock.recvmsg(1, socket.CMSG_LEN(bytes_size)) + if not msg and not ancdata: + raise EOFError + try: + if len(ancdata) != 1: + raise RuntimeError('received %d items of ancdata' % + len(ancdata)) + cmsg_level, cmsg_type, cmsg_data = ancdata[0] + if (cmsg_level == socket.SOL_SOCKET and + cmsg_type == socket.SCM_RIGHTS): + if len(cmsg_data) % a.itemsize != 0: + raise ValueError + a.frombytes(cmsg_data) + assert len(a) % 256 == msg[0] + return list(a) + except (ValueError, IndexError): + pass + raise RuntimeError('Invalid data received') + +class BBUIEventQueue: + def __init__(self, readfd): + + self.eventQueue = [] + self.eventQueueLock = threading.Lock() + self.eventQueueNotify = threading.Event() + + self.reader = ConnectionReader(readfd) + + self.t = threading.Thread() + self.t.daemon = True + self.t.run = self.startCallbackHandler + self.t.start() + + def getEvent(self): + self.eventQueueLock.acquire() + + if len(self.eventQueue) == 0: + self.eventQueueLock.release() + return None + + item = self.eventQueue.pop(0) + + if len(self.eventQueue) == 0: + self.eventQueueNotify.clear() + + self.eventQueueLock.release() + return item + + def waitEvent(self, delay): + self.eventQueueNotify.wait(delay) + return self.getEvent() + + def queue_event(self, event): + self.eventQueueLock.acquire() + self.eventQueue.append(event) + self.eventQueueNotify.set() + self.eventQueueLock.release() + + def send_event(self, event): + self.queue_event(pickle.loads(event)) + + def startCallbackHandler(self): + bb.utils.set_process_name("UIEventQueue") + while True: + try: + self.reader.wait() + event = self.reader.get() + self.queue_event(event) + except EOFError: + # Easiest way to exit is to close the file descriptor to cause an exit + break + self.reader.close() + +class ConnectionReader(object): + + def __init__(self, fd): + self.reader = multiprocessing.connection.Connection(fd, writable=False) + self.rlock = multiprocessing.Lock() + + def wait(self, timeout=None): + return multiprocessing.connection.wait([self.reader], timeout) + + def poll(self, timeout=None): + return self.reader.poll(timeout) + + def get(self): + with self.rlock: + res = self.reader.recv_bytes() + return multiprocessing.reduction.ForkingPickler.loads(res) + + def fileno(self): + return self.reader.fileno() + + def close(self): + return self.reader.close() + + +class ConnectionWriter(object): + + def __init__(self, fd): + self.writer = multiprocessing.connection.Connection(fd, readable=False) + self.wlock = multiprocessing.Lock() + # Why bb.event needs this I have no idea + self.event = self + + def _send(self, obj): + gc.disable() + with self.wlock: + self.writer.send_bytes(obj) + gc.enable() + + def send(self, obj): + obj = multiprocessing.reduction.ForkingPickler.dumps(obj) + # See notes/code in CookerParser + # We must not terminate holding this lock else processes will hang. + # For SIGTERM, raising afterwards avoids this. + # For SIGINT, we don't want to have written partial data to the pipe. + # pthread_sigmask block/unblock would be nice but doesn't work, https://bugs.python.org/issue47139 + process = multiprocessing.current_process() + if process and hasattr(process, "queue_signals"): + with process.signal_threadlock: + process.queue_signals = True + self._send(obj) + process.queue_signals = False + try: + for sig in process.signal_received.pop(): + process.handle_sig(sig, None) + except IndexError: + pass + else: + self._send(obj) + + def fileno(self): + return self.writer.fileno() + + def close(self): + return self.writer.close() diff --git a/poky/bitbake/lib/bb/server/xmlrpcclient.py b/poky/bitbake/lib/bb/server/xmlrpcclient.py new file mode 100644 index 0000000..442ea7b --- /dev/null +++ b/poky/bitbake/lib/bb/server/xmlrpcclient.py @@ -0,0 +1,141 @@ +# +# BitBake XMLRPC Client Interface +# +# Copyright (C) 2006 - 2007 Michael 'Mickey' Lauer +# Copyright (C) 2006 - 2008 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import socket +import http.client +import xmlrpc.client + +import bb +from bb.ui import uievent + +class BBTransport(xmlrpc.client.Transport): + def __init__(self, timeout): + self.timeout = timeout + self.connection_token = None + xmlrpc.client.Transport.__init__(self) + + # Modified from default to pass timeout to HTTPConnection + def make_connection(self, host): + #return an existing connection if possible. This allows + #HTTP/1.1 keep-alive. + if self._connection and host == self._connection[0]: + return self._connection[1] + + # create a HTTP connection object from a host descriptor + chost, self._extra_headers, x509 = self.get_host_info(host) + #store the host argument along with the connection object + self._connection = host, http.client.HTTPConnection(chost, timeout=self.timeout) + return self._connection[1] + + def set_connection_token(self, token): + self.connection_token = token + + def send_content(self, h, body): + if self.connection_token: + h.putheader("Bitbake-token", self.connection_token) + xmlrpc.client.Transport.send_content(self, h, body) + +def _create_server(host, port, timeout = 60): + t = BBTransport(timeout) + s = xmlrpc.client.ServerProxy("http://%s:%d/" % (host, port), transport=t, allow_none=True, use_builtin_types=True) + return s, t + +def check_connection(remote, timeout): + try: + host, port = remote.split(":") + port = int(port) + except Exception as e: + bb.warn("Failed to read remote definition (%s)" % str(e)) + raise e + + server, _transport = _create_server(host, port, timeout) + try: + ret, err = server.runCommand(['getVariable', 'TOPDIR']) + if err or not ret: + return False + except ConnectionError: + return False + return True + +class BitBakeXMLRPCServerConnection(object): + def __init__(self, host, port, clientinfo=("localhost", 0), observer_only = False, featureset = None): + self.connection, self.transport = _create_server(host, port) + self.clientinfo = clientinfo + self.observer_only = observer_only + if featureset: + self.featureset = featureset + else: + self.featureset = [] + + self.events = uievent.BBUIEventQueue(self.connection, self.clientinfo) + + _, error = self.connection.runCommand(["setFeatures", self.featureset]) + if error: + # disconnect the client, we can't make the setFeature work + self.connection.removeClient() + # no need to log it here, the error shall be sent to the client + raise BaseException(error) + + def connect(self, token = None): + if token is None: + if self.observer_only: + token = "observer" + else: + token = self.connection.addClient() + + if token is None: + return None + + self.transport.set_connection_token(token) + return self + + def removeClient(self): + if not self.observer_only: + self.connection.removeClient() + + def terminate(self): + # Don't wait for server indefinitely + socket.setdefaulttimeout(2) + try: + self.events.system_quit() + except: + pass + try: + self.connection.removeClient() + except: + pass + +def connectXMLRPC(remote, featureset, observer_only = False, token = None): + # The format of "remote" must be "server:port" + try: + [host, port] = remote.split(":") + port = int(port) + except Exception as e: + bb.warn("Failed to parse remote definition %s (%s)" % (remote, str(e))) + raise e + + # We need our IP for the server connection. We get the IP + # by trying to connect with the server + try: + s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + s.connect((host, port)) + ip = s.getsockname()[0] + s.close() + except Exception as e: + bb.warn("Could not create socket for %s:%s (%s)" % (host, port, str(e))) + raise e + try: + connection = BitBakeXMLRPCServerConnection(host, port, (ip, 0), observer_only, featureset) + return connection.connect(token) + except Exception as e: + bb.warn("Could not connect to server at %s:%s (%s)" % (host, port, str(e))) + raise e + + + diff --git a/poky/bitbake/lib/bb/server/xmlrpcserver.py b/poky/bitbake/lib/bb/server/xmlrpcserver.py new file mode 100644 index 0000000..01f5553 --- /dev/null +++ b/poky/bitbake/lib/bb/server/xmlrpcserver.py @@ -0,0 +1,146 @@ +# +# BitBake XMLRPC Server Interface +# +# Copyright (C) 2006 - 2007 Michael 'Mickey' Lauer +# Copyright (C) 2006 - 2008 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import hashlib +import time +import inspect +from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler +import bb.server.xmlrpcclient + +import bb + +# This request handler checks if the request has a "Bitbake-token" header +# field (this comes from the client side) and compares it with its internal +# "Bitbake-token" field (this comes from the server). If the two are not +# equal, it is assumed that a client is trying to connect to the server +# while another client is connected to the server. In this case, a 503 error +# ("service unavailable") is returned to the client. +class BitBakeXMLRPCRequestHandler(SimpleXMLRPCRequestHandler): + def __init__(self, request, client_address, server): + self.server = server + SimpleXMLRPCRequestHandler.__init__(self, request, client_address, server) + + def do_POST(self): + try: + remote_token = self.headers["Bitbake-token"] + except: + remote_token = None + if 0 and remote_token != self.server.connection_token and remote_token != "observer": + self.report_503() + else: + if remote_token == "observer": + self.server.readonly = True + else: + self.server.readonly = False + SimpleXMLRPCRequestHandler.do_POST(self) + + def report_503(self): + self.send_response(503) + response = 'No more client allowed' + self.send_header("Content-type", "text/plain") + self.send_header("Content-length", str(len(response))) + self.end_headers() + self.wfile.write(bytes(response, 'utf-8')) + +class BitBakeXMLRPCServer(SimpleXMLRPCServer): + # remove this when you're done with debugging + # allow_reuse_address = True + + def __init__(self, interface, cooker, parent): + # Use auto port configuration + if (interface[1] == -1): + interface = (interface[0], 0) + SimpleXMLRPCServer.__init__(self, interface, + requestHandler=BitBakeXMLRPCRequestHandler, + logRequests=False, allow_none=True) + self.host, self.port = self.socket.getsockname() + self.interface = interface + + self.connection_token = None + self.commands = BitBakeXMLRPCServerCommands(self) + self.register_functions(self.commands, "") + + self.cooker = cooker + self.parent = parent + + + def register_functions(self, context, prefix): + """ + Convenience method for registering all functions in the scope + of this class that start with a common prefix + """ + methodlist = inspect.getmembers(context, inspect.ismethod) + for name, method in methodlist: + if name.startswith(prefix): + self.register_function(method, name[len(prefix):]) + + def get_timeout(self, delay): + socktimeout = self.socket.gettimeout() or delay + return min(socktimeout, delay) + + def handle_requests(self): + self._handle_request_noblock() + +class BitBakeXMLRPCServerCommands(): + + def __init__(self, server): + self.server = server + self.has_client = False + + def registerEventHandler(self, host, port): + """ + Register a remote UI Event Handler + """ + s, t = bb.server.xmlrpcclient._create_server(host, port) + + # we don't allow connections if the cooker is running + if (self.server.cooker.state in [bb.cooker.state.parsing, bb.cooker.state.running]): + return None, "Cooker is busy: %s" % bb.cooker.state.get_name(self.server.cooker.state) + + self.event_handle = bb.event.register_UIHhandler(s, True) + return self.event_handle, 'OK' + + def unregisterEventHandler(self, handlerNum): + """ + Unregister a remote UI Event Handler + """ + ret = bb.event.unregister_UIHhandler(handlerNum, True) + self.event_handle = None + return ret + + def runCommand(self, command): + """ + Run a cooker command on the server + """ + return self.server.cooker.command.runCommand(command, self.server.readonly) + + def getEventHandle(self): + return self.event_handle + + def terminateServer(self): + """ + Trigger the server to quit + """ + self.server.parent.quit = True + print("XMLRPC Server triggering exit") + return + + def addClient(self): + if self.server.parent.haveui: + return None + token = hashlib.md5(str(time.time()).encode("utf-8")).hexdigest() + self.server.connection_token = token + self.server.parent.haveui = True + return token + + def removeClient(self): + if self.server.parent.haveui: + self.server.connection_token = None + self.server.parent.haveui = False + diff --git a/poky/bitbake/lib/bb/siggen.py b/poky/bitbake/lib/bb/siggen.py new file mode 100644 index 0000000..0a9ce0e --- /dev/null +++ b/poky/bitbake/lib/bb/siggen.py @@ -0,0 +1,1130 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import hashlib +import logging +import os +import re +import tempfile +import pickle +import bb.data +import difflib +import simplediff +import json +import bb.compress.zstd +from bb.checksum import FileChecksumCache +from bb import runqueue +import hashserv +import hashserv.client + +logger = logging.getLogger('BitBake.SigGen') +hashequiv_logger = logging.getLogger('BitBake.SigGen.HashEquiv') + +class SetEncoder(json.JSONEncoder): + def default(self, obj): + if isinstance(obj, set): + return dict(_set_object=list(sorted(obj))) + return json.JSONEncoder.default(self, obj) + +def SetDecoder(dct): + if '_set_object' in dct: + return set(dct['_set_object']) + return dct + +def init(d): + siggens = [obj for obj in globals().values() + if type(obj) is type and issubclass(obj, SignatureGenerator)] + + desired = d.getVar("BB_SIGNATURE_HANDLER") or "noop" + for sg in siggens: + if desired == sg.name: + return sg(d) + else: + logger.error("Invalid signature generator '%s', using default 'noop'\n" + "Available generators: %s", desired, + ', '.join(obj.name for obj in siggens)) + return SignatureGenerator(d) + +class SignatureGenerator(object): + """ + """ + name = "noop" + + # If the derived class supports multiconfig datacaches, set this to True + # The default is False for backward compatibility with derived signature + # generators that do not understand multiconfig caches + supports_multiconfig_datacaches = False + + def __init__(self, data): + self.basehash = {} + self.taskhash = {} + self.unihash = {} + self.runtaskdeps = {} + self.file_checksum_values = {} + self.taints = {} + self.unitaskhashes = {} + self.tidtopn = {} + self.setscenetasks = set() + + def finalise(self, fn, d, varient): + return + + def postparsing_clean_cache(self): + return + + def get_unihash(self, tid): + return self.taskhash[tid] + + def prep_taskhash(self, tid, deps, dataCaches): + return + + def get_taskhash(self, tid, deps, dataCaches): + self.taskhash[tid] = hashlib.sha256(tid.encode("utf-8")).hexdigest() + return self.taskhash[tid] + + def writeout_file_checksum_cache(self): + """Write/update the file checksum cache onto disk""" + return + + def stampfile(self, stampbase, file_name, taskname, extrainfo): + return ("%s.%s.%s" % (stampbase, taskname, extrainfo)).rstrip('.') + + def stampcleanmask(self, stampbase, file_name, taskname, extrainfo): + return ("%s.%s.%s" % (stampbase, taskname, extrainfo)).rstrip('.') + + def dump_sigtask(self, fn, task, stampbase, runtime): + return + + def invalidate_task(self, task, d, fn): + bb.build.del_stamp(task, d, fn) + + def dump_sigs(self, dataCache, options): + return + + def get_taskdata(self): + return (self.runtaskdeps, self.taskhash, self.unihash, self.file_checksum_values, self.taints, self.basehash, self.unitaskhashes, self.tidtopn, self.setscenetasks) + + def set_taskdata(self, data): + self.runtaskdeps, self.taskhash, self.unihash, self.file_checksum_values, self.taints, self.basehash, self.unitaskhashes, self.tidtopn, self.setscenetasks = data + + def reset(self, data): + self.__init__(data) + + def get_taskhashes(self): + return self.taskhash, self.unihash, self.unitaskhashes, self.tidtopn + + def set_taskhashes(self, hashes): + self.taskhash, self.unihash, self.unitaskhashes, self.tidtopn = hashes + + def save_unitaskhashes(self): + return + + def set_setscene_tasks(self, setscene_tasks): + return + + @classmethod + def get_data_caches(cls, dataCaches, mc): + """ + This function returns the datacaches that should be passed to signature + generator functions. If the signature generator supports multiconfig + caches, the entire dictionary of data caches is sent, otherwise a + special proxy is sent that support both index access to all + multiconfigs, and also direct access for the default multiconfig. + + The proxy class allows code in this class itself to always use + multiconfig aware code (to ease maintenance), but derived classes that + are unaware of multiconfig data caches can still access the default + multiconfig as expected. + + Do not override this function in derived classes; it will be removed in + the future when support for multiconfig data caches is mandatory + """ + class DataCacheProxy(object): + def __init__(self): + pass + + def __getitem__(self, key): + return dataCaches[key] + + def __getattr__(self, name): + return getattr(dataCaches[mc], name) + + if cls.supports_multiconfig_datacaches: + return dataCaches + + return DataCacheProxy() + + def exit(self): + return + +class SignatureGeneratorBasic(SignatureGenerator): + """ + """ + name = "basic" + + def __init__(self, data): + self.basehash = {} + self.taskhash = {} + self.unihash = {} + self.taskdeps = {} + self.runtaskdeps = {} + self.file_checksum_values = {} + self.taints = {} + self.gendeps = {} + self.lookupcache = {} + self.setscenetasks = set() + self.basehash_ignore_vars = set((data.getVar("BB_BASEHASH_IGNORE_VARS") or "").split()) + self.taskhash_ignore_tasks = None + self.init_rundepcheck(data) + checksum_cache_file = data.getVar("BB_HASH_CHECKSUM_CACHE_FILE") + if checksum_cache_file: + self.checksum_cache = FileChecksumCache() + self.checksum_cache.init_cache(data, checksum_cache_file) + else: + self.checksum_cache = None + + self.unihash_cache = bb.cache.SimpleCache("3") + self.unitaskhashes = self.unihash_cache.init_cache(data, "bb_unihashes.dat", {}) + self.localdirsexclude = (data.getVar("BB_SIGNATURE_LOCAL_DIRS_EXCLUDE") or "CVS .bzr .git .hg .osc .p4 .repo .svn").split() + self.tidtopn = {} + + def init_rundepcheck(self, data): + self.taskhash_ignore_tasks = data.getVar("BB_TASKHASH_IGNORE_TASKS") or None + if self.taskhash_ignore_tasks: + self.twl = re.compile(self.taskhash_ignore_tasks) + else: + self.twl = None + + def _build_data(self, fn, d): + + ignore_mismatch = ((d.getVar("BB_HASH_IGNORE_MISMATCH") or '') == '1') + tasklist, gendeps, lookupcache = bb.data.generate_dependencies(d, self.basehash_ignore_vars) + + taskdeps, basehash = bb.data.generate_dependency_hash(tasklist, gendeps, lookupcache, self.basehash_ignore_vars, fn) + + for task in tasklist: + tid = fn + ":" + task + if not ignore_mismatch and tid in self.basehash and self.basehash[tid] != basehash[tid]: + bb.error("When reparsing %s, the basehash value changed from %s to %s. The metadata is not deterministic and this needs to be fixed." % (tid, self.basehash[tid], basehash[tid])) + bb.error("The following commands may help:") + cmd = "$ bitbake %s -c%s" % (d.getVar('PN'), task) + # Make sure sigdata is dumped before run printdiff + bb.error("%s -Snone" % cmd) + bb.error("Then:") + bb.error("%s -Sprintdiff\n" % cmd) + self.basehash[tid] = basehash[tid] + + self.taskdeps[fn] = taskdeps + self.gendeps[fn] = gendeps + self.lookupcache[fn] = lookupcache + + return taskdeps + + def set_setscene_tasks(self, setscene_tasks): + self.setscenetasks = set(setscene_tasks) + + def finalise(self, fn, d, variant): + + mc = d.getVar("__BBMULTICONFIG", False) or "" + if variant or mc: + fn = bb.cache.realfn2virtual(fn, variant, mc) + + try: + taskdeps = self._build_data(fn, d) + except bb.parse.SkipRecipe: + raise + except: + bb.warn("Error during finalise of %s" % fn) + raise + + #Slow but can be useful for debugging mismatched basehashes + #for task in self.taskdeps[fn]: + # self.dump_sigtask(fn, task, d.getVar("STAMP"), False) + + for task in taskdeps: + d.setVar("BB_BASEHASH:task-%s" % task, self.basehash[fn + ":" + task]) + + def postparsing_clean_cache(self): + # + # After parsing we can remove some things from memory to reduce our memory footprint + # + self.gendeps = {} + self.lookupcache = {} + self.taskdeps = {} + + def rundep_check(self, fn, recipename, task, dep, depname, dataCaches): + # Return True if we should keep the dependency, False to drop it + # We only manipulate the dependencies for packages not in the ignore + # list + if self.twl and not self.twl.search(recipename): + # then process the actual dependencies + if self.twl.search(depname): + return False + return True + + def read_taint(self, fn, task, stampbase): + taint = None + try: + with open(stampbase + '.' + task + '.taint', 'r') as taintf: + taint = taintf.read() + except IOError: + pass + return taint + + def prep_taskhash(self, tid, deps, dataCaches): + + (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) + + self.basehash[tid] = dataCaches[mc].basetaskhash[tid] + self.runtaskdeps[tid] = [] + self.file_checksum_values[tid] = [] + recipename = dataCaches[mc].pkg_fn[fn] + + self.tidtopn[tid] = recipename + + for dep in sorted(deps, key=clean_basepath): + (depmc, _, _, depmcfn) = bb.runqueue.split_tid_mcfn(dep) + depname = dataCaches[depmc].pkg_fn[depmcfn] + if not self.supports_multiconfig_datacaches and mc != depmc: + # If the signature generator doesn't understand multiconfig + # data caches, any dependency not in the same multiconfig must + # be skipped for backward compatibility + continue + if not self.rundep_check(fn, recipename, task, dep, depname, dataCaches): + continue + if dep not in self.taskhash: + bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?" % dep) + self.runtaskdeps[tid].append(dep) + + if task in dataCaches[mc].file_checksums[fn]: + if self.checksum_cache: + checksums = self.checksum_cache.get_checksums(dataCaches[mc].file_checksums[fn][task], recipename, self.localdirsexclude) + else: + checksums = bb.fetch2.get_file_checksums(dataCaches[mc].file_checksums[fn][task], recipename, self.localdirsexclude) + for (f,cs) in checksums: + self.file_checksum_values[tid].append((f,cs)) + + taskdep = dataCaches[mc].task_deps[fn] + if 'nostamp' in taskdep and task in taskdep['nostamp']: + # Nostamp tasks need an implicit taint so that they force any dependent tasks to run + if tid in self.taints and self.taints[tid].startswith("nostamp:"): + # Don't reset taint value upon every call + pass + else: + import uuid + taint = str(uuid.uuid4()) + self.taints[tid] = "nostamp:" + taint + + taint = self.read_taint(fn, task, dataCaches[mc].stamp[fn]) + if taint: + self.taints[tid] = taint + logger.warning("%s is tainted from a forced run" % tid) + + return + + def get_taskhash(self, tid, deps, dataCaches): + + data = self.basehash[tid] + for dep in self.runtaskdeps[tid]: + data += self.get_unihash(dep) + + for (f, cs) in self.file_checksum_values[tid]: + if cs: + if "/./" in f: + data += "./" + f.split("/./")[1] + data += cs + + if tid in self.taints: + if self.taints[tid].startswith("nostamp:"): + data += self.taints[tid][8:] + else: + data += self.taints[tid] + + h = hashlib.sha256(data.encode("utf-8")).hexdigest() + self.taskhash[tid] = h + #d.setVar("BB_TASKHASH:task-%s" % task, taskhash[task]) + return h + + def writeout_file_checksum_cache(self): + """Write/update the file checksum cache onto disk""" + if self.checksum_cache: + self.checksum_cache.save_extras() + self.checksum_cache.save_merge() + else: + bb.fetch2.fetcher_parse_save() + bb.fetch2.fetcher_parse_done() + + def save_unitaskhashes(self): + self.unihash_cache.save(self.unitaskhashes) + + def dump_sigtask(self, fn, task, stampbase, runtime): + + tid = fn + ":" + task + referencestamp = stampbase + if isinstance(runtime, str) and runtime.startswith("customfile"): + sigfile = stampbase + referencestamp = runtime[11:] + elif runtime and tid in self.taskhash: + sigfile = stampbase + "." + task + ".sigdata" + "." + self.get_unihash(tid) + else: + sigfile = stampbase + "." + task + ".sigbasedata" + "." + self.basehash[tid] + + with bb.utils.umask(0o002): + bb.utils.mkdirhier(os.path.dirname(sigfile)) + + data = {} + data['task'] = task + data['basehash_ignore_vars'] = self.basehash_ignore_vars + data['taskhash_ignore_tasks'] = self.taskhash_ignore_tasks + data['taskdeps'] = self.taskdeps[fn][task] + data['basehash'] = self.basehash[tid] + data['gendeps'] = {} + data['varvals'] = {} + data['varvals'][task] = self.lookupcache[fn][task] + for dep in self.taskdeps[fn][task]: + if dep in self.basehash_ignore_vars: + continue + data['gendeps'][dep] = self.gendeps[fn][dep] + data['varvals'][dep] = self.lookupcache[fn][dep] + + if runtime and tid in self.taskhash: + data['runtaskdeps'] = self.runtaskdeps[tid] + data['file_checksum_values'] = [] + for f,cs in self.file_checksum_values[tid]: + if "/./" in f: + data['file_checksum_values'].append(("./" + f.split("/./")[1], cs)) + else: + data['file_checksum_values'].append((os.path.basename(f), cs)) + data['runtaskhashes'] = {} + for dep in data['runtaskdeps']: + data['runtaskhashes'][dep] = self.get_unihash(dep) + data['taskhash'] = self.taskhash[tid] + data['unihash'] = self.get_unihash(tid) + + taint = self.read_taint(fn, task, referencestamp) + if taint: + data['taint'] = taint + + if runtime and tid in self.taints: + if 'nostamp:' in self.taints[tid]: + data['taint'] = self.taints[tid] + + computed_basehash = calc_basehash(data) + if computed_basehash != self.basehash[tid]: + bb.error("Basehash mismatch %s versus %s for %s" % (computed_basehash, self.basehash[tid], tid)) + if runtime and tid in self.taskhash: + computed_taskhash = calc_taskhash(data) + if computed_taskhash != self.taskhash[tid]: + bb.error("Taskhash mismatch %s versus %s for %s" % (computed_taskhash, self.taskhash[tid], tid)) + sigfile = sigfile.replace(self.taskhash[tid], computed_taskhash) + + fd, tmpfile = bb.utils.mkstemp(dir=os.path.dirname(sigfile), prefix="sigtask.") + try: + with bb.compress.zstd.open(fd, "wt", encoding="utf-8", num_threads=1) as f: + json.dump(data, f, sort_keys=True, separators=(",", ":"), cls=SetEncoder) + f.flush() + os.chmod(tmpfile, 0o664) + bb.utils.rename(tmpfile, sigfile) + except (OSError, IOError) as err: + try: + os.unlink(tmpfile) + except OSError: + pass + raise err + + def dump_sigfn(self, fn, dataCaches, options): + if fn in self.taskdeps: + for task in self.taskdeps[fn]: + tid = fn + ":" + task + mc = bb.runqueue.mc_from_tid(tid) + if tid not in self.taskhash: + continue + if dataCaches[mc].basetaskhash[tid] != self.basehash[tid]: + bb.error("Bitbake's cached basehash does not match the one we just generated (%s)!" % tid) + bb.error("The mismatched hashes were %s and %s" % (dataCaches[mc].basetaskhash[tid], self.basehash[tid])) + self.dump_sigtask(fn, task, dataCaches[mc].stamp[fn], True) + +class SignatureGeneratorBasicHash(SignatureGeneratorBasic): + name = "basichash" + + def get_stampfile_hash(self, tid): + if tid in self.taskhash: + return self.taskhash[tid] + + # If task is not in basehash, then error + return self.basehash[tid] + + def stampfile(self, stampbase, fn, taskname, extrainfo, clean=False): + if taskname != "do_setscene" and taskname.endswith("_setscene"): + tid = fn + ":" + taskname[:-9] + else: + tid = fn + ":" + taskname + if clean: + h = "*" + else: + h = self.get_stampfile_hash(tid) + + return ("%s.%s.%s.%s" % (stampbase, taskname, h, extrainfo)).rstrip('.') + + def stampcleanmask(self, stampbase, fn, taskname, extrainfo): + return self.stampfile(stampbase, fn, taskname, extrainfo, clean=True) + + def invalidate_task(self, task, d, fn): + bb.note("Tainting hash to force rebuild of task %s, %s" % (fn, task)) + bb.build.write_taint(task, d, fn) + +class SignatureGeneratorUniHashMixIn(object): + def __init__(self, data): + self.extramethod = {} + super().__init__(data) + + def get_taskdata(self): + return (self.server, self.method, self.extramethod) + super().get_taskdata() + + def set_taskdata(self, data): + self.server, self.method, self.extramethod = data[:3] + super().set_taskdata(data[3:]) + + def client(self): + if getattr(self, '_client', None) is None: + self._client = hashserv.create_client(self.server) + return self._client + + def reset(self, data): + if getattr(self, '_client', None) is not None: + self._client.close() + self._client = None + return super().reset(data) + + def exit(self): + if getattr(self, '_client', None) is not None: + self._client.close() + self._client = None + return super().exit() + + def get_stampfile_hash(self, tid): + if tid in self.taskhash: + # If a unique hash is reported, use it as the stampfile hash. This + # ensures that if a task won't be re-run if the taskhash changes, + # but it would result in the same output hash + unihash = self._get_unihash(tid) + if unihash is not None: + return unihash + + return super().get_stampfile_hash(tid) + + def set_unihash(self, tid, unihash): + (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid) + key = mc + ":" + self.tidtopn[tid] + ":" + taskname + self.unitaskhashes[key] = (self.taskhash[tid], unihash) + self.unihash[tid] = unihash + + def _get_unihash(self, tid, checkkey=None): + if tid not in self.tidtopn: + return None + (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid) + key = mc + ":" + self.tidtopn[tid] + ":" + taskname + if key not in self.unitaskhashes: + return None + if not checkkey: + checkkey = self.taskhash[tid] + (key, unihash) = self.unitaskhashes[key] + if key != checkkey: + return None + return unihash + + def get_unihash(self, tid): + taskhash = self.taskhash[tid] + + # If its not a setscene task we can return + if self.setscenetasks and tid not in self.setscenetasks: + self.unihash[tid] = None + return taskhash + + # TODO: This cache can grow unbounded. It probably only needs to keep + # for each task + unihash = self._get_unihash(tid) + if unihash is not None: + self.unihash[tid] = unihash + return unihash + + # In the absence of being able to discover a unique hash from the + # server, make it be equivalent to the taskhash. The unique "hash" only + # really needs to be a unique string (not even necessarily a hash), but + # making it match the taskhash has a few advantages: + # + # 1) All of the sstate code that assumes hashes can be the same + # 2) It provides maximal compatibility with builders that don't use + # an equivalency server + # 3) The value is easy for multiple independent builders to derive the + # same unique hash from the same input. This means that if the + # independent builders find the same taskhash, but it isn't reported + # to the server, there is a better chance that they will agree on + # the unique hash. + unihash = taskhash + + try: + method = self.method + if tid in self.extramethod: + method = method + self.extramethod[tid] + data = self.client().get_unihash(method, self.taskhash[tid]) + if data: + unihash = data + # A unique hash equal to the taskhash is not very interesting, + # so it is reported it at debug level 2. If they differ, that + # is much more interesting, so it is reported at debug level 1 + hashequiv_logger.debug((1, 2)[unihash == taskhash], 'Found unihash %s in place of %s for %s from %s' % (unihash, taskhash, tid, self.server)) + else: + hashequiv_logger.debug2('No reported unihash for %s:%s from %s' % (tid, taskhash, self.server)) + except ConnectionError as e: + bb.warn('Error contacting Hash Equivalence Server %s: %s' % (self.server, str(e))) + + self.set_unihash(tid, unihash) + self.unihash[tid] = unihash + return unihash + + def report_unihash(self, path, task, d): + import importlib + + taskhash = d.getVar('BB_TASKHASH') + unihash = d.getVar('BB_UNIHASH') + report_taskdata = d.getVar('SSTATE_HASHEQUIV_REPORT_TASKDATA') == '1' + tempdir = d.getVar('T') + fn = d.getVar('BB_FILENAME') + tid = fn + ':do_' + task + key = tid + ':' + taskhash + + if self.setscenetasks and tid not in self.setscenetasks: + return + + # This can happen if locked sigs are in action. Detect and just exit + if taskhash != self.taskhash[tid]: + return + + # Sanity checks + cache_unihash = self._get_unihash(tid, checkkey=taskhash) + if cache_unihash is None: + bb.fatal('%s not in unihash cache. Please report this error' % key) + + if cache_unihash != unihash: + bb.fatal("Cache unihash %s doesn't match BB_UNIHASH %s" % (cache_unihash, unihash)) + + sigfile = None + sigfile_name = "depsig.do_%s.%d" % (task, os.getpid()) + sigfile_link = "depsig.do_%s" % task + + try: + sigfile = open(os.path.join(tempdir, sigfile_name), 'w+b') + + locs = {'path': path, 'sigfile': sigfile, 'task': task, 'd': d} + + if "." in self.method: + (module, method) = self.method.rsplit('.', 1) + locs['method'] = getattr(importlib.import_module(module), method) + outhash = bb.utils.better_eval('method(path, sigfile, task, d)', locs) + else: + outhash = bb.utils.better_eval(self.method + '(path, sigfile, task, d)', locs) + + try: + extra_data = {} + + owner = d.getVar('SSTATE_HASHEQUIV_OWNER') + if owner: + extra_data['owner'] = owner + + if report_taskdata: + sigfile.seek(0) + + extra_data['PN'] = d.getVar('PN') + extra_data['PV'] = d.getVar('PV') + extra_data['PR'] = d.getVar('PR') + extra_data['task'] = task + extra_data['outhash_siginfo'] = sigfile.read().decode('utf-8') + + method = self.method + if tid in self.extramethod: + method = method + self.extramethod[tid] + + data = self.client().report_unihash(taskhash, method, outhash, unihash, extra_data) + new_unihash = data['unihash'] + + if new_unihash != unihash: + hashequiv_logger.debug('Task %s unihash changed %s -> %s by server %s' % (taskhash, unihash, new_unihash, self.server)) + bb.event.fire(bb.runqueue.taskUniHashUpdate(fn + ':do_' + task, new_unihash), d) + self.set_unihash(tid, new_unihash) + d.setVar('BB_UNIHASH', new_unihash) + else: + hashequiv_logger.debug('Reported task %s as unihash %s to %s' % (taskhash, unihash, self.server)) + except ConnectionError as e: + bb.warn('Error contacting Hash Equivalence Server %s: %s' % (self.server, str(e))) + finally: + if sigfile: + sigfile.close() + + sigfile_link_path = os.path.join(tempdir, sigfile_link) + bb.utils.remove(sigfile_link_path) + + try: + os.symlink(sigfile_name, sigfile_link_path) + except OSError: + pass + + def report_unihash_equiv(self, tid, taskhash, wanted_unihash, current_unihash, datacaches): + try: + extra_data = {} + method = self.method + if tid in self.extramethod: + method = method + self.extramethod[tid] + + data = self.client().report_unihash_equiv(taskhash, method, wanted_unihash, extra_data) + hashequiv_logger.verbose('Reported task %s as unihash %s to %s (%s)' % (tid, wanted_unihash, self.server, str(data))) + + if data is None: + bb.warn("Server unable to handle unihash report") + return False + + finalunihash = data['unihash'] + + if finalunihash == current_unihash: + hashequiv_logger.verbose('Task %s unihash %s unchanged by server' % (tid, finalunihash)) + elif finalunihash == wanted_unihash: + hashequiv_logger.verbose('Task %s unihash changed %s -> %s as wanted' % (tid, current_unihash, finalunihash)) + self.set_unihash(tid, finalunihash) + return True + else: + # TODO: What to do here? + hashequiv_logger.verbose('Task %s unihash reported as unwanted hash %s' % (tid, finalunihash)) + + except ConnectionError as e: + bb.warn('Error contacting Hash Equivalence Server %s: %s' % (self.server, str(e))) + + return False + +# +# Dummy class used for bitbake-selftest +# +class SignatureGeneratorTestEquivHash(SignatureGeneratorUniHashMixIn, SignatureGeneratorBasicHash): + name = "TestEquivHash" + def init_rundepcheck(self, data): + super().init_rundepcheck(data) + self.server = data.getVar('BB_HASHSERVE') + self.method = "sstate_output_hash" + +# +# Dummy class used for bitbake-selftest +# +class SignatureGeneratorTestMulticonfigDepends(SignatureGeneratorBasicHash): + name = "TestMulticonfigDepends" + supports_multiconfig_datacaches = True + +def dump_this_task(outfile, d): + import bb.parse + fn = d.getVar("BB_FILENAME") + task = "do_" + d.getVar("BB_CURRENTTASK") + referencestamp = bb.build.stamp_internal(task, d, None, True) + bb.parse.siggen.dump_sigtask(fn, task, outfile, "customfile:" + referencestamp) + +def init_colors(enable_color): + """Initialise colour dict for passing to compare_sigfiles()""" + # First set up the colours + colors = {'color_title': '\033[1m', + 'color_default': '\033[0m', + 'color_add': '\033[0;32m', + 'color_remove': '\033[0;31m', + } + # Leave all keys present but clear the values + if not enable_color: + for k in colors.keys(): + colors[k] = '' + return colors + +def worddiff_str(oldstr, newstr, colors=None): + if not colors: + colors = init_colors(False) + diff = simplediff.diff(oldstr.split(' '), newstr.split(' ')) + ret = [] + for change, value in diff: + value = ' '.join(value) + if change == '=': + ret.append(value) + elif change == '+': + item = '{color_add}{{+{value}+}}{color_default}'.format(value=value, **colors) + ret.append(item) + elif change == '-': + item = '{color_remove}[-{value}-]{color_default}'.format(value=value, **colors) + ret.append(item) + whitespace_note = '' + if oldstr != newstr and ' '.join(oldstr.split()) == ' '.join(newstr.split()): + whitespace_note = ' (whitespace changed)' + return '"%s"%s' % (' '.join(ret), whitespace_note) + +def list_inline_diff(oldlist, newlist, colors=None): + if not colors: + colors = init_colors(False) + diff = simplediff.diff(oldlist, newlist) + ret = [] + for change, value in diff: + value = ' '.join(value) + if change == '=': + ret.append("'%s'" % value) + elif change == '+': + item = '{color_add}+{value}{color_default}'.format(value=value, **colors) + ret.append(item) + elif change == '-': + item = '{color_remove}-{value}{color_default}'.format(value=value, **colors) + ret.append(item) + return '[%s]' % (', '.join(ret)) + +def clean_basepath(basepath): + basepath, dir, recipe_task = basepath.rsplit("/", 2) + cleaned = dir + '/' + recipe_task + + if basepath[0] == '/': + return cleaned + + if basepath.startswith("mc:") and basepath.count(':') >= 2: + mc, mc_name, basepath = basepath.split(":", 2) + mc_suffix = ':mc:' + mc_name + else: + mc_suffix = '' + + # mc stuff now removed from basepath. Whatever was next, if present will be the first + # suffix. ':/', recipe path start, marks the end of this. Something like + # 'virtual:a[:b[:c]]:/path...' (b and c being optional) + if basepath[0] != '/': + cleaned += ':' + basepath.split(':/', 1)[0] + + return cleaned + mc_suffix + +def clean_basepaths(a): + b = {} + for x in a: + b[clean_basepath(x)] = a[x] + return b + +def clean_basepaths_list(a): + b = [] + for x in a: + b.append(clean_basepath(x)) + return b + +# Handled renamed fields +def handle_renames(data): + if 'basewhitelist' in data: + data['basehash_ignore_vars'] = data['basewhitelist'] + del data['basewhitelist'] + if 'taskwhitelist' in data: + data['taskhash_ignore_tasks'] = data['taskwhitelist'] + del data['taskwhitelist'] + + +def compare_sigfiles(a, b, recursecb=None, color=False, collapsed=False): + output = [] + + colors = init_colors(color) + def color_format(formatstr, **values): + """ + Return colour formatted string. + NOTE: call with the format string, not an already formatted string + containing values (otherwise you could have trouble with { and } + characters) + """ + if not formatstr.endswith('{color_default}'): + formatstr += '{color_default}' + # In newer python 3 versions you can pass both of these directly, + # but we only require 3.4 at the moment + formatparams = {} + formatparams.update(colors) + formatparams.update(values) + return formatstr.format(**formatparams) + + with bb.compress.zstd.open(a, "rt", encoding="utf-8", num_threads=1) as f: + a_data = json.load(f, object_hook=SetDecoder) + with bb.compress.zstd.open(b, "rt", encoding="utf-8", num_threads=1) as f: + b_data = json.load(f, object_hook=SetDecoder) + + for data in [a_data, b_data]: + handle_renames(data) + + def dict_diff(a, b, ignored_vars=set()): + sa = set(a.keys()) + sb = set(b.keys()) + common = sa & sb + changed = set() + for i in common: + if a[i] != b[i] and i not in ignored_vars: + changed.add(i) + added = sb - sa + removed = sa - sb + return changed, added, removed + + def file_checksums_diff(a, b): + from collections import Counter + + # Convert lists back to tuples + a = [(f[0], f[1]) for f in a] + b = [(f[0], f[1]) for f in b] + + # Compare lists, ensuring we can handle duplicate filenames if they exist + removedcount = Counter(a) + removedcount.subtract(b) + addedcount = Counter(b) + addedcount.subtract(a) + added = [] + for x in b: + if addedcount[x] > 0: + addedcount[x] -= 1 + added.append(x) + removed = [] + changed = [] + for x in a: + if removedcount[x] > 0: + removedcount[x] -= 1 + for y in added: + if y[0] == x[0]: + changed.append((x[0], x[1], y[1])) + added.remove(y) + break + else: + removed.append(x) + added = [x[0] for x in added] + removed = [x[0] for x in removed] + return changed, added, removed + + if 'basehash_ignore_vars' in a_data and a_data['basehash_ignore_vars'] != b_data['basehash_ignore_vars']: + output.append(color_format("{color_title}basehash_ignore_vars changed{color_default} from '%s' to '%s'") % (a_data['basehash_ignore_vars'], b_data['basehash_ignore_vars'])) + if a_data['basehash_ignore_vars'] and b_data['basehash_ignore_vars']: + output.append("changed items: %s" % a_data['basehash_ignore_vars'].symmetric_difference(b_data['basehash_ignore_vars'])) + + if 'taskhash_ignore_tasks' in a_data and a_data['taskhash_ignore_tasks'] != b_data['taskhash_ignore_tasks']: + output.append(color_format("{color_title}taskhash_ignore_tasks changed{color_default} from '%s' to '%s'") % (a_data['taskhash_ignore_tasks'], b_data['taskhash_ignore_tasks'])) + if a_data['taskhash_ignore_tasks'] and b_data['taskhash_ignore_tasks']: + output.append("changed items: %s" % a_data['taskhash_ignore_tasks'].symmetric_difference(b_data['taskhash_ignore_tasks'])) + + if a_data['taskdeps'] != b_data['taskdeps']: + output.append(color_format("{color_title}Task dependencies changed{color_default} from:\n%s\nto:\n%s") % (sorted(a_data['taskdeps']), sorted(b_data['taskdeps']))) + + if a_data['basehash'] != b_data['basehash'] and not collapsed: + output.append(color_format("{color_title}basehash changed{color_default} from %s to %s") % (a_data['basehash'], b_data['basehash'])) + + changed, added, removed = dict_diff(a_data['gendeps'], b_data['gendeps'], a_data['basehash_ignore_vars'] & b_data['basehash_ignore_vars']) + if changed: + for dep in sorted(changed): + output.append(color_format("{color_title}List of dependencies for variable %s changed from '{color_default}%s{color_title}' to '{color_default}%s{color_title}'") % (dep, a_data['gendeps'][dep], b_data['gendeps'][dep])) + if a_data['gendeps'][dep] and b_data['gendeps'][dep]: + output.append("changed items: %s" % a_data['gendeps'][dep].symmetric_difference(b_data['gendeps'][dep])) + if added: + for dep in sorted(added): + output.append(color_format("{color_title}Dependency on variable %s was added") % (dep)) + if removed: + for dep in sorted(removed): + output.append(color_format("{color_title}Dependency on Variable %s was removed") % (dep)) + + + changed, added, removed = dict_diff(a_data['varvals'], b_data['varvals']) + if changed: + for dep in sorted(changed): + oldval = a_data['varvals'][dep] + newval = b_data['varvals'][dep] + if newval and oldval and ('\n' in oldval or '\n' in newval): + diff = difflib.unified_diff(oldval.splitlines(), newval.splitlines(), lineterm='') + # Cut off the first two lines, since we aren't interested in + # the old/new filename (they are blank anyway in this case) + difflines = list(diff)[2:] + if color: + # Add colour to diff output + for i, line in enumerate(difflines): + if line.startswith('+'): + line = color_format('{color_add}{line}', line=line) + difflines[i] = line + elif line.startswith('-'): + line = color_format('{color_remove}{line}', line=line) + difflines[i] = line + output.append(color_format("{color_title}Variable {var} value changed:{color_default}\n{diff}", var=dep, diff='\n'.join(difflines))) + elif newval and oldval and (' ' in oldval or ' ' in newval): + output.append(color_format("{color_title}Variable {var} value changed:{color_default}\n{diff}", var=dep, diff=worddiff_str(oldval, newval, colors))) + else: + output.append(color_format("{color_title}Variable {var} value changed from '{color_default}{oldval}{color_title}' to '{color_default}{newval}{color_title}'{color_default}", var=dep, oldval=oldval, newval=newval)) + + if not 'file_checksum_values' in a_data: + a_data['file_checksum_values'] = [] + if not 'file_checksum_values' in b_data: + b_data['file_checksum_values'] = [] + + changed, added, removed = file_checksums_diff(a_data['file_checksum_values'], b_data['file_checksum_values']) + if changed: + for f, old, new in changed: + output.append(color_format("{color_title}Checksum for file %s changed{color_default} from %s to %s") % (f, old, new)) + if added: + for f in added: + output.append(color_format("{color_title}Dependency on checksum of file %s was added") % (f)) + if removed: + for f in removed: + output.append(color_format("{color_title}Dependency on checksum of file %s was removed") % (f)) + + if not 'runtaskdeps' in a_data: + a_data['runtaskdeps'] = {} + if not 'runtaskdeps' in b_data: + b_data['runtaskdeps'] = {} + + if not collapsed: + if len(a_data['runtaskdeps']) != len(b_data['runtaskdeps']): + changed = ["Number of task dependencies changed"] + else: + changed = [] + for idx, task in enumerate(a_data['runtaskdeps']): + a = a_data['runtaskdeps'][idx] + b = b_data['runtaskdeps'][idx] + if a_data['runtaskhashes'][a] != b_data['runtaskhashes'][b] and not collapsed: + changed.append("%s with hash %s\n changed to\n%s with hash %s" % (clean_basepath(a), a_data['runtaskhashes'][a], clean_basepath(b), b_data['runtaskhashes'][b])) + + if changed: + clean_a = clean_basepaths_list(a_data['runtaskdeps']) + clean_b = clean_basepaths_list(b_data['runtaskdeps']) + if clean_a != clean_b: + output.append(color_format("{color_title}runtaskdeps changed:{color_default}\n%s") % list_inline_diff(clean_a, clean_b, colors)) + else: + output.append(color_format("{color_title}runtaskdeps changed:")) + output.append("\n".join(changed)) + + + if 'runtaskhashes' in a_data and 'runtaskhashes' in b_data: + a = clean_basepaths(a_data['runtaskhashes']) + b = clean_basepaths(b_data['runtaskhashes']) + changed, added, removed = dict_diff(a, b) + if added: + for dep in sorted(added): + bdep_found = False + if removed: + for bdep in removed: + if b[dep] == a[bdep]: + #output.append("Dependency on task %s was replaced by %s with same hash" % (dep, bdep)) + bdep_found = True + if not bdep_found: + output.append(color_format("{color_title}Dependency on task %s was added{color_default} with hash %s") % (dep, b[dep])) + if removed: + for dep in sorted(removed): + adep_found = False + if added: + for adep in added: + if b[adep] == a[dep]: + #output.append("Dependency on task %s was replaced by %s with same hash" % (adep, dep)) + adep_found = True + if not adep_found: + output.append(color_format("{color_title}Dependency on task %s was removed{color_default} with hash %s") % (dep, a[dep])) + if changed: + for dep in sorted(changed): + if not collapsed: + output.append(color_format("{color_title}Hash for task dependency %s changed{color_default} from %s to %s") % (dep, a[dep], b[dep])) + if callable(recursecb): + recout = recursecb(dep, a[dep], b[dep]) + if recout: + if collapsed: + output.extend(recout) + else: + # If a dependent hash changed, might as well print the line above and then defer to the changes in + # that hash since in all likelyhood, they're the same changes this task also saw. + output = [output[-1]] + recout + break + + a_taint = a_data.get('taint', None) + b_taint = b_data.get('taint', None) + if a_taint != b_taint: + if a_taint and a_taint.startswith('nostamp:'): + a_taint = a_taint.replace('nostamp:', 'nostamp(uuid4):') + if b_taint and b_taint.startswith('nostamp:'): + b_taint = b_taint.replace('nostamp:', 'nostamp(uuid4):') + output.append(color_format("{color_title}Taint (by forced/invalidated task) changed{color_default} from %s to %s") % (a_taint, b_taint)) + + return output + + +def calc_basehash(sigdata): + task = sigdata['task'] + basedata = sigdata['varvals'][task] + + if basedata is None: + basedata = '' + + alldeps = sigdata['taskdeps'] + for dep in alldeps: + basedata = basedata + dep + val = sigdata['varvals'][dep] + if val is not None: + basedata = basedata + str(val) + + return hashlib.sha256(basedata.encode("utf-8")).hexdigest() + +def calc_taskhash(sigdata): + data = sigdata['basehash'] + + for dep in sigdata['runtaskdeps']: + data = data + sigdata['runtaskhashes'][dep] + + for c in sigdata['file_checksum_values']: + if c[1]: + if "./" in c[0]: + data = data + c[0] + data = data + c[1] + + if 'taint' in sigdata: + if 'nostamp:' in sigdata['taint']: + data = data + sigdata['taint'][8:] + else: + data = data + sigdata['taint'] + + return hashlib.sha256(data.encode("utf-8")).hexdigest() + + +def dump_sigfile(a): + output = [] + + with bb.compress.zstd.open(a, "rt", encoding="utf-8", num_threads=1) as f: + a_data = json.load(f, object_hook=SetDecoder) + + handle_renames(a_data) + + output.append("basehash_ignore_vars: %s" % (sorted(a_data['basehash_ignore_vars']))) + + output.append("taskhash_ignore_tasks: %s" % (sorted(a_data['taskhash_ignore_tasks'] or []))) + + output.append("Task dependencies: %s" % (sorted(a_data['taskdeps']))) + + output.append("basehash: %s" % (a_data['basehash'])) + + for dep in sorted(a_data['gendeps']): + output.append("List of dependencies for variable %s is %s" % (dep, sorted(a_data['gendeps'][dep]))) + + for dep in sorted(a_data['varvals']): + output.append("Variable %s value is %s" % (dep, a_data['varvals'][dep])) + + if 'runtaskdeps' in a_data: + output.append("Tasks this task depends on: %s" % (sorted(a_data['runtaskdeps']))) + + if 'file_checksum_values' in a_data: + output.append("This task depends on the checksums of files: %s" % (sorted(a_data['file_checksum_values']))) + + if 'runtaskhashes' in a_data: + for dep in sorted(a_data['runtaskhashes']): + output.append("Hash for dependent task %s is %s" % (dep, a_data['runtaskhashes'][dep])) + + if 'taint' in a_data: + if a_data['taint'].startswith('nostamp:'): + msg = a_data['taint'].replace('nostamp:', 'nostamp(uuid4):') + else: + msg = a_data['taint'] + output.append("Tainted (by forced/invalidated task): %s" % msg) + + if 'task' in a_data: + computed_basehash = calc_basehash(a_data) + output.append("Computed base hash is %s and from file %s" % (computed_basehash, a_data['basehash'])) + else: + output.append("Unable to compute base hash") + + computed_taskhash = calc_taskhash(a_data) + output.append("Computed task hash is %s" % computed_taskhash) + + return output diff --git a/poky/bitbake/lib/bb/taskdata.py b/poky/bitbake/lib/bb/taskdata.py new file mode 100644 index 0000000..66545a6 --- /dev/null +++ b/poky/bitbake/lib/bb/taskdata.py @@ -0,0 +1,586 @@ +""" +BitBake 'TaskData' implementation + +Task data collection and handling + +""" + +# Copyright (C) 2006 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import logging +import re +import bb + +logger = logging.getLogger("BitBake.TaskData") + +def re_match_strings(target, strings): + """ + Whether or not the string 'target' matches + any one string of the strings which can be regular expression string + """ + for name in strings: + if name.startswith("^") or name.endswith("$"): + if re.match(name, target): + return True + elif name == target: + return True + return False + +class TaskEntry: + def __init__(self): + self.tdepends = [] + self.idepends = [] + self.irdepends = [] + +class TaskData: + """ + BitBake Task Data implementation + """ + def __init__(self, halt = True, skiplist = None, allowincomplete = False): + self.build_targets = {} + self.run_targets = {} + + self.external_targets = [] + + self.seenfns = [] + self.taskentries = {} + + self.depids = {} + self.rdepids = {} + + self.consider_msgs_cache = [] + + self.failed_deps = [] + self.failed_rdeps = [] + self.failed_fns = [] + + self.halt = halt + self.allowincomplete = allowincomplete + + self.skiplist = skiplist + + self.mcdepends = [] + + def add_tasks(self, fn, dataCache): + """ + Add tasks for a given fn to the database + """ + + task_deps = dataCache.task_deps[fn] + + if fn in self.failed_fns: + bb.msg.fatal("TaskData", "Trying to re-add a failed file? Something is broken...") + + # Check if we've already seen this fn + if fn in self.seenfns: + return + + self.seenfns.append(fn) + + self.add_extra_deps(fn, dataCache) + + def add_mcdepends(task): + for dep in task_deps['mcdepends'][task].split(): + if len(dep.split(':')) != 5: + bb.msg.fatal("TaskData", "Error for %s:%s[%s], multiconfig dependency %s does not contain exactly four ':' characters.\n Task '%s' should be specified in the form 'mc:fromMC:toMC:packagename:task'" % (fn, task, 'mcdepends', dep, 'mcdepends')) + if dep not in self.mcdepends: + self.mcdepends.append(dep) + + # Common code for dep_name/depends = 'depends'/idepends and 'rdepends'/irdepends + def handle_deps(task, dep_name, depends, seen): + if dep_name in task_deps and task in task_deps[dep_name]: + ids = [] + for dep in task_deps[dep_name][task].split(): + if dep: + parts = dep.split(":") + if len(parts) != 2: + bb.msg.fatal("TaskData", "Error for %s:%s[%s], dependency %s in '%s' does not contain exactly one ':' character.\n Task '%s' should be specified in the form 'packagename:task'" % (fn, task, dep_name, dep, task_deps[dep_name][task], dep_name)) + ids.append((parts[0], parts[1])) + seen(parts[0]) + depends.extend(ids) + + for task in task_deps['tasks']: + + tid = "%s:%s" % (fn, task) + self.taskentries[tid] = TaskEntry() + + # Work out task dependencies + parentids = [] + for dep in task_deps['parents'][task]: + if dep not in task_deps['tasks']: + bb.debug(2, "Not adding dependency of %s on %s since %s does not exist" % (task, dep, dep)) + continue + parentid = "%s:%s" % (fn, dep) + parentids.append(parentid) + self.taskentries[tid].tdepends.extend(parentids) + + + # Touch all intertask dependencies + handle_deps(task, 'depends', self.taskentries[tid].idepends, self.seen_build_target) + handle_deps(task, 'rdepends', self.taskentries[tid].irdepends, self.seen_run_target) + + if 'mcdepends' in task_deps and task in task_deps['mcdepends']: + add_mcdepends(task) + + # Work out build dependencies + if not fn in self.depids: + dependids = set() + for depend in dataCache.deps[fn]: + dependids.add(depend) + self.depids[fn] = list(dependids) + logger.debug2("Added dependencies %s for %s", str(dataCache.deps[fn]), fn) + + # Work out runtime dependencies + if not fn in self.rdepids: + rdependids = set() + rdepends = dataCache.rundeps[fn] + rrecs = dataCache.runrecs[fn] + rdependlist = [] + rreclist = [] + for package in rdepends: + for rdepend in rdepends[package]: + rdependlist.append(rdepend) + rdependids.add(rdepend) + for package in rrecs: + for rdepend in rrecs[package]: + rreclist.append(rdepend) + rdependids.add(rdepend) + if rdependlist: + logger.debug2("Added runtime dependencies %s for %s", str(rdependlist), fn) + if rreclist: + logger.debug2("Added runtime recommendations %s for %s", str(rreclist), fn) + self.rdepids[fn] = list(rdependids) + + for dep in self.depids[fn]: + self.seen_build_target(dep) + if dep in self.failed_deps: + self.fail_fn(fn) + return + for dep in self.rdepids[fn]: + self.seen_run_target(dep) + if dep in self.failed_rdeps: + self.fail_fn(fn) + return + + def add_extra_deps(self, fn, dataCache): + func = dataCache.extradepsfunc.get(fn, None) + if func: + bb.providers.buildWorldTargetList(dataCache) + pn = dataCache.pkg_fn[fn] + params = {'deps': dataCache.deps[fn], + 'world_target': dataCache.world_target, + 'pkg_pn': dataCache.pkg_pn, + 'self_pn': pn} + funcname = '_%s_calculate_extra_depends' % pn.replace('-', '_') + paramlist = ','.join(params.keys()) + func = 'def %s(%s):\n%s\n\n%s(%s)' % (funcname, paramlist, func, funcname, paramlist) + bb.utils.better_exec(func, params) + + + def have_build_target(self, target): + """ + Have we a build target matching this name? + """ + if target in self.build_targets and self.build_targets[target]: + return True + return False + + def have_runtime_target(self, target): + """ + Have we a runtime target matching this name? + """ + if target in self.run_targets and self.run_targets[target]: + return True + return False + + def seen_build_target(self, name): + """ + Maintain a list of build targets + """ + if name not in self.build_targets: + self.build_targets[name] = [] + + def add_build_target(self, fn, item): + """ + Add a build target. + If already present, append the provider fn to the list + """ + if item in self.build_targets: + if fn in self.build_targets[item]: + return + self.build_targets[item].append(fn) + return + self.build_targets[item] = [fn] + + def seen_run_target(self, name): + """ + Maintain a list of runtime build targets + """ + if name not in self.run_targets: + self.run_targets[name] = [] + + def add_runtime_target(self, fn, item): + """ + Add a runtime target. + If already present, append the provider fn to the list + """ + if item in self.run_targets: + if fn in self.run_targets[item]: + return + self.run_targets[item].append(fn) + return + self.run_targets[item] = [fn] + + def mark_external_target(self, target): + """ + Mark a build target as being externally requested + """ + if target not in self.external_targets: + self.external_targets.append(target) + + def get_unresolved_build_targets(self, dataCache): + """ + Return a list of build targets who's providers + are unknown. + """ + unresolved = [] + for target in self.build_targets: + if re_match_strings(target, dataCache.ignored_dependencies): + continue + if target in self.failed_deps: + continue + if not self.build_targets[target]: + unresolved.append(target) + return unresolved + + def get_unresolved_run_targets(self, dataCache): + """ + Return a list of runtime targets who's providers + are unknown. + """ + unresolved = [] + for target in self.run_targets: + if re_match_strings(target, dataCache.ignored_dependencies): + continue + if target in self.failed_rdeps: + continue + if not self.run_targets[target]: + unresolved.append(target) + return unresolved + + def get_provider(self, item): + """ + Return a list of providers of item + """ + return self.build_targets[item] + + def get_dependees(self, item): + """ + Return a list of targets which depend on item + """ + dependees = [] + for fn in self.depids: + if item in self.depids[fn]: + dependees.append(fn) + return dependees + + def get_rdependees(self, item): + """ + Return a list of targets which depend on runtime item + """ + dependees = [] + for fn in self.rdepids: + if item in self.rdepids[fn]: + dependees.append(fn) + return dependees + + def get_reasons(self, item, runtime=False): + """ + Get the reason(s) for an item not being provided, if any + """ + reasons = [] + if self.skiplist: + for fn in self.skiplist: + skipitem = self.skiplist[fn] + if skipitem.pn == item: + reasons.append("%s was skipped: %s" % (skipitem.pn, skipitem.skipreason)) + elif runtime and item in skipitem.rprovides: + reasons.append("%s RPROVIDES %s but was skipped: %s" % (skipitem.pn, item, skipitem.skipreason)) + elif not runtime and item in skipitem.provides: + reasons.append("%s PROVIDES %s but was skipped: %s" % (skipitem.pn, item, skipitem.skipreason)) + return reasons + + def get_close_matches(self, item, provider_list): + import difflib + if self.skiplist: + skipped = [] + for fn in self.skiplist: + skipped.append(self.skiplist[fn].pn) + full_list = provider_list + skipped + else: + full_list = provider_list + return difflib.get_close_matches(item, full_list, cutoff=0.7) + + def add_provider(self, cfgData, dataCache, item): + try: + self.add_provider_internal(cfgData, dataCache, item) + except bb.providers.NoProvider: + if self.halt: + raise + self.remove_buildtarget(item) + + self.mark_external_target(item) + + def add_provider_internal(self, cfgData, dataCache, item): + """ + Add the providers of item to the task data + Mark entries were specifically added externally as against dependencies + added internally during dependency resolution + """ + + if re_match_strings(item, dataCache.ignored_dependencies): + return + + if not item in dataCache.providers: + close_matches = self.get_close_matches(item, list(dataCache.providers.keys())) + # Is it in RuntimeProviders ? + all_p = bb.providers.getRuntimeProviders(dataCache, item) + for fn in all_p: + new = dataCache.pkg_fn[fn] + " RPROVIDES " + item + if new not in close_matches: + close_matches.append(new) + bb.event.fire(bb.event.NoProvider(item, dependees=self.get_dependees(item), reasons=self.get_reasons(item), close_matches=close_matches), cfgData) + raise bb.providers.NoProvider(item) + + if self.have_build_target(item): + return + + all_p = dataCache.providers[item] + + eligible, foundUnique = bb.providers.filterProviders(all_p, item, cfgData, dataCache) + eligible = [p for p in eligible if not p in self.failed_fns] + + if not eligible: + bb.event.fire(bb.event.NoProvider(item, dependees=self.get_dependees(item), reasons=["No eligible PROVIDERs exist for '%s'" % item]), cfgData) + raise bb.providers.NoProvider(item) + + if len(eligible) > 1 and not foundUnique: + if item not in self.consider_msgs_cache: + providers_list = [] + for fn in eligible: + providers_list.append(dataCache.pkg_fn[fn]) + bb.event.fire(bb.event.MultipleProviders(item, providers_list), cfgData) + self.consider_msgs_cache.append(item) + + for fn in eligible: + if fn in self.failed_fns: + continue + logger.debug2("adding %s to satisfy %s", fn, item) + self.add_build_target(fn, item) + self.add_tasks(fn, dataCache) + + + #item = dataCache.pkg_fn[fn] + + def add_rprovider(self, cfgData, dataCache, item): + """ + Add the runtime providers of item to the task data + (takes item names from RDEPENDS/PACKAGES namespace) + """ + + if re_match_strings(item, dataCache.ignored_dependencies): + return + + if self.have_runtime_target(item): + return + + all_p = bb.providers.getRuntimeProviders(dataCache, item) + + if not all_p: + bb.event.fire(bb.event.NoProvider(item, runtime=True, dependees=self.get_rdependees(item), reasons=self.get_reasons(item, True)), cfgData) + raise bb.providers.NoRProvider(item) + + eligible, numberPreferred = bb.providers.filterProvidersRunTime(all_p, item, cfgData, dataCache) + eligible = [p for p in eligible if not p in self.failed_fns] + + if not eligible: + bb.event.fire(bb.event.NoProvider(item, runtime=True, dependees=self.get_rdependees(item), reasons=["No eligible RPROVIDERs exist for '%s'" % item]), cfgData) + raise bb.providers.NoRProvider(item) + + if len(eligible) > 1 and numberPreferred == 0: + if item not in self.consider_msgs_cache: + providers_list = [] + for fn in eligible: + providers_list.append(dataCache.pkg_fn[fn]) + bb.event.fire(bb.event.MultipleProviders(item, providers_list, runtime=True), cfgData) + self.consider_msgs_cache.append(item) + + if numberPreferred > 1: + if item not in self.consider_msgs_cache: + providers_list = [] + for fn in eligible: + providers_list.append(dataCache.pkg_fn[fn]) + bb.event.fire(bb.event.MultipleProviders(item, providers_list, runtime=True), cfgData) + self.consider_msgs_cache.append(item) + raise bb.providers.MultipleRProvider(item) + + # run through the list until we find one that we can build + for fn in eligible: + if fn in self.failed_fns: + continue + logger.debug2("adding '%s' to satisfy runtime '%s'", fn, item) + self.add_runtime_target(fn, item) + self.add_tasks(fn, dataCache) + + def fail_fn(self, fn, missing_list=None): + """ + Mark a file as failed (unbuildable) + Remove any references from build and runtime provider lists + + missing_list, A list of missing requirements for this target + """ + if fn in self.failed_fns: + return + if not missing_list: + missing_list = [] + logger.debug("File '%s' is unbuildable, removing...", fn) + self.failed_fns.append(fn) + for target in self.build_targets: + if fn in self.build_targets[target]: + self.build_targets[target].remove(fn) + if not self.build_targets[target]: + self.remove_buildtarget(target, missing_list) + for target in self.run_targets: + if fn in self.run_targets[target]: + self.run_targets[target].remove(fn) + if not self.run_targets[target]: + self.remove_runtarget(target, missing_list) + + def remove_buildtarget(self, target, missing_list=None): + """ + Mark a build target as failed (unbuildable) + Trigger removal of any files that have this as a dependency + """ + if not missing_list: + missing_list = [target] + else: + missing_list = [target] + missing_list + logger.verbose("Target '%s' is unbuildable, removing...\nMissing or unbuildable dependency chain was: %s", target, missing_list) + self.failed_deps.append(target) + dependees = self.get_dependees(target) + for fn in dependees: + self.fail_fn(fn, missing_list) + for tid in self.taskentries: + for (idepend, idependtask) in self.taskentries[tid].idepends: + if idepend == target: + fn = tid.rsplit(":",1)[0] + self.fail_fn(fn, missing_list) + + if self.halt and target in self.external_targets: + logger.error("Required build target '%s' has no buildable providers.\nMissing or unbuildable dependency chain was: %s", target, missing_list) + raise bb.providers.NoProvider(target) + + def remove_runtarget(self, target, missing_list=None): + """ + Mark a run target as failed (unbuildable) + Trigger removal of any files that have this as a dependency + """ + if not missing_list: + missing_list = [target] + else: + missing_list = [target] + missing_list + + logger.info("Runtime target '%s' is unbuildable, removing...\nMissing or unbuildable dependency chain was: %s", target, missing_list) + self.failed_rdeps.append(target) + dependees = self.get_rdependees(target) + for fn in dependees: + self.fail_fn(fn, missing_list) + for tid in self.taskentries: + for (idepend, idependtask) in self.taskentries[tid].irdepends: + if idepend == target: + fn = tid.rsplit(":",1)[0] + self.fail_fn(fn, missing_list) + + def add_unresolved(self, cfgData, dataCache): + """ + Resolve all unresolved build and runtime targets + """ + logger.info("Resolving any missing task queue dependencies") + while True: + added = 0 + for target in self.get_unresolved_build_targets(dataCache): + try: + self.add_provider_internal(cfgData, dataCache, target) + added = added + 1 + except bb.providers.NoProvider: + if self.halt and target in self.external_targets and not self.allowincomplete: + raise + if not self.allowincomplete: + self.remove_buildtarget(target) + for target in self.get_unresolved_run_targets(dataCache): + try: + self.add_rprovider(cfgData, dataCache, target) + added = added + 1 + except (bb.providers.NoRProvider, bb.providers.MultipleRProvider): + self.remove_runtarget(target) + logger.debug("Resolved " + str(added) + " extra dependencies") + if added == 0: + break + # self.dump_data() + + def get_providermap(self, prefix=None): + provmap = {} + for name in self.build_targets: + if prefix and not name.startswith(prefix): + continue + if self.have_build_target(name): + provider = self.get_provider(name) + if provider: + provmap[name] = provider[0] + return provmap + + def get_mcdepends(self): + return self.mcdepends + + def dump_data(self): + """ + Dump some debug information on the internal data structures + """ + logger.debug3("build_names:") + logger.debug3(", ".join(self.build_targets)) + + logger.debug3("run_names:") + logger.debug3(", ".join(self.run_targets)) + + logger.debug3("build_targets:") + for target in self.build_targets: + targets = "None" + if target in self.build_targets: + targets = self.build_targets[target] + logger.debug3(" %s: %s", target, targets) + + logger.debug3("run_targets:") + for target in self.run_targets: + targets = "None" + if target in self.run_targets: + targets = self.run_targets[target] + logger.debug3(" %s: %s", target, targets) + + logger.debug3("tasks:") + for tid in self.taskentries: + logger.debug3(" %s: %s %s %s", + tid, + self.taskentries[tid].idepends, + self.taskentries[tid].irdepends, + self.taskentries[tid].tdepends) + + logger.debug3("dependency ids (per fn):") + for fn in self.depids: + logger.debug3(" %s: %s", fn, self.depids[fn]) + + logger.debug3("runtime dependency ids (per fn):") + for fn in self.rdepids: + logger.debug3(" %s: %s", fn, self.rdepids[fn]) diff --git a/poky/bitbake/lib/bb/tests/__init__.py b/poky/bitbake/lib/bb/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/poky/bitbake/lib/bb/tests/codeparser.py b/poky/bitbake/lib/bb/tests/codeparser.py new file mode 100644 index 0000000..71ed382 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/codeparser.py @@ -0,0 +1,440 @@ +# +# BitBake Test for codeparser.py +# +# Copyright (C) 2010 Chris Larson +# Copyright (C) 2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import logging +import bb + +logger = logging.getLogger('BitBake.TestCodeParser') + +# bb.data references bb.parse but can't directly import due to circular dependencies. +# Hack around it for now :( +import bb.parse +import bb.data + +class ReferenceTest(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + + def setEmptyVars(self, varlist): + for k in varlist: + self.d.setVar(k, "") + + def setValues(self, values): + for k, v in values.items(): + self.d.setVar(k, v) + + def assertReferences(self, refs): + self.assertEqual(self.references, refs) + + def assertExecs(self, execs): + self.assertEqual(self.execs, execs) + + def assertContains(self, contains): + self.assertEqual(self.contains, contains) + +class VariableReferenceTest(ReferenceTest): + + def parseExpression(self, exp): + parsedvar = self.d.expandWithRefs(exp, None) + self.references = parsedvar.references + + def test_simple_reference(self): + self.setEmptyVars(["FOO"]) + self.parseExpression("${FOO}") + self.assertReferences(set(["FOO"])) + + def test_nested_reference(self): + self.setEmptyVars(["BAR"]) + self.d.setVar("FOO", "BAR") + self.parseExpression("${${FOO}}") + self.assertReferences(set(["FOO", "BAR"])) + + def test_python_reference(self): + self.setEmptyVars(["BAR"]) + self.parseExpression("${@d.getVar('BAR') + 'foo'}") + self.assertReferences(set(["BAR"])) + +class ShellReferenceTest(ReferenceTest): + + def parseExpression(self, exp): + parsedvar = self.d.expandWithRefs(exp, None) + parser = bb.codeparser.ShellParser("ParserTest", logger) + parser.parse_shell(parsedvar.value) + + self.references = parsedvar.references + self.execs = parser.execs + + def test_quotes_inside_assign(self): + self.parseExpression('foo=foo"bar"baz') + self.assertReferences(set([])) + + def test_quotes_inside_arg(self): + self.parseExpression('sed s#"bar baz"#"alpha beta"#g') + self.assertExecs(set(["sed"])) + + def test_arg_continuation(self): + self.parseExpression("sed -i -e s,foo,bar,g \\\n *.pc") + self.assertExecs(set(["sed"])) + + def test_dollar_in_quoted(self): + self.parseExpression('sed -i -e "foo$" *.pc') + self.assertExecs(set(["sed"])) + + def test_quotes_inside_arg_continuation(self): + self.setEmptyVars(["bindir", "D", "libdir"]) + self.parseExpression(""" +sed -i -e s#"moc_location=.*$"#"moc_location=${bindir}/moc4"# \\ +-e s#"uic_location=.*$"#"uic_location=${bindir}/uic4"# \\ +${D}${libdir}/pkgconfig/*.pc +""") + self.assertReferences(set(["bindir", "D", "libdir"])) + + def test_assign_subshell_expansion(self): + self.parseExpression("foo=$(echo bar)") + self.assertExecs(set(["echo"])) + + def test_shell_unexpanded(self): + self.setEmptyVars(["QT_BASE_NAME"]) + self.parseExpression('echo "${QT_BASE_NAME}"') + self.assertExecs(set(["echo"])) + self.assertReferences(set(["QT_BASE_NAME"])) + + def test_incomplete_varexp_single_quotes(self): + self.parseExpression("sed -i -e 's:IP{:I${:g' $pc") + self.assertExecs(set(["sed"])) + + def test_parameter_expansion_modifiers(self): + # -,+ and : are also valid modifiers for parameter expansion, but are + # valid characters in bitbake variable names, so are not included here + for i in ('=', '?', '#', '%', '##', '%%'): + name = "foo%sbar" % i + self.parseExpression("${%s}" % name) + self.assertNotIn(name, self.references) + + def test_until(self): + self.parseExpression("until false; do echo true; done") + self.assertExecs(set(["false", "echo"])) + self.assertReferences(set()) + + def test_case(self): + self.parseExpression(""" +case $foo in +*) +bar +;; +esac +""") + self.assertExecs(set(["bar"])) + self.assertReferences(set()) + + def test_assign_exec(self): + self.parseExpression("a=b c='foo bar' alpha 1 2 3") + self.assertExecs(set(["alpha"])) + + def test_redirect_to_file(self): + self.setEmptyVars(["foo"]) + self.parseExpression("echo foo >${foo}/bar") + self.assertExecs(set(["echo"])) + self.assertReferences(set(["foo"])) + + def test_heredoc(self): + self.setEmptyVars(["theta"]) + self.parseExpression(""" +cat <${B}/cachedpaths +shadow_cv_maildir=${SHADOW_MAILDIR} +shadow_cv_mailfile=${SHADOW_MAILFILE} +shadow_cv_utmpdir=${SHADOW_UTMPDIR} +shadow_cv_logdir=${SHADOW_LOGDIR} +shadow_cv_passwd_dir=${bindir} +END +""") + self.assertReferences(set(v)) + self.assertExecs(set(["cat"])) + +# def test_incomplete_command_expansion(self): +# self.assertRaises(reftracker.ShellSyntaxError, reftracker.execs, +# bbvalue.shparse("cp foo`", self.d), self.d) + +# def test_rogue_dollarsign(self): +# self.setValues({"D" : "/tmp"}) +# self.parseExpression("install -d ${D}$") +# self.assertReferences(set(["D"])) +# self.assertExecs(set(["install"])) + + +class PythonReferenceTest(ReferenceTest): + + def setUp(self): + self.d = bb.data.init() + if hasattr(bb.utils, "_context"): + self.context = bb.utils._context + else: + import builtins + self.context = builtins.__dict__ + + def parseExpression(self, exp): + parsedvar = self.d.expandWithRefs(exp, None) + parser = bb.codeparser.PythonParser("ParserTest", logger) + parser.parse_python(parsedvar.value) + + self.references = parsedvar.references | parser.references + self.execs = parser.execs + self.contains = parser.contains + + @staticmethod + def indent(value): + """Python Snippets have to be indented, python values don't have to +be. These unit tests are testing snippets.""" + return " " + value + + def test_getvar_reference(self): + self.parseExpression("d.getVar('foo')") + self.assertReferences(set(["foo"])) + self.assertExecs(set()) + + def test_getvar_computed_reference(self): + self.parseExpression("d.getVar('f' + 'o' + 'o')") + self.assertReferences(set()) + self.assertExecs(set()) + + def test_getvar_exec_reference(self): + self.parseExpression("eval('d.getVar(\"foo\")')") + self.assertReferences(set()) + self.assertExecs(set(["eval"])) + + def test_var_reference(self): + self.context["foo"] = lambda x: x + self.setEmptyVars(["FOO"]) + self.parseExpression("foo('${FOO}')") + self.assertReferences(set(["FOO"])) + self.assertExecs(set(["foo"])) + del self.context["foo"] + + def test_var_exec(self): + for etype in ("func", "task"): + self.d.setVar("do_something", "echo 'hi mom! ${FOO}'") + self.d.setVarFlag("do_something", etype, True) + self.parseExpression("bb.build.exec_func('do_something', d)") + self.assertReferences(set([])) + self.assertExecs(set(["do_something"])) + + def test_function_reference(self): + self.context["testfunc"] = lambda msg: bb.msg.note(1, None, msg) + self.d.setVar("FOO", "Hello, World!") + self.parseExpression("testfunc('${FOO}')") + self.assertReferences(set(["FOO"])) + self.assertExecs(set(["testfunc"])) + del self.context["testfunc"] + + def test_qualified_function_reference(self): + self.parseExpression("time.time()") + self.assertExecs(set(["time.time"])) + + def test_qualified_function_reference_2(self): + self.parseExpression("os.path.dirname('/foo/bar')") + self.assertExecs(set(["os.path.dirname"])) + + def test_qualified_function_reference_nested(self): + self.parseExpression("time.strftime('%Y%m%d',time.gmtime())") + self.assertExecs(set(["time.strftime", "time.gmtime"])) + + def test_function_reference_chained(self): + self.context["testget"] = lambda: "\tstrip me " + self.parseExpression("testget().strip()") + self.assertExecs(set(["testget"])) + del self.context["testget"] + + def test_contains(self): + self.parseExpression('bb.utils.contains("TESTVAR", "one", "true", "false", d)') + self.assertContains({'TESTVAR': {'one'}}) + + def test_contains_multi(self): + self.parseExpression('bb.utils.contains("TESTVAR", "one two", "true", "false", d)') + self.assertContains({'TESTVAR': {'one two'}}) + + def test_contains_any(self): + self.parseExpression('bb.utils.contains_any("TESTVAR", "hello", "true", "false", d)') + self.assertContains({'TESTVAR': {'hello'}}) + + def test_contains_any_multi(self): + self.parseExpression('bb.utils.contains_any("TESTVAR", "one two three", "true", "false", d)') + self.assertContains({'TESTVAR': {'one', 'two', 'three'}}) + + def test_contains_filter(self): + self.parseExpression('bb.utils.filter("TESTVAR", "hello there world", d)') + self.assertContains({'TESTVAR': {'hello', 'there', 'world'}}) + + +class DependencyReferenceTest(ReferenceTest): + + pydata = """ +d.getVar('somevar') +def test(d): + foo = 'bar %s' % 'foo' +def test2(d): + d.getVar(foo) + d.getVar('bar', False) + test2(d) + +def a(): + \"\"\"some + stuff + \"\"\" + return "heh" + +test(d) + +d.expand(d.getVar("something", False)) +d.expand("${inexpand} somethingelse") +d.getVar(a(), False) +""" + + def test_python(self): + self.d.setVar("FOO", self.pydata) + self.setEmptyVars(["inexpand", "a", "test2", "test"]) + self.d.setVarFlags("FOO", { + "func": True, + "python": True, + "lineno": 1, + "filename": "example.bb", + }) + + deps, values = bb.data.build_dependencies("FOO", set(self.d.keys()), set(), set(), set(), self.d) + + self.assertEqual(deps, set(["somevar", "bar", "something", "inexpand", "test", "test2", "a"])) + + + shelldata = """ +foo () { +bar +} +{ +echo baz +$(heh) +eval `moo` +} +a=b +c=d +( +true && false +test -f foo +testval=something +$testval +) || aiee +! inverted +echo ${somevar} + +case foo in +bar) +echo bar +;; +baz) +echo baz +;; +foo*) +echo foo +;; +esac +""" + + def test_shell(self): + execs = ["bar", "echo", "heh", "moo", "true", "aiee"] + self.d.setVar("somevar", "heh") + self.d.setVar("inverted", "echo inverted...") + self.d.setVarFlag("inverted", "func", True) + self.d.setVar("FOO", self.shelldata) + self.d.setVarFlags("FOO", {"func": True}) + self.setEmptyVars(execs) + + deps, values = bb.data.build_dependencies("FOO", set(self.d.keys()), set(), set(), set(), self.d) + + self.assertEqual(deps, set(["somevar", "inverted"] + execs)) + + + def test_vardeps(self): + self.d.setVar("oe_libinstall", "echo test") + self.d.setVar("FOO", "foo=oe_libinstall; eval $foo") + self.d.setVarFlag("FOO", "vardeps", "oe_libinstall") + + deps, values = bb.data.build_dependencies("FOO", set(self.d.keys()), set(), set(), set(), self.d) + + self.assertEqual(deps, set(["oe_libinstall"])) + + def test_vardeps_expand(self): + self.d.setVar("oe_libinstall", "echo test") + self.d.setVar("FOO", "foo=oe_libinstall; eval $foo") + self.d.setVarFlag("FOO", "vardeps", "${@'oe_libinstall'}") + + deps, values = bb.data.build_dependencies("FOO", set(self.d.keys()), set(), set(), set(), self.d) + + self.assertEqual(deps, set(["oe_libinstall"])) + + def test_contains_vardeps(self): + expr = '${@bb.utils.filter("TESTVAR", "somevalue anothervalue", d)} \ + ${@bb.utils.contains("TESTVAR", "testval testval2", "yetanothervalue", "", d)} \ + ${@bb.utils.contains("TESTVAR", "testval2 testval3", "blah", "", d)} \ + ${@bb.utils.contains_any("TESTVAR", "testval2 testval3", "lastone", "", d)}' + parsedvar = self.d.expandWithRefs(expr, None) + # Check contains + self.assertEqual(parsedvar.contains, {'TESTVAR': {'testval2 testval3', 'anothervalue', 'somevalue', 'testval testval2', 'testval2', 'testval3'}}) + # Check dependencies + self.d.setVar('ANOTHERVAR', expr) + self.d.setVar('TESTVAR', 'anothervalue testval testval2') + deps, values = bb.data.build_dependencies("ANOTHERVAR", set(self.d.keys()), set(), set(), set(), self.d) + self.assertEqual(sorted(values.splitlines()), + sorted([expr, + 'TESTVAR{anothervalue} = Set', + 'TESTVAR{somevalue} = Unset', + 'TESTVAR{testval testval2} = Set', + 'TESTVAR{testval2 testval3} = Unset', + 'TESTVAR{testval2} = Set', + 'TESTVAR{testval3} = Unset' + ])) + # Check final value + self.assertEqual(self.d.getVar('ANOTHERVAR').split(), ['anothervalue', 'yetanothervalue', 'lastone']) + + def test_contains_vardeps_excluded(self): + # Check the ignored_vars option to build_dependencies is handled by contains functionality + varval = '${TESTVAR2} ${@bb.utils.filter("TESTVAR", "somevalue anothervalue", d)}' + self.d.setVar('ANOTHERVAR', varval) + self.d.setVar('TESTVAR', 'anothervalue testval testval2') + self.d.setVar('TESTVAR2', 'testval3') + deps, values = bb.data.build_dependencies("ANOTHERVAR", set(self.d.keys()), set(), set(), set(["TESTVAR"]), self.d) + self.assertEqual(sorted(values.splitlines()), sorted([varval])) + self.assertEqual(deps, set(["TESTVAR2"])) + self.assertEqual(self.d.getVar('ANOTHERVAR').split(), ['testval3', 'anothervalue']) + + # Check the vardepsexclude flag is handled by contains functionality + self.d.setVarFlag('ANOTHERVAR', 'vardepsexclude', 'TESTVAR') + deps, values = bb.data.build_dependencies("ANOTHERVAR", set(self.d.keys()), set(), set(), set(), self.d) + self.assertEqual(sorted(values.splitlines()), sorted([varval])) + self.assertEqual(deps, set(["TESTVAR2"])) + self.assertEqual(self.d.getVar('ANOTHERVAR').split(), ['testval3', 'anothervalue']) + + #Currently no wildcard support + #def test_vardeps_wildcards(self): + # self.d.setVar("oe_libinstall", "echo test") + # self.d.setVar("FOO", "foo=oe_libinstall; eval $foo") + # self.d.setVarFlag("FOO", "vardeps", "oe_*") + # self.assertEquals(deps, set(["oe_libinstall"])) + + diff --git a/poky/bitbake/lib/bb/tests/color.py b/poky/bitbake/lib/bb/tests/color.py new file mode 100644 index 0000000..88dd278 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/color.py @@ -0,0 +1,95 @@ +# +# BitBake Test for ANSI color code filtering +# +# Copyright (C) 2020 Agilent Technologies, Inc. +# Author: Chris Laplante +# +# SPDX-License-Identifier: MIT +# + +import unittest +import bb.progress +import bb.data +import bb.event +from bb.progress import filter_color, filter_color_n +import io +import re + + +class ProgressWatcher: + def __init__(self): + self._reports = [] + + def handle_event(self, event): + self._reports.append((event.progress, event.rate)) + + def reports(self): + return self._reports + + +class ColorCodeTests(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self._progress_watcher = ProgressWatcher() + bb.event.register("bb.build.TaskProgress", self._progress_watcher.handle_event, data=self.d) + + def tearDown(self): + bb.event.remove("bb.build.TaskProgress", None) + + def test_filter_color(self): + input_string = "~~~~~~~~~~~~^~~~~~~~" + filtered = filter_color(input_string) + self.assertEqual(filtered, "~~~~~~~~~~~~^~~~~~~~") + + def test_filter_color_n(self): + input_string = "~~~~~~~~~~~~^~~~~~~~" + filtered, code_count = filter_color_n(input_string) + self.assertEqual(filtered, "~~~~~~~~~~~~^~~~~~~~") + self.assertEqual(code_count, 4) + + def test_LineFilterProgressHandler_color_filtering(self): + class CustomProgressHandler(bb.progress.LineFilterProgressHandler): + PROGRESS_REGEX = re.compile(r"Progress: (?P\d+)%") + + def writeline(self, line): + match = self.PROGRESS_REGEX.match(line) + if match: + self.update(int(match.group("progress"))) + return False + return True + + buffer = io.StringIO() + handler = CustomProgressHandler(self.d, buffer) + handler.write("Program output!\n") + handler.write("More output!\n") + handler.write("Progress: 10%\n") # 10% + handler.write("Even more\n") + handler.write("Progress: 50%\n") # 50% + handler.write("Progress: 60%\n") # 60% + handler.write("Progress: 100%\n") # 100% + + expected = [(10, None), (50, None), (60, None), (100, None)] + self.assertEqual(self._progress_watcher.reports(), expected) + + self.assertEqual(buffer.getvalue(), "Program output!\nMore output!\nEven more\n") + + def test_BasicProgressHandler_color_filtering(self): + buffer = io.StringIO() + handler = bb.progress.BasicProgressHandler(self.d, outfile=buffer) + handler.write("1%\n") # 1% + handler.write("2%\n") # 2% + handler.write("10%\n") # 10% + handler.write("100%\n") # 100% + + expected = [(0, None), (1, None), (2, None), (10, None), (100, None)] + self.assertListEqual(self._progress_watcher.reports(), expected) + + def test_OutOfProgressHandler_color_filtering(self): + buffer = io.StringIO() + handler = bb.progress.OutOfProgressHandler(self.d, r'(\d+) of (\d+)', outfile=buffer) + handler.write("Text text 1 of 5") # 1/5 + handler.write("Text text 3 of 5") # 3/5 + handler.write("Text text 5 of 5") # 5/5 + + expected = [(0, None), (20.0, None), (60.0, None), (100.0, None)] + self.assertListEqual(self._progress_watcher.reports(), expected) diff --git a/poky/bitbake/lib/bb/tests/compression.py b/poky/bitbake/lib/bb/tests/compression.py new file mode 100644 index 0000000..95af3f9 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/compression.py @@ -0,0 +1,100 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +from pathlib import Path +import bb.compress.lz4 +import bb.compress.zstd +import contextlib +import os +import shutil +import tempfile +import unittest +import subprocess + + +class CompressionTests(object): + def setUp(self): + self._t = tempfile.TemporaryDirectory() + self.tmpdir = Path(self._t.name) + self.addCleanup(self._t.cleanup) + + def _file_helper(self, mode_suffix, data): + tmp_file = self.tmpdir / "compressed" + + with self.do_open(tmp_file, mode="w" + mode_suffix) as f: + f.write(data) + + with self.do_open(tmp_file, mode="r" + mode_suffix) as f: + read_data = f.read() + + self.assertEqual(read_data, data) + + def test_text_file(self): + self._file_helper("t", "Hello") + + def test_binary_file(self): + self._file_helper("b", "Hello".encode("utf-8")) + + def _pipe_helper(self, mode_suffix, data): + rfd, wfd = os.pipe() + with open(rfd, "rb") as r, open(wfd, "wb") as w: + with self.do_open(r, mode="r" + mode_suffix) as decompress: + with self.do_open(w, mode="w" + mode_suffix) as compress: + compress.write(data) + read_data = decompress.read() + + self.assertEqual(read_data, data) + + def test_text_pipe(self): + self._pipe_helper("t", "Hello") + + def test_binary_pipe(self): + self._pipe_helper("b", "Hello".encode("utf-8")) + + def test_bad_decompress(self): + tmp_file = self.tmpdir / "compressed" + with tmp_file.open("wb") as f: + f.write(b"\x00") + + with self.assertRaises(OSError): + with self.do_open(tmp_file, mode="rb", stderr=subprocess.DEVNULL) as f: + data = f.read() + + +class LZ4Tests(CompressionTests, unittest.TestCase): + def setUp(self): + if shutil.which("lz4c") is None: + self.skipTest("'lz4c' not found") + super().setUp() + + @contextlib.contextmanager + def do_open(self, *args, **kwargs): + with bb.compress.lz4.open(*args, **kwargs) as f: + yield f + + +class ZStdTests(CompressionTests, unittest.TestCase): + def setUp(self): + if shutil.which("zstd") is None: + self.skipTest("'zstd' not found") + super().setUp() + + @contextlib.contextmanager + def do_open(self, *args, **kwargs): + with bb.compress.zstd.open(*args, **kwargs) as f: + yield f + + +class PZStdTests(CompressionTests, unittest.TestCase): + def setUp(self): + if shutil.which("pzstd") is None: + self.skipTest("'pzstd' not found") + super().setUp() + + @contextlib.contextmanager + def do_open(self, *args, **kwargs): + with bb.compress.zstd.open(*args, num_threads=2, **kwargs) as f: + yield f diff --git a/poky/bitbake/lib/bb/tests/cooker.py b/poky/bitbake/lib/bb/tests/cooker.py new file mode 100644 index 0000000..9e524ae --- /dev/null +++ b/poky/bitbake/lib/bb/tests/cooker.py @@ -0,0 +1,71 @@ +# +# BitBake Tests for cooker.py +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import os +import bb, bb.cooker +import re +import logging + +# Cooker tests +class CookerTest(unittest.TestCase): + def setUp(self): + # At least one variable needs to be set + self.d = bb.data.init() + topdir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "testdata/cooker") + self.d.setVar('TOPDIR', topdir) + + def test_CookerCollectFiles_sublayers(self): + '''Test that a sublayer of an existing layer does not trigger + No bb files matched ...''' + + def append_collection(topdir, path, d): + collection = path.split('/')[-1] + pattern = "^" + topdir + "/" + path + "/" + regex = re.compile(pattern) + priority = 5 + + d.setVar('BBFILE_COLLECTIONS', (d.getVar('BBFILE_COLLECTIONS') or "") + " " + collection) + d.setVar('BBFILE_PATTERN_%s' % (collection), pattern) + d.setVar('BBFILE_PRIORITY_%s' % (collection), priority) + + return (collection, pattern, regex, priority) + + topdir = self.d.getVar("TOPDIR") + + # Priorities: list of (collection, pattern, regex, priority) + bbfile_config_priorities = [] + # Order is important for this test, shortest to longest is typical failure case + bbfile_config_priorities.append( append_collection(topdir, 'first', self.d) ) + bbfile_config_priorities.append( append_collection(topdir, 'second', self.d) ) + bbfile_config_priorities.append( append_collection(topdir, 'second/third', self.d) ) + + pkgfns = [ topdir + '/first/recipes/sample1_1.0.bb', + topdir + '/second/recipes/sample2_1.0.bb', + topdir + '/second/third/recipes/sample3_1.0.bb' ] + + class LogHandler(logging.Handler): + def __init__(self): + logging.Handler.__init__(self) + self.logdata = [] + + def emit(self, record): + self.logdata.append(record.getMessage()) + + # Move cooker to use my special logging + logger = bb.cooker.logger + log_handler = LogHandler() + logger.addHandler(log_handler) + collection = bb.cooker.CookerCollectFiles(bbfile_config_priorities) + collection.collection_priorities(pkgfns, pkgfns, self.d) + logger.removeHandler(log_handler) + + # Should be empty (no generated messages) + expected = [] + + self.assertEqual(log_handler.logdata, expected) diff --git a/poky/bitbake/lib/bb/tests/cow.py b/poky/bitbake/lib/bb/tests/cow.py new file mode 100644 index 0000000..7514264 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/cow.py @@ -0,0 +1,317 @@ +# +# BitBake Tests for Copy-on-Write (cow.py) +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Copyright 2006 Holger Freyther +# Copyright (C) 2020 Agilent Technologies, Inc. +# + +import io +import re +import sys +import unittest +import contextlib +import collections + +from bb.COW import COWDictBase, COWSetBase, COWDictMeta, COWSetMeta + + +class COWTestCase(unittest.TestCase): + """ + Test case for the COW module from mithro + """ + + def setUp(self): + self._track_warnings = False + self._warning_file = io.StringIO() + self._unhandled_warnings = collections.deque() + COWDictBase.__warn__ = self._warning_file + + def tearDown(self): + COWDictBase.__warn__ = sys.stderr + if self._track_warnings: + self._checkAllWarningsRead() + + def trackWarnings(self): + self._track_warnings = True + + def _collectWarnings(self): + self._warning_file.seek(0) + for warning in self._warning_file: + self._unhandled_warnings.append(warning.rstrip("\n")) + self._warning_file.truncate(0) + self._warning_file.seek(0) + + def _checkAllWarningsRead(self): + self._collectWarnings() + self.assertSequenceEqual(self._unhandled_warnings, []) + + @contextlib.contextmanager + def checkReportsWarning(self, expected_warning): + self._checkAllWarningsRead() + yield + self._collectWarnings() + warning = self._unhandled_warnings.popleft() + self.assertEqual(warning, expected_warning) + + def checkStrOutput(self, obj, expected_levels, expected_keys): + if obj.__class__ is COWDictMeta: + expected_class_name = "COWDict" + elif obj.__class__ is COWSetMeta: + expected_class_name = "COWSet" + else: + self.fail("obj is of unknown type {0}".format(type(obj))) + s = str(obj) + regex = re.compile(r"<(\w+) Level: (\d+) Current Keys: (\d+)>") + match = regex.match(s) + self.assertIsNotNone(match, "bad str output: '{0}'".format(s)) + class_name = match.group(1) + self.assertEqual(class_name, expected_class_name) + levels = int(match.group(2)) + self.assertEqual(levels, expected_levels, "wrong # levels in str: '{0}'".format(s)) + keys = int(match.group(3)) + self.assertEqual(keys, expected_keys, "wrong # keys in str: '{0}'".format(s)) + + def testGetSet(self): + """ + Test and set + """ + a = COWDictBase.copy() + + self.assertEqual(False, 'a' in a) + + a['a'] = 'a' + a['b'] = 'b' + self.assertEqual(True, 'a' in a) + self.assertEqual(True, 'b' in a) + self.assertEqual('a', a['a']) + self.assertEqual('b', a['b']) + + def testCopyCopy(self): + """ + Test the copy of copies + """ + + # create two COW dict 'instances' + b = COWDictBase.copy() + c = COWDictBase.copy() + + # assign some keys to one instance, some keys to another + b['a'] = 10 + b['c'] = 20 + c['a'] = 30 + + # test separation of the two instances + self.assertEqual(False, 'c' in c) + self.assertEqual(30, c['a']) + self.assertEqual(10, b['a']) + + # test copy + b_2 = b.copy() + c_2 = c.copy() + + self.assertEqual(False, 'c' in c_2) + self.assertEqual(10, b_2['a']) + + b_2['d'] = 40 + self.assertEqual(False, 'd' in c_2) + self.assertEqual(True, 'd' in b_2) + self.assertEqual(40, b_2['d']) + self.assertEqual(False, 'd' in b) + self.assertEqual(False, 'd' in c) + + c_2['d'] = 30 + self.assertEqual(True, 'd' in c_2) + self.assertEqual(True, 'd' in b_2) + self.assertEqual(30, c_2['d']) + self.assertEqual(40, b_2['d']) + self.assertEqual(False, 'd' in b) + self.assertEqual(False, 'd' in c) + + # test copy of the copy + c_3 = c_2.copy() + b_3 = b_2.copy() + b_3_2 = b_2.copy() + + c_3['e'] = 4711 + self.assertEqual(4711, c_3['e']) + self.assertEqual(False, 'e' in c_2) + self.assertEqual(False, 'e' in b_3) + self.assertEqual(False, 'e' in b_3_2) + self.assertEqual(False, 'e' in b_2) + + b_3['e'] = 'viel' + self.assertEqual('viel', b_3['e']) + self.assertEqual(4711, c_3['e']) + self.assertEqual(False, 'e' in c_2) + self.assertEqual(True, 'e' in b_3) + self.assertEqual(False, 'e' in b_3_2) + self.assertEqual(False, 'e' in b_2) + + def testCow(self): + self.trackWarnings() + + c = COWDictBase.copy() + c['123'] = 1027 + c['other'] = 4711 + c['d'] = {'abc': 10, 'bcd': 20} + + copy = c.copy() + + self.assertEqual(1027, c['123']) + self.assertEqual(4711, c['other']) + self.assertEqual({'abc': 10, 'bcd': 20}, c['d']) + self.assertEqual(1027, copy['123']) + self.assertEqual(4711, copy['other']) + with self.checkReportsWarning("Warning: Doing a copy because d is a mutable type."): + self.assertEqual({'abc': 10, 'bcd': 20}, copy['d']) + + # cow it now + copy['123'] = 1028 + copy['other'] = 4712 + copy['d']['abc'] = 20 + + self.assertEqual(1027, c['123']) + self.assertEqual(4711, c['other']) + self.assertEqual({'abc': 10, 'bcd': 20}, c['d']) + self.assertEqual(1028, copy['123']) + self.assertEqual(4712, copy['other']) + self.assertEqual({'abc': 20, 'bcd': 20}, copy['d']) + + def testOriginalTestSuite(self): + # This test suite is a port of the original one from COW.py + self.trackWarnings() + + a = COWDictBase.copy() + self.checkStrOutput(a, 1, 0) + + a['a'] = 'a' + a['b'] = 'b' + a['dict'] = {} + self.checkStrOutput(a, 1, 4) # 4th member is dict__mutable__ + + b = a.copy() + self.checkStrOutput(b, 2, 0) + b['c'] = 'b' + self.checkStrOutput(b, 2, 1) + + with self.checkReportsWarning("Warning: If you aren't going to change any of the values call with True."): + self.assertListEqual(list(a.iteritems()), + [('a', 'a'), + ('b', 'b'), + ('dict', {}) + ]) + + with self.checkReportsWarning("Warning: If you aren't going to change any of the values call with True."): + b_gen = b.iteritems() + self.assertTupleEqual(next(b_gen), ('a', 'a')) + self.assertTupleEqual(next(b_gen), ('b', 'b')) + self.assertTupleEqual(next(b_gen), ('c', 'b')) + with self.checkReportsWarning("Warning: Doing a copy because dict is a mutable type."): + self.assertTupleEqual(next(b_gen), ('dict', {})) + with self.assertRaises(StopIteration): + next(b_gen) + + b['dict']['a'] = 'b' + b['a'] = 'c' + + self.checkStrOutput(a, 1, 4) + self.checkStrOutput(b, 2, 3) + + with self.checkReportsWarning("Warning: If you aren't going to change any of the values call with True."): + self.assertListEqual(list(a.iteritems()), + [('a', 'a'), + ('b', 'b'), + ('dict', {}) + ]) + + with self.checkReportsWarning("Warning: If you aren't going to change any of the values call with True."): + b_gen = b.iteritems() + self.assertTupleEqual(next(b_gen), ('a', 'c')) + self.assertTupleEqual(next(b_gen), ('b', 'b')) + self.assertTupleEqual(next(b_gen), ('c', 'b')) + self.assertTupleEqual(next(b_gen), ('dict', {'a': 'b'})) + with self.assertRaises(StopIteration): + next(b_gen) + + with self.assertRaises(KeyError): + print(b["dict2"]) + + a['set'] = COWSetBase() + a['set'].add("o1") + a['set'].add("o1") + a['set'].add("o2") + self.assertSetEqual(set(a['set'].itervalues()), {"o1", "o2"}) + self.assertSetEqual(set(b['set'].itervalues()), {"o1", "o2"}) + + b['set'].add('o3') + self.assertSetEqual(set(a['set'].itervalues()), {"o1", "o2"}) + self.assertSetEqual(set(b['set'].itervalues()), {"o1", "o2", "o3"}) + + a['set2'] = set() + a['set2'].add("o1") + a['set2'].add("o1") + a['set2'].add("o2") + + # We don't expect 'a' to change anymore + def check_a(): + with self.checkReportsWarning("Warning: If you aren't going to change any of the values call with True."): + a_gen = a.iteritems() + self.assertTupleEqual(next(a_gen), ('a', 'a')) + self.assertTupleEqual(next(a_gen), ('b', 'b')) + self.assertTupleEqual(next(a_gen), ('dict', {})) + self.assertTupleEqual(next(a_gen), ('set2', {'o1', 'o2'})) + a_sub_set = next(a_gen) + self.assertEqual(a_sub_set[0], 'set') + self.checkStrOutput(a_sub_set[1], 1, 2) + self.assertSetEqual(set(a_sub_set[1].itervalues()), {'o1', 'o2'}) + + check_a() + + b_gen = b.iteritems(readonly=True) + self.assertTupleEqual(next(b_gen), ('a', 'c')) + self.assertTupleEqual(next(b_gen), ('b', 'b')) + self.assertTupleEqual(next(b_gen), ('c', 'b')) + self.assertTupleEqual(next(b_gen), ('dict', {'a': 'b'})) + self.assertTupleEqual(next(b_gen), ('set2', {'o1', 'o2'})) + b_sub_set = next(b_gen) + self.assertEqual(b_sub_set[0], 'set') + self.checkStrOutput(b_sub_set[1], 2, 1) + self.assertSetEqual(set(b_sub_set[1].itervalues()), {'o1', 'o2', 'o3'}) + + del b['b'] + with self.assertRaises(KeyError): + print(b['b']) + self.assertFalse('b' in b) + + check_a() + + b.__revertitem__('b') + check_a() + self.assertEqual(b['b'], 'b') + self.assertTrue('b' in b) + + b.__revertitem__('dict') + check_a() + + b_gen = b.iteritems(readonly=True) + self.assertTupleEqual(next(b_gen), ('a', 'c')) + self.assertTupleEqual(next(b_gen), ('b', 'b')) + self.assertTupleEqual(next(b_gen), ('c', 'b')) + self.assertTupleEqual(next(b_gen), ('dict', {})) + self.assertTupleEqual(next(b_gen), ('set2', {'o1', 'o2'})) + b_sub_set = next(b_gen) + self.assertEqual(b_sub_set[0], 'set') + self.checkStrOutput(b_sub_set[1], 2, 1) + self.assertSetEqual(set(b_sub_set[1].itervalues()), {'o1', 'o2', 'o3'}) + + self.checkStrOutput(a, 1, 6) + self.checkStrOutput(b, 2, 3) + + def testSetMethods(self): + s = COWSetBase() + with self.assertRaises(TypeError): + print(s.iteritems()) + with self.assertRaises(TypeError): + print(s.iterkeys()) diff --git a/poky/bitbake/lib/bb/tests/data.py b/poky/bitbake/lib/bb/tests/data.py new file mode 100644 index 0000000..e667c7c --- /dev/null +++ b/poky/bitbake/lib/bb/tests/data.py @@ -0,0 +1,552 @@ +# +# BitBake Tests for the Data Store (data.py/data_smart.py) +# +# Copyright (C) 2010 Chris Larson +# Copyright (C) 2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import bb +import bb.data +import bb.parse +import logging +import os + +class LogRecord(): + def __enter__(self): + logs = [] + class LogHandler(logging.Handler): + def emit(self, record): + logs.append(record) + logger = logging.getLogger("BitBake") + handler = LogHandler() + self.handler = handler + logger.addHandler(handler) + return logs + def __exit__(self, type, value, traceback): + logger = logging.getLogger("BitBake") + logger.removeHandler(self.handler) + return + +def logContains(item, logs): + for l in logs: + m = l.getMessage() + if item in m: + return True + return False + +class DataExpansions(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d["foo"] = "value_of_foo" + self.d["bar"] = "value_of_bar" + self.d["value_of_foo"] = "value_of_'value_of_foo'" + + def test_one_var(self): + val = self.d.expand("${foo}") + self.assertEqual(str(val), "value_of_foo") + + def test_indirect_one_var(self): + val = self.d.expand("${${foo}}") + self.assertEqual(str(val), "value_of_'value_of_foo'") + + def test_indirect_and_another(self): + val = self.d.expand("${${foo}} ${bar}") + self.assertEqual(str(val), "value_of_'value_of_foo' value_of_bar") + + def test_python_snippet(self): + val = self.d.expand("${@5*12}") + self.assertEqual(str(val), "60") + + def test_expand_in_python_snippet(self): + val = self.d.expand("${@'boo ' + '${foo}'}") + self.assertEqual(str(val), "boo value_of_foo") + + def test_python_snippet_getvar(self): + val = self.d.expand("${@d.getVar('foo') + ' ${bar}'}") + self.assertEqual(str(val), "value_of_foo value_of_bar") + + def test_python_unexpanded(self): + self.d.setVar("bar", "${unsetvar}") + val = self.d.expand("${@d.getVar('foo') + ' ${bar}'}") + self.assertEqual(str(val), "${@d.getVar('foo') + ' ${unsetvar}'}") + + def test_python_snippet_syntax_error(self): + self.d.setVar("FOO", "${@foo = 5}") + self.assertRaises(bb.data_smart.ExpansionError, self.d.getVar, "FOO", True) + + def test_python_snippet_runtime_error(self): + self.d.setVar("FOO", "${@int('test')}") + self.assertRaises(bb.data_smart.ExpansionError, self.d.getVar, "FOO", True) + + def test_python_snippet_error_path(self): + self.d.setVar("FOO", "foo value ${BAR}") + self.d.setVar("BAR", "bar value ${@int('test')}") + self.assertRaises(bb.data_smart.ExpansionError, self.d.getVar, "FOO", True) + + def test_value_containing_value(self): + val = self.d.expand("${@d.getVar('foo') + ' ${bar}'}") + self.assertEqual(str(val), "value_of_foo value_of_bar") + + def test_reference_undefined_var(self): + val = self.d.expand("${undefinedvar} meh") + self.assertEqual(str(val), "${undefinedvar} meh") + + def test_double_reference(self): + self.d.setVar("BAR", "bar value") + self.d.setVar("FOO", "${BAR} foo ${BAR}") + val = self.d.getVar("FOO") + self.assertEqual(str(val), "bar value foo bar value") + + def test_direct_recursion(self): + self.d.setVar("FOO", "${FOO}") + self.assertRaises(bb.data_smart.ExpansionError, self.d.getVar, "FOO", True) + + def test_indirect_recursion(self): + self.d.setVar("FOO", "${BAR}") + self.d.setVar("BAR", "${BAZ}") + self.d.setVar("BAZ", "${FOO}") + self.assertRaises(bb.data_smart.ExpansionError, self.d.getVar, "FOO", True) + + def test_recursion_exception(self): + self.d.setVar("FOO", "${BAR}") + self.d.setVar("BAR", "${${@'FOO'}}") + self.assertRaises(bb.data_smart.ExpansionError, self.d.getVar, "FOO", True) + + def test_incomplete_varexp_single_quotes(self): + self.d.setVar("FOO", "sed -i -e 's:IP{:I${:g' $pc") + val = self.d.getVar("FOO") + self.assertEqual(str(val), "sed -i -e 's:IP{:I${:g' $pc") + + def test_nonstring(self): + self.d.setVar("TEST", 5) + val = self.d.getVar("TEST") + self.assertEqual(str(val), "5") + + def test_rename(self): + self.d.renameVar("foo", "newfoo") + self.assertEqual(self.d.getVar("newfoo", False), "value_of_foo") + self.assertEqual(self.d.getVar("foo", False), None) + + def test_deletion(self): + self.d.delVar("foo") + self.assertEqual(self.d.getVar("foo", False), None) + + def test_keys(self): + keys = list(self.d.keys()) + self.assertCountEqual(keys, ['value_of_foo', 'foo', 'bar']) + + def test_keys_deletion(self): + newd = bb.data.createCopy(self.d) + newd.delVar("bar") + keys = list(newd.keys()) + self.assertCountEqual(keys, ['value_of_foo', 'foo']) + +class TestNestedExpansions(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d["foo"] = "foo" + self.d["bar"] = "bar" + self.d["value_of_foobar"] = "187" + + def test_refs(self): + val = self.d.expand("${value_of_${foo}${bar}}") + self.assertEqual(str(val), "187") + + #def test_python_refs(self): + # val = self.d.expand("${@${@3}**2 + ${@4}**2}") + # self.assertEqual(str(val), "25") + + def test_ref_in_python_ref(self): + val = self.d.expand("${@'${foo}' + 'bar'}") + self.assertEqual(str(val), "foobar") + + def test_python_ref_in_ref(self): + val = self.d.expand("${${@'f'+'o'+'o'}}") + self.assertEqual(str(val), "foo") + + def test_deep_nesting(self): + depth = 100 + val = self.d.expand("${" * depth + "foo" + "}" * depth) + self.assertEqual(str(val), "foo") + + #def test_deep_python_nesting(self): + # depth = 50 + # val = self.d.expand("${@" * depth + "1" + "+1}" * depth) + # self.assertEqual(str(val), str(depth + 1)) + + def test_mixed(self): + val = self.d.expand("${value_of_${@('${foo}'+'bar')[0:3]}${${@'BAR'.lower()}}}") + self.assertEqual(str(val), "187") + + def test_runtime(self): + val = self.d.expand("${${@'value_of' + '_f'+'o'+'o'+'b'+'a'+'r'}}") + self.assertEqual(str(val), "187") + +class TestMemoize(unittest.TestCase): + def test_memoized(self): + d = bb.data.init() + d.setVar("FOO", "bar") + self.assertTrue(d.getVar("FOO", False) is d.getVar("FOO", False)) + + def test_not_memoized(self): + d1 = bb.data.init() + d2 = bb.data.init() + d1.setVar("FOO", "bar") + d2.setVar("FOO", "bar2") + self.assertTrue(d1.getVar("FOO", False) is not d2.getVar("FOO", False)) + + def test_changed_after_memoized(self): + d = bb.data.init() + d.setVar("foo", "value of foo") + self.assertEqual(str(d.getVar("foo", False)), "value of foo") + d.setVar("foo", "second value of foo") + self.assertEqual(str(d.getVar("foo", False)), "second value of foo") + + def test_same_value(self): + d = bb.data.init() + d.setVar("foo", "value of") + d.setVar("bar", "value of") + self.assertEqual(d.getVar("foo", False), + d.getVar("bar", False)) + +class TestConcat(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d.setVar("FOO", "foo") + self.d.setVar("VAL", "val") + self.d.setVar("BAR", "bar") + + def test_prepend(self): + self.d.setVar("TEST", "${VAL}") + self.d.prependVar("TEST", "${FOO}:") + self.assertEqual(self.d.getVar("TEST"), "foo:val") + + def test_append(self): + self.d.setVar("TEST", "${VAL}") + self.d.appendVar("TEST", ":${BAR}") + self.assertEqual(self.d.getVar("TEST"), "val:bar") + + def test_multiple_append(self): + self.d.setVar("TEST", "${VAL}") + self.d.prependVar("TEST", "${FOO}:") + self.d.appendVar("TEST", ":val2") + self.d.appendVar("TEST", ":${BAR}") + self.assertEqual(self.d.getVar("TEST"), "foo:val:val2:bar") + +class TestConcatOverride(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d.setVar("FOO", "foo") + self.d.setVar("VAL", "val") + self.d.setVar("BAR", "bar") + + def test_prepend(self): + self.d.setVar("TEST", "${VAL}") + self.d.setVar("TEST:prepend", "${FOO}:") + self.assertEqual(self.d.getVar("TEST"), "foo:val") + + def test_append(self): + self.d.setVar("TEST", "${VAL}") + self.d.setVar("TEST:append", ":${BAR}") + self.assertEqual(self.d.getVar("TEST"), "val:bar") + + def test_multiple_append(self): + self.d.setVar("TEST", "${VAL}") + self.d.setVar("TEST:prepend", "${FOO}:") + self.d.setVar("TEST:append", ":val2") + self.d.setVar("TEST:append", ":${BAR}") + self.assertEqual(self.d.getVar("TEST"), "foo:val:val2:bar") + + def test_append_unset(self): + self.d.setVar("TEST:prepend", "${FOO}:") + self.d.setVar("TEST:append", ":val2") + self.d.setVar("TEST:append", ":${BAR}") + self.assertEqual(self.d.getVar("TEST"), "foo::val2:bar") + + def test_remove(self): + self.d.setVar("TEST", "${VAL} ${BAR}") + self.d.setVar("TEST:remove", "val") + self.assertEqual(self.d.getVar("TEST"), " bar") + + def test_remove_cleared(self): + self.d.setVar("TEST", "${VAL} ${BAR}") + self.d.setVar("TEST:remove", "val") + self.d.setVar("TEST", "${VAL} ${BAR}") + self.assertEqual(self.d.getVar("TEST"), "val bar") + + # Ensure the value is unchanged if we have an inactive remove override + # (including that whitespace is preserved) + def test_remove_inactive_override(self): + self.d.setVar("TEST", "${VAL} ${BAR} 123") + self.d.setVar("TEST:remove:inactiveoverride", "val") + self.assertEqual(self.d.getVar("TEST"), "val bar 123") + + def test_doubleref_remove(self): + self.d.setVar("TEST", "${VAL} ${BAR}") + self.d.setVar("TEST:remove", "val") + self.d.setVar("TEST_TEST", "${TEST} ${TEST}") + self.assertEqual(self.d.getVar("TEST_TEST"), " bar bar") + + def test_empty_remove(self): + self.d.setVar("TEST", "") + self.d.setVar("TEST:remove", "val") + self.assertEqual(self.d.getVar("TEST"), "") + + def test_remove_expansion(self): + self.d.setVar("BAR", "Z") + self.d.setVar("TEST", "${BAR}/X Y") + self.d.setVar("TEST:remove", "${BAR}/X") + self.assertEqual(self.d.getVar("TEST"), " Y") + + def test_remove_expansion_items(self): + self.d.setVar("TEST", "A B C D") + self.d.setVar("BAR", "B D") + self.d.setVar("TEST:remove", "${BAR}") + self.assertEqual(self.d.getVar("TEST"), "A C ") + + def test_remove_preserve_whitespace(self): + # When the removal isn't active, the original value should be preserved + self.d.setVar("TEST", " A B") + self.d.setVar("TEST:remove", "C") + self.assertEqual(self.d.getVar("TEST"), " A B") + + def test_remove_preserve_whitespace2(self): + # When the removal is active preserve the whitespace + self.d.setVar("TEST", " A B") + self.d.setVar("TEST:remove", "B") + self.assertEqual(self.d.getVar("TEST"), " A ") + +class TestOverrides(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d.setVar("OVERRIDES", "foo:bar:local") + self.d.setVar("TEST", "testvalue") + + def test_no_override(self): + self.assertEqual(self.d.getVar("TEST"), "testvalue") + + def test_one_override(self): + self.d.setVar("TEST:bar", "testvalue2") + self.assertEqual(self.d.getVar("TEST"), "testvalue2") + + def test_one_override_unset(self): + self.d.setVar("TEST2:bar", "testvalue2") + + self.assertEqual(self.d.getVar("TEST2"), "testvalue2") + self.assertCountEqual(list(self.d.keys()), ['TEST', 'TEST2', 'OVERRIDES', 'TEST2:bar']) + + def test_multiple_override(self): + self.d.setVar("TEST:bar", "testvalue2") + self.d.setVar("TEST:local", "testvalue3") + self.d.setVar("TEST:foo", "testvalue4") + self.assertEqual(self.d.getVar("TEST"), "testvalue3") + self.assertCountEqual(list(self.d.keys()), ['TEST', 'TEST:foo', 'OVERRIDES', 'TEST:bar', 'TEST:local']) + + def test_multiple_combined_overrides(self): + self.d.setVar("TEST:local:foo:bar", "testvalue3") + self.assertEqual(self.d.getVar("TEST"), "testvalue3") + + def test_multiple_overrides_unset(self): + self.d.setVar("TEST2:local:foo:bar", "testvalue3") + self.assertEqual(self.d.getVar("TEST2"), "testvalue3") + + def test_keyexpansion_override(self): + self.d.setVar("LOCAL", "local") + self.d.setVar("TEST:bar", "testvalue2") + self.d.setVar("TEST:${LOCAL}", "testvalue3") + self.d.setVar("TEST:foo", "testvalue4") + bb.data.expandKeys(self.d) + self.assertEqual(self.d.getVar("TEST"), "testvalue3") + + def test_rename_override(self): + self.d.setVar("ALTERNATIVE:ncurses-tools:class-target", "a") + self.d.setVar("OVERRIDES", "class-target") + self.d.renameVar("ALTERNATIVE:ncurses-tools", "ALTERNATIVE:lib32-ncurses-tools") + self.assertEqual(self.d.getVar("ALTERNATIVE:lib32-ncurses-tools"), "a") + + def test_underscore_override(self): + self.d.setVar("TEST:bar", "testvalue2") + self.d.setVar("TEST:some_val", "testvalue3") + self.d.setVar("TEST:foo", "testvalue4") + self.d.setVar("OVERRIDES", "foo:bar:some_val") + self.assertEqual(self.d.getVar("TEST"), "testvalue3") + + def test_remove_with_override(self): + self.d.setVar("TEST:bar", "testvalue2") + self.d.setVar("TEST:some_val", "testvalue3 testvalue5") + self.d.setVar("TEST:some_val:remove", "testvalue3") + self.d.setVar("TEST:foo", "testvalue4") + self.d.setVar("OVERRIDES", "foo:bar:some_val") + self.assertEqual(self.d.getVar("TEST"), " testvalue5") + + def test_append_and_override_1(self): + self.d.setVar("TEST:append", "testvalue2") + self.d.setVar("TEST:bar", "testvalue3") + self.assertEqual(self.d.getVar("TEST"), "testvalue3testvalue2") + + def test_append_and_override_2(self): + self.d.setVar("TEST:append:bar", "testvalue2") + self.assertEqual(self.d.getVar("TEST"), "testvaluetestvalue2") + + def test_append_and_override_3(self): + self.d.setVar("TEST:bar:append", "testvalue2") + self.assertEqual(self.d.getVar("TEST"), "testvalue2") + + # Test an override with _ in it based on a real world OE issue + def test_underscore_override(self): + self.d.setVar("TARGET_ARCH", "x86_64") + self.d.setVar("PN", "test-${TARGET_ARCH}") + self.d.setVar("VERSION", "1") + self.d.setVar("VERSION:pn-test-${TARGET_ARCH}", "2") + self.d.setVar("OVERRIDES", "pn-${PN}") + bb.data.expandKeys(self.d) + self.assertEqual(self.d.getVar("VERSION"), "2") + + def test_append_and_unused_override(self): + # Had a bug where an unused override append could return "" instead of None + self.d.setVar("BAR:append:unusedoverride", "testvalue2") + self.assertEqual(self.d.getVar("BAR"), None) + +class TestKeyExpansion(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d.setVar("FOO", "foo") + self.d.setVar("BAR", "foo") + + def test_keyexpand(self): + self.d.setVar("VAL_${FOO}", "A") + self.d.setVar("VAL_${BAR}", "B") + with LogRecord() as logs: + bb.data.expandKeys(self.d) + self.assertTrue(logContains("Variable key VAL_${FOO} (A) replaces original key VAL_foo (B)", logs)) + self.assertEqual(self.d.getVar("VAL_foo"), "A") + +class TestFlags(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d.setVar("foo", "value of foo") + self.d.setVarFlag("foo", "flag1", "value of flag1") + self.d.setVarFlag("foo", "flag2", "value of flag2") + + def test_setflag(self): + self.assertEqual(self.d.getVarFlag("foo", "flag1", False), "value of flag1") + self.assertEqual(self.d.getVarFlag("foo", "flag2", False), "value of flag2") + + def test_delflag(self): + self.d.delVarFlag("foo", "flag2") + self.assertEqual(self.d.getVarFlag("foo", "flag1", False), "value of flag1") + self.assertEqual(self.d.getVarFlag("foo", "flag2", False), None) + + +class Contains(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + self.d.setVar("SOMEFLAG", "a b c") + + def test_contains(self): + self.assertTrue(bb.utils.contains("SOMEFLAG", "a", True, False, self.d)) + self.assertTrue(bb.utils.contains("SOMEFLAG", "b", True, False, self.d)) + self.assertTrue(bb.utils.contains("SOMEFLAG", "c", True, False, self.d)) + + self.assertTrue(bb.utils.contains("SOMEFLAG", "a b", True, False, self.d)) + self.assertTrue(bb.utils.contains("SOMEFLAG", "b c", True, False, self.d)) + self.assertTrue(bb.utils.contains("SOMEFLAG", "c a", True, False, self.d)) + + self.assertTrue(bb.utils.contains("SOMEFLAG", "a b c", True, False, self.d)) + self.assertTrue(bb.utils.contains("SOMEFLAG", "c b a", True, False, self.d)) + + self.assertFalse(bb.utils.contains("SOMEFLAG", "x", True, False, self.d)) + self.assertFalse(bb.utils.contains("SOMEFLAG", "a x", True, False, self.d)) + self.assertFalse(bb.utils.contains("SOMEFLAG", "x c b", True, False, self.d)) + self.assertFalse(bb.utils.contains("SOMEFLAG", "x c b a", True, False, self.d)) + + def test_contains_any(self): + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "a", True, False, self.d)) + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "b", True, False, self.d)) + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "c", True, False, self.d)) + + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "a b", True, False, self.d)) + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "b c", True, False, self.d)) + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "c a", True, False, self.d)) + + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "a x", True, False, self.d)) + self.assertTrue(bb.utils.contains_any("SOMEFLAG", "x c", True, False, self.d)) + + self.assertFalse(bb.utils.contains_any("SOMEFLAG", "x", True, False, self.d)) + self.assertFalse(bb.utils.contains_any("SOMEFLAG", "x y z", True, False, self.d)) + + +class TaskHash(unittest.TestCase): + def test_taskhashes(self): + def gettask_bashhash(taskname, d): + tasklist, gendeps, lookupcache = bb.data.generate_dependencies(d, set()) + taskdeps, basehash = bb.data.generate_dependency_hash(tasklist, gendeps, lookupcache, set(), "somefile") + bb.warn(str(lookupcache)) + return basehash["somefile:" + taskname] + + d = bb.data.init() + d.setVar("__BBTASKS", ["mytask"]) + d.setVar("__exportlist", []) + d.setVar("mytask", "${MYCOMMAND}") + d.setVar("MYCOMMAND", "${VAR}; foo; bar; exit 0") + d.setVar("VAR", "val") + orighash = gettask_bashhash("mytask", d) + + # Changing a variable should change the hash + d.setVar("VAR", "val2") + nexthash = gettask_bashhash("mytask", d) + self.assertNotEqual(orighash, nexthash) + + d.setVar("VAR", "val") + # Adding an inactive removal shouldn't change the hash + d.setVar("BAR", "notbar") + d.setVar("MYCOMMAND:remove", "${BAR}") + nexthash = gettask_bashhash("mytask", d) + self.assertEqual(orighash, nexthash) + + # Adding an active removal should change the hash + d.setVar("BAR", "bar;") + nexthash = gettask_bashhash("mytask", d) + self.assertNotEqual(orighash, nexthash) + + # Setup an inactive contains() + d.setVar("VAR", "${@bb.utils.contains('VAR2', 'A', 'val', '', d)}") + orighash = gettask_bashhash("mytask", d) + + # Activate the contains() and the hash should change + d.setVar("VAR2", "A") + nexthash = gettask_bashhash("mytask", d) + self.assertNotEqual(orighash, nexthash) + + # The contains should be inactive but even though VAR2 has a + # different value the hash should match the original + d.setVar("VAR2", "B") + nexthash = gettask_bashhash("mytask", d) + self.assertEqual(orighash, nexthash) + +class Serialize(unittest.TestCase): + + def test_serialize(self): + import tempfile + import pickle + d = bb.data.init() + d.enableTracking() + d.setVar('HELLO', 'world') + d.setVarFlag('HELLO', 'other', 'planet') + with tempfile.NamedTemporaryFile(delete=False) as tmpfile: + tmpfilename = tmpfile.name + pickle.dump(d, tmpfile) + + with open(tmpfilename, 'rb') as f: + newd = pickle.load(f) + + os.remove(tmpfilename) + + self.assertEqual(d, newd) + self.assertEqual(newd.getVar('HELLO'), 'world') + self.assertEqual(newd.getVarFlag('HELLO', 'other'), 'planet') + + diff --git a/poky/bitbake/lib/bb/tests/event.py b/poky/bitbake/lib/bb/tests/event.py new file mode 100644 index 0000000..9ca7e9b --- /dev/null +++ b/poky/bitbake/lib/bb/tests/event.py @@ -0,0 +1,966 @@ +# +# BitBake Tests for the Event implementation (event.py) +# +# Copyright (C) 2017 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import collections +import importlib +import logging +import pickle +import threading +import time +import unittest +from unittest.mock import Mock +from unittest.mock import call + +import bb +import bb.event +from bb.msg import BBLogFormatter + + +class EventQueueStubBase(object): + """ Base class for EventQueueStub classes """ + def __init__(self): + self.event_calls = [] + return + + def _store_event_data_string(self, event): + if isinstance(event, logging.LogRecord): + formatter = BBLogFormatter("%(levelname)s: %(message)s") + self.event_calls.append(formatter.format(event)) + else: + self.event_calls.append(bb.event.getName(event)) + return + + +class EventQueueStub(EventQueueStubBase): + """ Class used as specification for UI event handler queue stub objects """ + def __init__(self): + super(EventQueueStub, self).__init__() + + def send(self, event): + super(EventQueueStub, self)._store_event_data_string(event) + + +class PickleEventQueueStub(EventQueueStubBase): + """ Class used as specification for UI event handler queue stub objects + with sendpickle method """ + def __init__(self): + super(PickleEventQueueStub, self).__init__() + + def sendpickle(self, pickled_event): + event = pickle.loads(pickled_event) + super(PickleEventQueueStub, self)._store_event_data_string(event) + + +class UIClientStub(object): + """ Class used as specification for UI event handler stub objects """ + def __init__(self): + self.event = None + + +class EventHandlingTest(unittest.TestCase): + """ Event handling test class """ + + + def setUp(self): + self._test_process = Mock() + ui_client1 = UIClientStub() + ui_client2 = UIClientStub() + self._test_ui1 = Mock(wraps=ui_client1) + self._test_ui2 = Mock(wraps=ui_client2) + importlib.reload(bb.event) + + def _create_test_handlers(self): + """ Method used to create a test handler ordered dictionary """ + test_handlers = collections.OrderedDict() + test_handlers["handler1"] = self._test_process.handler1 + test_handlers["handler2"] = self._test_process.handler2 + return test_handlers + + def test_class_handlers(self): + """ Test set_class_handlers and get_class_handlers methods """ + test_handlers = self._create_test_handlers() + bb.event.set_class_handlers(test_handlers) + self.assertEqual(test_handlers, + bb.event.get_class_handlers()) + + def test_handlers(self): + """ Test set_handlers and get_handlers """ + test_handlers = self._create_test_handlers() + bb.event.set_handlers(test_handlers) + self.assertEqual(test_handlers, + bb.event.get_handlers()) + + def test_clean_class_handlers(self): + """ Test clean_class_handlers method """ + cleanDict = collections.OrderedDict() + self.assertEqual(cleanDict, + bb.event.clean_class_handlers()) + + def test_register(self): + """ Test register method for class handlers """ + result = bb.event.register("handler", self._test_process.handler) + self.assertEqual(result, bb.event.Registered) + handlers_dict = bb.event.get_class_handlers() + self.assertIn("handler", handlers_dict) + + def test_already_registered(self): + """ Test detection of an already registed class handler """ + bb.event.register("handler", self._test_process.handler) + handlers_dict = bb.event.get_class_handlers() + self.assertIn("handler", handlers_dict) + result = bb.event.register("handler", self._test_process.handler) + self.assertEqual(result, bb.event.AlreadyRegistered) + + def test_register_from_string(self): + """ Test register method receiving code in string """ + result = bb.event.register("string_handler", " return True") + self.assertEqual(result, bb.event.Registered) + handlers_dict = bb.event.get_class_handlers() + self.assertIn("string_handler", handlers_dict) + + def test_register_with_mask(self): + """ Test register method with event masking """ + mask = ["bb.event.OperationStarted", + "bb.event.OperationCompleted"] + result = bb.event.register("event_handler", + self._test_process.event_handler, + mask) + self.assertEqual(result, bb.event.Registered) + handlers_dict = bb.event.get_class_handlers() + self.assertIn("event_handler", handlers_dict) + + def test_remove(self): + """ Test remove method for class handlers """ + test_handlers = self._create_test_handlers() + bb.event.set_class_handlers(test_handlers) + count = len(test_handlers) + bb.event.remove("handler1", None) + test_handlers = bb.event.get_class_handlers() + self.assertEqual(len(test_handlers), count - 1) + with self.assertRaises(KeyError): + bb.event.remove("handler1", None) + + def test_execute_handler(self): + """ Test execute_handler method for class handlers """ + mask = ["bb.event.OperationProgress"] + result = bb.event.register("event_handler", + self._test_process.event_handler, + mask) + self.assertEqual(result, bb.event.Registered) + event = bb.event.OperationProgress(current=10, total=100) + bb.event.execute_handler("event_handler", + self._test_process.event_handler, + event, + None) + self._test_process.event_handler.assert_called_once_with(event) + + def test_fire_class_handlers(self): + """ Test fire_class_handlers method """ + mask = ["bb.event.OperationStarted"] + result = bb.event.register("event_handler1", + self._test_process.event_handler1, + mask) + self.assertEqual(result, bb.event.Registered) + result = bb.event.register("event_handler2", + self._test_process.event_handler2, + "*") + self.assertEqual(result, bb.event.Registered) + event1 = bb.event.OperationStarted() + event2 = bb.event.OperationCompleted(total=123) + bb.event.fire_class_handlers(event1, None) + bb.event.fire_class_handlers(event2, None) + bb.event.fire_class_handlers(event2, None) + expected_event_handler1 = [call(event1)] + expected_event_handler2 = [call(event1), + call(event2), + call(event2)] + self.assertEqual(self._test_process.event_handler1.call_args_list, + expected_event_handler1) + self.assertEqual(self._test_process.event_handler2.call_args_list, + expected_event_handler2) + + def test_class_handler_filters(self): + """ Test filters for class handlers """ + mask = ["bb.event.OperationStarted"] + result = bb.event.register("event_handler1", + self._test_process.event_handler1, + mask) + self.assertEqual(result, bb.event.Registered) + result = bb.event.register("event_handler2", + self._test_process.event_handler2, + "*") + self.assertEqual(result, bb.event.Registered) + bb.event.set_eventfilter( + lambda name, handler, event, d : + name == 'event_handler2' and + bb.event.getName(event) == "OperationStarted") + event1 = bb.event.OperationStarted() + event2 = bb.event.OperationCompleted(total=123) + bb.event.fire_class_handlers(event1, None) + bb.event.fire_class_handlers(event2, None) + bb.event.fire_class_handlers(event2, None) + expected_event_handler1 = [] + expected_event_handler2 = [call(event1)] + self.assertEqual(self._test_process.event_handler1.call_args_list, + expected_event_handler1) + self.assertEqual(self._test_process.event_handler2.call_args_list, + expected_event_handler2) + + def test_change_handler_event_mapping(self): + """ Test changing the event mapping for class handlers """ + event1 = bb.event.OperationStarted() + event2 = bb.event.OperationCompleted(total=123) + + # register handler for all events + result = bb.event.register("event_handler1", + self._test_process.event_handler1, + "*") + self.assertEqual(result, bb.event.Registered) + bb.event.fire_class_handlers(event1, None) + bb.event.fire_class_handlers(event2, None) + expected = [call(event1), call(event2)] + self.assertEqual(self._test_process.event_handler1.call_args_list, + expected) + + # unregister handler and register it only for OperationStarted + bb.event.remove("event_handler1", + self._test_process.event_handler1) + mask = ["bb.event.OperationStarted"] + result = bb.event.register("event_handler1", + self._test_process.event_handler1, + mask) + self.assertEqual(result, bb.event.Registered) + bb.event.fire_class_handlers(event1, None) + bb.event.fire_class_handlers(event2, None) + expected = [call(event1), call(event2), call(event1)] + self.assertEqual(self._test_process.event_handler1.call_args_list, + expected) + + # unregister handler and register it only for OperationCompleted + bb.event.remove("event_handler1", + self._test_process.event_handler1) + mask = ["bb.event.OperationCompleted"] + result = bb.event.register("event_handler1", + self._test_process.event_handler1, + mask) + self.assertEqual(result, bb.event.Registered) + bb.event.fire_class_handlers(event1, None) + bb.event.fire_class_handlers(event2, None) + expected = [call(event1), call(event2), call(event1), call(event2)] + self.assertEqual(self._test_process.event_handler1.call_args_list, + expected) + + def test_register_UIHhandler(self): + """ Test register_UIHhandler method """ + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + + def test_UIHhandler_already_registered(self): + """ Test registering an UIHhandler already existing """ + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 2) + + def test_unregister_UIHhandler(self): + """ Test unregister_UIHhandler method """ + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + result = bb.event.unregister_UIHhandler(1) + self.assertIs(result, None) + + def test_fire_ui_handlers(self): + """ Test fire_ui_handlers method """ + self._test_ui1.event = Mock(spec_set=EventQueueStub) + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + self._test_ui2.event = Mock(spec_set=PickleEventQueueStub) + result = bb.event.register_UIHhandler(self._test_ui2, mainui=True) + self.assertEqual(result, 2) + event1 = bb.event.OperationStarted() + bb.event.fire_ui_handlers(event1, None) + expected = [call(event1)] + self.assertEqual(self._test_ui1.event.send.call_args_list, + expected) + expected = [call(pickle.dumps(event1))] + self.assertEqual(self._test_ui2.event.sendpickle.call_args_list, + expected) + + def test_ui_handler_mask_filter(self): + """ Test filters for UI handlers """ + mask = ["bb.event.OperationStarted"] + debug_domains = {} + self._test_ui1.event = Mock(spec_set=EventQueueStub) + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + bb.event.set_UIHmask(result, logging.INFO, debug_domains, mask) + self._test_ui2.event = Mock(spec_set=PickleEventQueueStub) + result = bb.event.register_UIHhandler(self._test_ui2, mainui=True) + bb.event.set_UIHmask(result, logging.INFO, debug_domains, mask) + + event1 = bb.event.OperationStarted() + event2 = bb.event.OperationCompleted(total=1) + + bb.event.fire_ui_handlers(event1, None) + bb.event.fire_ui_handlers(event2, None) + expected = [call(event1)] + self.assertEqual(self._test_ui1.event.send.call_args_list, + expected) + expected = [call(pickle.dumps(event1))] + self.assertEqual(self._test_ui2.event.sendpickle.call_args_list, + expected) + + def test_ui_handler_log_filter(self): + """ Test log filters for UI handlers """ + mask = ["*"] + debug_domains = {'BitBake.Foo': logging.WARNING} + + self._test_ui1.event = EventQueueStub() + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + bb.event.set_UIHmask(result, logging.ERROR, debug_domains, mask) + self._test_ui2.event = PickleEventQueueStub() + result = bb.event.register_UIHhandler(self._test_ui2, mainui=True) + bb.event.set_UIHmask(result, logging.ERROR, debug_domains, mask) + + event1 = bb.event.OperationStarted() + bb.event.fire_ui_handlers(event1, None) # All events match + + event_log_handler = bb.event.LogHandler() + logger = logging.getLogger("BitBake") + logger.addHandler(event_log_handler) + logger1 = logging.getLogger("BitBake.Foo") + logger1.warning("Test warning LogRecord1") # Matches debug_domains level + logger1.info("Test info LogRecord") # Filtered out + logger2 = logging.getLogger("BitBake.Bar") + logger2.error("Test error LogRecord") # Matches filter base level + logger2.warning("Test warning LogRecord2") # Filtered out + logger.removeHandler(event_log_handler) + + expected = ['OperationStarted', + 'WARNING: Test warning LogRecord1', + 'ERROR: Test error LogRecord'] + self.assertEqual(self._test_ui1.event.event_calls, expected) + self.assertEqual(self._test_ui2.event.event_calls, expected) + + def test_fire(self): + """ Test fire method used to trigger class and ui event handlers """ + mask = ["bb.event.ConfigParsed"] + result = bb.event.register("event_handler1", + self._test_process.event_handler1, + mask) + + self._test_ui1.event = Mock(spec_set=EventQueueStub) + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + + event1 = bb.event.ConfigParsed() + bb.event.fire(event1, None) + expected = [call(event1)] + self.assertEqual(self._test_process.event_handler1.call_args_list, + expected) + self.assertEqual(self._test_ui1.event.send.call_args_list, + expected) + + def test_fire_from_worker(self): + """ Test fire_from_worker method """ + self._test_ui1.event = Mock(spec_set=EventQueueStub) + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + event1 = bb.event.ConfigParsed() + bb.event.fire_from_worker(event1, None) + expected = [call(event1)] + self.assertEqual(self._test_ui1.event.send.call_args_list, + expected) + + def test_worker_fire(self): + """ Test the triggering of bb.event.worker_fire callback """ + bb.event.worker_fire = Mock() + event = bb.event.Event() + bb.event.fire(event, None) + expected = [call(event, None)] + self.assertEqual(bb.event.worker_fire.call_args_list, expected) + + def test_print_ui_queue(self): + """ Test print_ui_queue method """ + event1 = bb.event.OperationStarted() + event2 = bb.event.OperationCompleted(total=123) + bb.event.fire(event1, None) + bb.event.fire(event2, None) + event_log_handler = bb.event.LogHandler() + logger = logging.getLogger("BitBake") + logger.addHandler(event_log_handler) + logger.info("Test info LogRecord") + logger.warning("Test warning LogRecord") + with self.assertLogs("BitBake", level="INFO") as cm: + bb.event.print_ui_queue() + logger.removeHandler(event_log_handler) + self.assertEqual(cm.output, + ["INFO:BitBake:Test info LogRecord", + "WARNING:BitBake:Test warning LogRecord"]) + + def _set_threadlock_test_mockups(self): + """ Create UI event handler mockups used in enable and disable + threadlock tests """ + def ui1_event_send(event): + if type(event) is bb.event.ConfigParsed: + self._threadlock_test_calls.append("w1_ui1") + if type(event) is bb.event.OperationStarted: + self._threadlock_test_calls.append("w2_ui1") + time.sleep(2) + + def ui2_event_send(event): + if type(event) is bb.event.ConfigParsed: + self._threadlock_test_calls.append("w1_ui2") + if type(event) is bb.event.OperationStarted: + self._threadlock_test_calls.append("w2_ui2") + time.sleep(2) + + self._threadlock_test_calls = [] + self._test_ui1.event = EventQueueStub() + self._test_ui1.event.send = ui1_event_send + result = bb.event.register_UIHhandler(self._test_ui1, mainui=True) + self.assertEqual(result, 1) + self._test_ui2.event = EventQueueStub() + self._test_ui2.event.send = ui2_event_send + result = bb.event.register_UIHhandler(self._test_ui2, mainui=True) + self.assertEqual(result, 2) + + def _set_and_run_threadlock_test_workers(self): + """ Create and run the workers used to trigger events in enable and + disable threadlock tests """ + worker1 = threading.Thread(target=self._thread_lock_test_worker1) + worker2 = threading.Thread(target=self._thread_lock_test_worker2) + worker1.start() + time.sleep(1) + worker2.start() + worker1.join() + worker2.join() + + def _thread_lock_test_worker1(self): + """ First worker used to fire the ConfigParsed event for enable and + disable threadlocks tests """ + bb.event.fire(bb.event.ConfigParsed(), None) + + def _thread_lock_test_worker2(self): + """ Second worker used to fire the OperationStarted event for enable + and disable threadlocks tests """ + bb.event.fire(bb.event.OperationStarted(), None) + + def test_enable_threadlock(self): + """ Test enable_threadlock method """ + self._set_threadlock_test_mockups() + bb.event.enable_threadlock() + self._set_and_run_threadlock_test_workers() + # Calls to UI handlers should be in order as all the registered + # handlers for the event coming from the first worker should be + # called before processing the event from the second worker. + self.assertEqual(self._threadlock_test_calls, + ["w1_ui1", "w1_ui2", "w2_ui1", "w2_ui2"]) + + + def test_disable_threadlock(self): + """ Test disable_threadlock method """ + self._set_threadlock_test_mockups() + bb.event.disable_threadlock() + self._set_and_run_threadlock_test_workers() + # Calls to UI handlers should be intertwined together. Thanks to the + # delay in the registered handlers for the event coming from the first + # worker, the event coming from the second worker starts being + # processed before finishing handling the first worker event. + self.assertEqual(self._threadlock_test_calls, + ["w1_ui1", "w2_ui1", "w1_ui2", "w2_ui2"]) + + +class EventClassesTest(unittest.TestCase): + """ Event classes test class """ + + _worker_pid = 54321 + + def setUp(self): + bb.event.worker_pid = EventClassesTest._worker_pid + + def test_Event(self): + """ Test the Event base class """ + event = bb.event.Event() + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_HeartbeatEvent(self): + """ Test the HeartbeatEvent class """ + time = 10 + event = bb.event.HeartbeatEvent(time) + self.assertEqual(event.time, time) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_OperationStarted(self): + """ Test OperationStarted event class """ + msg = "Foo Bar" + event = bb.event.OperationStarted(msg) + self.assertEqual(event.msg, msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_OperationCompleted(self): + """ Test OperationCompleted event class """ + msg = "Foo Bar" + total = 123 + event = bb.event.OperationCompleted(total, msg) + self.assertEqual(event.msg, msg) + self.assertEqual(event.total, total) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_OperationProgress(self): + """ Test OperationProgress event class """ + msg = "Foo Bar" + total = 123 + current = 111 + event = bb.event.OperationProgress(current, total, msg) + self.assertEqual(event.msg, msg + ": %s/%s" % (current, total)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ConfigParsed(self): + """ Test the ConfigParsed class """ + event = bb.event.ConfigParsed() + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_MultiConfigParsed(self): + """ Test MultiConfigParsed event class """ + mcdata = {"foobar": "Foo Bar"} + event = bb.event.MultiConfigParsed(mcdata) + self.assertEqual(event.mcdata, mcdata) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_RecipeEvent(self): + """ Test RecipeEvent event base class """ + callback = lambda a: 2 * a + event = bb.event.RecipeEvent(callback) + self.assertEqual(event.fn(1), callback(1)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_RecipePreFinalise(self): + """ Test RecipePreFinalise event class """ + callback = lambda a: 2 * a + event = bb.event.RecipePreFinalise(callback) + self.assertEqual(event.fn(1), callback(1)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_RecipeTaskPreProcess(self): + """ Test RecipeTaskPreProcess event class """ + callback = lambda a: 2 * a + tasklist = [("foobar", callback)] + event = bb.event.RecipeTaskPreProcess(callback, tasklist) + self.assertEqual(event.fn(1), callback(1)) + self.assertEqual(event.tasklist, tasklist) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_RecipeParsed(self): + """ Test RecipeParsed event base class """ + callback = lambda a: 2 * a + event = bb.event.RecipeParsed(callback) + self.assertEqual(event.fn(1), callback(1)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_BuildBase(self): + """ Test base class for bitbake build events """ + name = "foo" + pkgs = ["bar"] + failures = 123 + event = bb.event.BuildBase(name, pkgs, failures) + self.assertEqual(event.name, name) + self.assertEqual(event.pkgs, pkgs) + self.assertEqual(event.getFailures(), failures) + name = event.name = "bar" + pkgs = event.pkgs = ["foo"] + self.assertEqual(event.name, name) + self.assertEqual(event.pkgs, pkgs) + self.assertEqual(event.getFailures(), failures) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_BuildInit(self): + """ Test class for bitbake build invocation events """ + event = bb.event.BuildInit() + self.assertEqual(event.name, None) + self.assertEqual(event.pkgs, []) + self.assertEqual(event.getFailures(), 0) + name = event.name = "bar" + pkgs = event.pkgs = ["foo"] + self.assertEqual(event.name, name) + self.assertEqual(event.pkgs, pkgs) + self.assertEqual(event.getFailures(), 0) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_BuildStarted(self): + """ Test class for build started events """ + name = "foo" + pkgs = ["bar"] + failures = 123 + event = bb.event.BuildStarted(name, pkgs, failures) + self.assertEqual(event.name, name) + self.assertEqual(event.pkgs, pkgs) + self.assertEqual(event.getFailures(), failures) + self.assertEqual(event.msg, "Building Started") + name = event.name = "bar" + pkgs = event.pkgs = ["foo"] + msg = event.msg = "foobar" + self.assertEqual(event.name, name) + self.assertEqual(event.pkgs, pkgs) + self.assertEqual(event.getFailures(), failures) + self.assertEqual(event.msg, msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_BuildCompleted(self): + """ Test class for build completed events """ + total = 1000 + name = "foo" + pkgs = ["bar"] + failures = 123 + interrupted = 1 + event = bb.event.BuildCompleted(total, name, pkgs, failures, + interrupted) + self.assertEqual(event.name, name) + self.assertEqual(event.pkgs, pkgs) + self.assertEqual(event.getFailures(), failures) + self.assertEqual(event.msg, "Building Failed") + event2 = bb.event.BuildCompleted(total, name, pkgs) + self.assertEqual(event2.name, name) + self.assertEqual(event2.pkgs, pkgs) + self.assertEqual(event2.getFailures(), 0) + self.assertEqual(event2.msg, "Building Succeeded") + self.assertEqual(event2.pid, EventClassesTest._worker_pid) + + def test_DiskFull(self): + """ Test DiskFull event class """ + dev = "/dev/foo" + type = "ext4" + freespace = "104M" + mountpoint = "/" + event = bb.event.DiskFull(dev, type, freespace, mountpoint) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_MonitorDiskEvent(self): + """ Test MonitorDiskEvent class """ + available_bytes = 10000000 + free_bytes = 90000000 + total_bytes = 1000000000 + du = bb.event.DiskUsageSample(available_bytes, free_bytes, + total_bytes) + event = bb.event.MonitorDiskEvent(du) + self.assertEqual(event.disk_usage.available_bytes, available_bytes) + self.assertEqual(event.disk_usage.free_bytes, free_bytes) + self.assertEqual(event.disk_usage.total_bytes, total_bytes) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_NoProvider(self): + """ Test NoProvider event class """ + item = "foobar" + event1 = bb.event.NoProvider(item) + self.assertEqual(event1.getItem(), item) + self.assertEqual(event1.isRuntime(), False) + self.assertEqual(str(event1), "Nothing PROVIDES 'foobar'") + runtime = True + dependees = ["foo", "bar"] + reasons = None + close_matches = ["foibar", "footbar"] + event2 = bb.event.NoProvider(item, runtime, dependees, reasons, + close_matches) + self.assertEqual(event2.isRuntime(), True) + expected = ("Nothing RPROVIDES 'foobar' (but foo, bar RDEPENDS" + " on or otherwise requires it). Close matches:\n" + " foibar\n" + " footbar") + self.assertEqual(str(event2), expected) + reasons = ["Item does not exist on database"] + close_matches = ["foibar", "footbar"] + event3 = bb.event.NoProvider(item, runtime, dependees, reasons, + close_matches) + expected = ("Nothing RPROVIDES 'foobar' (but foo, bar RDEPENDS" + " on or otherwise requires it)\n" + "Item does not exist on database") + self.assertEqual(str(event3), expected) + self.assertEqual(event3.pid, EventClassesTest._worker_pid) + + def test_MultipleProviders(self): + """ Test MultipleProviders event class """ + item = "foobar" + candidates = ["foobarv1", "foobars"] + event1 = bb.event.MultipleProviders(item, candidates) + self.assertEqual(event1.isRuntime(), False) + self.assertEqual(event1.getItem(), item) + self.assertEqual(event1.getCandidates(), candidates) + expected = ("Multiple providers are available for foobar (foobarv1," + " foobars)\n" + "Consider defining a PREFERRED_PROVIDER entry to match " + "foobar") + self.assertEqual(str(event1), expected) + runtime = True + event2 = bb.event.MultipleProviders(item, candidates, runtime) + self.assertEqual(event2.isRuntime(), runtime) + expected = ("Multiple providers are available for runtime foobar " + "(foobarv1, foobars)\n" + "Consider defining a PREFERRED_RPROVIDER entry to match " + "foobar") + self.assertEqual(str(event2), expected) + self.assertEqual(event2.pid, EventClassesTest._worker_pid) + + def test_ParseStarted(self): + """ Test ParseStarted event class """ + total = 123 + event = bb.event.ParseStarted(total) + self.assertEqual(event.msg, "Recipe parsing Started") + self.assertEqual(event.total, total) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ParseCompleted(self): + """ Test ParseCompleted event class """ + cached = 10 + parsed = 13 + skipped = 7 + virtuals = 2 + masked = 1 + errors = 0 + total = 23 + event = bb.event.ParseCompleted(cached, parsed, skipped, masked, + virtuals, errors, total) + self.assertEqual(event.msg, "Recipe parsing Completed") + expected = [cached, parsed, skipped, virtuals, masked, errors, + cached + parsed, total] + actual = [event.cached, event.parsed, event.skipped, event.virtuals, + event.masked, event.errors, event.sofar, event.total] + self.assertEqual(str(actual), str(expected)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ParseProgress(self): + """ Test ParseProgress event class """ + current = 10 + total = 100 + event = bb.event.ParseProgress(current, total) + self.assertEqual(event.msg, + "Recipe parsing" + ": %s/%s" % (current, total)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_CacheLoadStarted(self): + """ Test CacheLoadStarted event class """ + total = 123 + event = bb.event.CacheLoadStarted(total) + self.assertEqual(event.msg, "Loading cache Started") + self.assertEqual(event.total, total) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_CacheLoadProgress(self): + """ Test CacheLoadProgress event class """ + current = 10 + total = 100 + event = bb.event.CacheLoadProgress(current, total) + self.assertEqual(event.msg, + "Loading cache" + ": %s/%s" % (current, total)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_CacheLoadCompleted(self): + """ Test CacheLoadCompleted event class """ + total = 23 + num_entries = 12 + event = bb.event.CacheLoadCompleted(total, num_entries) + self.assertEqual(event.msg, "Loading cache Completed") + expected = [total, num_entries] + actual = [event.total, event.num_entries] + self.assertEqual(str(actual), str(expected)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_TreeDataPreparationStarted(self): + """ Test TreeDataPreparationStarted event class """ + event = bb.event.TreeDataPreparationStarted() + self.assertEqual(event.msg, "Preparing tree data Started") + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_TreeDataPreparationProgress(self): + """ Test TreeDataPreparationProgress event class """ + current = 10 + total = 100 + event = bb.event.TreeDataPreparationProgress(current, total) + self.assertEqual(event.msg, + "Preparing tree data" + ": %s/%s" % (current, total)) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_TreeDataPreparationCompleted(self): + """ Test TreeDataPreparationCompleted event class """ + total = 23 + event = bb.event.TreeDataPreparationCompleted(total) + self.assertEqual(event.msg, "Preparing tree data Completed") + self.assertEqual(event.total, total) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_DepTreeGenerated(self): + """ Test DepTreeGenerated event class """ + depgraph = Mock() + event = bb.event.DepTreeGenerated(depgraph) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_TargetsTreeGenerated(self): + """ Test TargetsTreeGenerated event class """ + model = Mock() + event = bb.event.TargetsTreeGenerated(model) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ReachableStamps(self): + """ Test ReachableStamps event class """ + stamps = [Mock(), Mock()] + event = bb.event.ReachableStamps(stamps) + self.assertEqual(event.stamps, stamps) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_FilesMatchingFound(self): + """ Test FilesMatchingFound event class """ + pattern = "foo.*bar" + matches = ["foobar"] + event = bb.event.FilesMatchingFound(pattern, matches) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ConfigFilesFound(self): + """ Test ConfigFilesFound event class """ + variable = "FOO_BAR" + values = ["foo", "bar"] + event = bb.event.ConfigFilesFound(variable, values) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ConfigFilePathFound(self): + """ Test ConfigFilePathFound event class """ + path = "/foo/bar" + event = bb.event.ConfigFilePathFound(path) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_message_classes(self): + """ Test message event classes """ + msg = "foobar foo bar" + event = bb.event.MsgBase(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + event = bb.event.MsgDebug(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + event = bb.event.MsgNote(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + event = bb.event.MsgWarn(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + event = bb.event.MsgError(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + event = bb.event.MsgFatal(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + event = bb.event.MsgPlain(msg) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_LogExecTTY(self): + """ Test LogExecTTY event class """ + msg = "foo bar" + prog = "foo.sh" + sleep_delay = 10 + retries = 3 + event = bb.event.LogExecTTY(msg, prog, sleep_delay, retries) + self.assertEqual(event.msg, msg) + self.assertEqual(event.prog, prog) + self.assertEqual(event.sleep_delay, sleep_delay) + self.assertEqual(event.retries, retries) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def _throw_zero_division_exception(self): + a = 1 / 0 + return + + def _worker_handler(self, event, d): + self._returned_event = event + return + + def test_LogHandler(self): + """ Test LogHandler class """ + logger = logging.getLogger("TestEventClasses") + logger.propagate = False + handler = bb.event.LogHandler(logging.INFO) + logger.addHandler(handler) + bb.event.worker_fire = self._worker_handler + try: + self._throw_zero_division_exception() + except ZeroDivisionError as ex: + logger.exception(ex) + event = self._returned_event + try: + pe = pickle.dumps(event) + newevent = pickle.loads(pe) + except: + self.fail('Logged event is not serializable') + self.assertEqual(event.taskpid, EventClassesTest._worker_pid) + + def test_MetadataEvent(self): + """ Test MetadataEvent class """ + eventtype = "footype" + eventdata = {"foo": "bar"} + event = bb.event.MetadataEvent(eventtype, eventdata) + self.assertEqual(event.type, eventtype) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ProcessStarted(self): + """ Test ProcessStarted class """ + processname = "foo" + total = 9783128974 + event = bb.event.ProcessStarted(processname, total) + self.assertEqual(event.processname, processname) + self.assertEqual(event.total, total) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ProcessProgress(self): + """ Test ProcessProgress class """ + processname = "foo" + progress = 243224 + event = bb.event.ProcessProgress(processname, progress) + self.assertEqual(event.processname, processname) + self.assertEqual(event.progress, progress) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_ProcessFinished(self): + """ Test ProcessFinished class """ + processname = "foo" + total = 1242342344 + event = bb.event.ProcessFinished(processname) + self.assertEqual(event.processname, processname) + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_SanityCheck(self): + """ Test SanityCheck class """ + event1 = bb.event.SanityCheck() + self.assertEqual(event1.generateevents, True) + self.assertEqual(event1.pid, EventClassesTest._worker_pid) + generateevents = False + event2 = bb.event.SanityCheck(generateevents) + self.assertEqual(event2.generateevents, generateevents) + self.assertEqual(event2.pid, EventClassesTest._worker_pid) + + def test_SanityCheckPassed(self): + """ Test SanityCheckPassed class """ + event = bb.event.SanityCheckPassed() + self.assertEqual(event.pid, EventClassesTest._worker_pid) + + def test_SanityCheckFailed(self): + """ Test SanityCheckFailed class """ + msg = "The sanity test failed." + event1 = bb.event.SanityCheckFailed(msg) + self.assertEqual(event1.pid, EventClassesTest._worker_pid) + network_error = True + event2 = bb.event.SanityCheckFailed(msg, network_error) + self.assertEqual(event2.pid, EventClassesTest._worker_pid) + + def test_network_event_classes(self): + """ Test network event classes """ + event1 = bb.event.NetworkTest() + generateevents = False + self.assertEqual(event1.pid, EventClassesTest._worker_pid) + event2 = bb.event.NetworkTest(generateevents) + self.assertEqual(event2.pid, EventClassesTest._worker_pid) + event3 = bb.event.NetworkTestPassed() + self.assertEqual(event3.pid, EventClassesTest._worker_pid) + event4 = bb.event.NetworkTestFailed() + self.assertEqual(event4.pid, EventClassesTest._worker_pid) + + def test_FindSigInfoResult(self): + """ Test FindSigInfoResult event class """ + result = [Mock()] + event = bb.event.FindSigInfoResult(result) + self.assertEqual(event.result, result) + self.assertEqual(event.pid, EventClassesTest._worker_pid) diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/apple/cups/releases b/poky/bitbake/lib/bb/tests/fetch-testdata/apple/cups/releases new file mode 100644 index 0000000..f8934f5 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/apple/cups/releases @@ -0,0 +1,2400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Releases · apple/cups · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + Skip to content + + + + + + + + + + + +
    + +
    + + +
    + +
    + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + + +
    + +
    +
    +
    + + Latest release + + + +
    + + + + +
    + +
    +
    +
    +
    + v2.3.1 +
    + + + Latest release + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Dec 13, 2019 +

    +
    + + + +
    +

    CUPS 2.3.1 is a general bug fix release, including a fix for CVE-2019-2228. Changes include:

    +
      +
    • Documentation updates (Issue #5661, #5674, #5682)
    • +
    • CVE-2019-2228: The ippSetValuetag function did not validate the default
      +language value.
    • +
    • Fixed a crash bug in the web interface (Issue #5621)
    • +
    • The PPD cache code now looks up page sizes using their dimensions
      +(Issue #5633)
    • +
    • PPD files containing "custom" option keywords did not work (Issue #5639)
    • +
    • Added a workaround for the scheduler's systemd support (Issue #5640)
    • +
    • On Windows, TLS certificates generated on February 29 would likely fail
      +(Issue #5643)
    • +
    • Added a DigestOptions directive for the client.conf file to control whether
      +MD5-based Digest authentication is allowed (Issue #5647)
    • +
    • Fixed a bug in the handling of printer resource files (Issue #5652)
    • +
    • The libusb-based USB backend now reports an error when the distribution
      +permissions are wrong (Issue #5658)
    • +
    • Added paint can labels to Dymo driver (Issue #5662)
    • +
    • The ippeveprinter program now supports authentication (Issue #5665)
    • +
    • The ippeveprinter program now advertises DNS-SD services on the correct
      +interfaces, and provides a way to turn them off (Issue #5666)
    • +
    • The --with-dbusdir option was ignored by the configure script (Issue #5671)
    • +
    • Sandboxed applications were not able to get the default printer (Issue #5676)
    • +
    • Log file access controls were not preserved by cupsctl (Issue #5677)
    • +
    • Default printers set with lpoptions did not work in all cases (Issue #5681,
      +Issue #5683, Issue #5684)
    • +
    • Fixed an error in the jobs web interface template (Issue #5694)
    • +
    • Fixed an off-by-one error in ippEnumString (Issue #5695)
    • +
    • Fixed some new compiler warnings (Issue #5700)
    • +
    • Fixed a few issues with the Apple Raster support (rdar://55301114)
    • +
    • The IPP backend did not detect all cases where a job should be retried using
      +a raster format (rdar://56021091)
    • +
    • Fixed spelling of "fold-accordion".
    • +
    • Fixed the default common name for TLS certificates used by ippeveprinter.
    • +
    • Fixed the option names used for IPP Everywhere finishing options.
    • +
    • Added support for the second roll of the DYMO Twin/DUO label printers.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + +
    + + + + +
    + +
    +
    +
    +
    + v2.2.13 +
    + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Dec 13, 2019 + · + + 793 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.2.13 is the last general bug fix release in the 2.2.x series and includes
    +a fix for CVE-2019-2228. Changes include:

    +
      +
    • CVE-2019-2228: The ippSetValuetag function did not validate the default
      +language value.
    • +
    • Added a workaround for the scheduler's systemd support (Issue #5640)
    • +
    • Fixed spelling of "fold-accordion".
    • +
    • Fixed the default common name for TLS certificates used by ippserver.
    • +
    • The libusb-based USB backend now reports an error when the distribution
      +permissions are wrong (Issue #5658)
    • +
    • Default printers set with lpoptions did not work in all cases (Issue #5681,
      +Issue #5683, Issue #5684)
    • +
    • Fixed an off-by-one error in ippEnumString (Issue #5695)
    • +
    • Fixed some new compiler warnings (Issue #5700)
    • +
    • Fixed a few issues with the Apple Raster support (rdar://55301114)
    • +
    • The IPP backend did not detect all cases where a job should be retried using
      +a raster format (rdar://56021091)
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + +
    + + + + +
    + +
    +
    +
    +
    + v2.3.0 +
    + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Aug 23, 2019 + · + + 65 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.3.0 is now available for download, which adopts the new CUPS license, adds support for IPP presets and finishing templates, fixes a number of bugs and "polish" issues, and includes the new ippeveprinter utility. Changes include:

    +
      +
    • CVE-2019-8696 and CVE-2019-8675: Fixed SNMP buffer overflows (rdar://51685251)
    • +
    • Added a GPL2/LGPL2 exception to the new CUPS license terms.
    • +
    • Documentation updates (Issue #5604)
    • +
    • Localization updates (Issue #5637)
    • +
    • Fixed a bug in the scheduler job cleanup code (Issue #5588)
    • +
    • Fixed builds when there is no TLS library (Issue #5590)
    • +
    • Eliminated some new GCC compiler warnings (Issue #5591)
    • +
    • Removed dead code from the scheduler (Issue #5593)
    • +
    • "make" failed with GZIP options (Issue #5595)
    • +
    • Fixed potential excess logging from the scheduler when removing job files
      +(Issue #5597)
    • +
    • Fixed a NULL pointer dereference bug in httpGetSubField2 (Issue #5598)
    • +
    • Added FIPS-140 workarounds for GNU TLS (Issue #5601, Issue #5622)
    • +
    • The scheduler no longer provides a default value for the description
      +(Issue #5603)
    • +
    • The scheduler now logs jobs held for authentication using the error level so
      +it is clear what happened (Issue #5604)
    • +
    • The lpadmin command did not always update the PPD file for changes to the
      +cupsIPPSupplies and cupsSNMPSupplies keywords (Issue #5610)
    • +
    • The scheduler now uses both the group's membership list as well as the
      +various OS-specific membership functions to determine whether a user belongs
      +to a named group (Issue #5613)
    • +
    • Added USB quirks rule for HP LaserJet 1015 (Issue #5617)
    • +
    • Fixed some PPD parser issues (Issue #5623, Issue #5624)
    • +
    • The IPP parser no longer allows invalid member attributes in collections
      +(Issue #5630)
    • +
    • The configure script now treats the "wheel" group as a potential system
      +group (Issue #5638)
    • +
    • Fixed a USB printing issue on macOS (rdar://31433931)
    • +
    • Fixed IPP buffer overflow (rdar://50035411)
    • +
    • Fixed memory disclosure issue in the scheduler (rdar://51373853)
    • +
    • Fixed DoS issues in the scheduler (rdar://51373929)
    • +
    • Fixed an issue with unsupported "sides" values in the IPP backend
      +(rdar://51775322)
    • +
    • The scheduler would restart continuously when idle and printers were not
      +shared (rdar://52561199)
    • +
    • Fixed an issue with EXPECT !name WITH-VALUE ... tests.
    • +
    • Fixed a command ordering issue in the Zebra ZPL driver.
    • +
    • Fixed a memory leak in ppdOpen.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + +
    + + + + +
    + +
    +
    +
    +
    + v2.2.12 +
    + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Aug 15, 2019 + · + + 793 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.2.12 is now available and includes security, compatibility, and general bug fixes. Changes include:

    +
      +
    • CVE-2019-8696 and CVE-2019-8675: Fixed SNMP buffer overflows (rdar://51685251)
    • +
    • The cupsctl command now prevents setting "cups-files.conf" directives
      +(Issue #5530)
    • +
    • Updated the systemd service file for cupsd (Issue #5551)
    • +
    • The cupsCheckDestSupported function did not check octetString values
      +correctly (Issue #5557)
    • +
    • The scheduler did not encode octetString values like "job-password" correctly
      +for the print filters (Issue #5558)
    • +
    • Restored minimal support for the Emulators keyword in PPD files to allow
      +old Samsung printer drivers to continue to work (Issue #5562)
    • +
    • Timed out job submission now yields an error (Issue #5570)
    • +
    • The footer in the web interface covered some content on small displays
      +(Issue #5574)
    • +
    • The libusb-based USB backend now enforces read limits, improving print speed
      +in many cases (Issue #5583)
    • +
    • Fixed some compatibility issues with old releases of CUPS (Issue #5587)
    • +
    • Fixed a bug in the scheduler job cleanup code (Issue #5588)
    • +
    • "make" failed with GZIP options (Issue #5595)
    • +
    • Added FIPS-140 workarounds for GNU TLS (Issue #5601, Issue #5622)
    • +
    • The scheduler no longer provides a default value for the description
      +(Issue #5603)
    • +
    • The lpadmin command did not always update the PPD file for changes to the
      +cupsIPPSupplies and cupsSNMPSupplies keywords (Issue #5610)
    • +
    • The scheduler now uses both the group's membership list as well as the
      +various OS-specific membership functions to determine whether a user belongs
      +to a named group (Issue #5613)
    • +
    • Added USB quirks rule for HP LaserJet 1015 (Issue #5617)
    • +
    • Fixed some PPD parser issues (Issue #5623, Issue #5624)
    • +
    • The IPP parser no longer allows invalid member attributes in collections
      +(Issue #5630)
    • +
    • Fixed IPP buffer overflow (rdar://50035411)
    • +
    • Fixed memory disclosure issue in the scheduler (rdar://51373853)
    • +
    • Fixed DoS issues in the scheduler (rdar://51373929)
    • +
    • The scheduler would restart continuously when idle and printers were not
      +shared (rdar://52561199)
    • +
    • Fixed a command ordering issue in the Zebra ZPL driver.
    • +
    • Fixed a memory leak in ppdOpen.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + Pre-release + + + +
    + + + + +
    + +
    +
    +
    +
    + v2.3rc1 +
    + + + Pre-release + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + May 21, 2019 + · + + 122 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.3rc1 is now available for download. This is the first release candidate for CUPS 2.3.0 which adopts the new CUPS license, adds support for IPP presets and finishing templates, and fixes a number of bugs and "polish" issues. This beta also includes the new ippeveprinter utility. Changes include:

    +
      +
    • The cups-config script no longer adds extra libraries when linking against
      +shared libraries (Issue #5261)
    • +
    • The supplied example print documents have been optimized for size
      +(Issue #5529)
    • +
    • The cupsctl command now prevents setting "cups-files.conf" directives
      +(Issue #5530)
    • +
    • The "forbidden" message in the web interface is now explained (Issue #5547)
    • +
    • The footer in the web interface covered some content on small displays
      +(Issue #5574)
    • +
    • The libusb-based USB backend now enforces read limits, improving print speed
      +in many cases (Issue #5583)
    • +
    • The ippeveprinter command now looks for print commands in the "command"
      +subdirectory.
    • +
    • The ipptool command now supports $date-current and $date-start variables
      +to insert the current and starting date and time values, as well as ISO-8601
      +relative time values such as "PT30S" for 30 seconds in the future.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + Pre-release + + + +
    + + + + +
    + +
    +
    +
    +
    + v2.3b8 +
    + + + Pre-release + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + May 2, 2019 + · + + 165 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.3b8 is now available for download. This is the eighth beta of the CUPS 2.3 series which adopts the new CUPS license, adds support for IPP presets and finishing templates, and fixes a number of bugs and "polish" issues. This beta also includes the new ippeveprinter utility. Changes include:

    +
      +
    • Media size matching now uses a tolerance of 0.5mm (rdar://33822024)
    • +
    • The lpadmin command would hang with a bad PPD file (rdar://41495016)
    • +
    • Fixed a potential crash bug in cups-driverd (rdar://46625579)
    • +
    • Fixed a performance regression with large PPDs (rdar://47040759)
    • +
    • Fixed a memory reallocation bug in HTTP header value expansion
      +(rdar://problem/50000749)
    • +
    • Timed out job submission now yields an error (Issue #5570)
    • +
    • Restored minimal support for the Emulators keyword in PPD files to allow
      +old Samsung printer drivers to continue to work (Issue #5562)
    • +
    • The scheduler did not encode octetString values like "job-password" correctly
      +for the print filters (Issue #5558)
    • +
    • The cupsCheckDestSupported function did not check octetString values
      +correctly (Issue #5557)
    • +
    • Added support for UserAgentTokens directive in "client.conf" (Issue #5555)
    • +
    • Updated the systemd service file for cupsd (Issue #5551)
    • +
    • The ippValidateAttribute function did not catch all instances of invalid
      +UTF-8 strings (Issue #5509)
    • +
    • Fixed an issue with the self-signed certificates generated by GNU TLS
      +(Issue #5506)
    • +
    • Fixed a potential memory leak when reading at the end of a file (Issue #5473)
    • +
    • Fixed potential unaligned accesses in the string pool (Issue #5474)
    • +
    • Fixed a potential memory leak when loading a PPD file (Issue #5475)
    • +
    • Added a USB quirks rule for the Lexmark E120n (Issue #5478)
    • +
    • Updated the USB quirks rule for Zebra label printers (Issue #5395)
    • +
    • Fixed a compile error on Linux (Issue #5483)
    • +
    • The lpadmin command, web interface, and scheduler all queried an IPP
      +Everywhere printer differently, resulting in different PPDs for the same
      +printer (Issue #5484)
    • +
    • The web interface no longer provides access to the log files (Issue #5513)
    • +
    • Non-Kerberized printing to Windows via IPP was broken (Issue #5515)
    • +
    • Eliminated use of private headers and some deprecated macOS APIs (Issue #5516)
    • +
    • The scheduler no longer stops a printer if an error occurs when a job is
      +canceled or aborted (Issue #5517)
    • +
    • Added a USB quirks rule for the DYMO 450 Turbo (Issue #5521)
    • +
    • Added a USB quirks rule for Xerox printers (Issue #5523)
    • +
    • The scheduler's self-signed certificate did not include all of the alternate
      +names for the server when using GNU TLS (Issue #5525)
    • +
    • Fixed compiler warnings with newer versions of GCC (Issue #5532, Issue #5533)
    • +
    • Fixed some PPD caching and IPP Everywhere PPD accounting/password bugs
      +(Issue #5535)
    • +
    • Fixed PreserveJobHistory bug with time values (Issue #5538)
    • +
    • The scheduler no longer advertises the HTTP methods it supports (Issue #5540)
    • +
    • Localization updates (Issue #5461, Issues #5471, Issue #5481, Issue #5486,
      +Issue #5489, Issue #5491, Issue #5492, Issue #5493, Issue #5494, Issue #5495,
      +Issue #5497, Issue #5499, Issue #5500, Issue #5501, Issue #5504)
    • +
    • The scheduler did not always idle exit as quickly as it could.
    • +
    • Added a new ippeveprinter command based on the old ippserver sample code.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + +
    + + + + +
    + +
    +
    +
    +
    + v2.2.11 +
    + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Mar 22, 2019 + · + + 793 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.2.11 is a bug fix release that addresses issues in the scheduler,
    +IPP Everywhere support, CUPS library, and USB printer support. Changes include:

    +
      +
    • Running ppdmerge with the same input and output filenames did not work as
      +advertised (Issue #5455)
    • +
    • Fixed a potential memory leak when reading at the end of a file (Issue #5473)
    • +
    • Fixed potential unaligned accesses in the string pool (Issue #5474)
    • +
    • Fixed a potential memory leak when loading a PPD file (Issue #5475)
    • +
    • Added a USB quirks rule for the Lexmark E120n (Issue #5478)
    • +
    • Updated the USB quirks rule for Zebra label printers (Issue #5395)
    • +
    • Fixed a compile error on Linux (Issue #5483)
    • +
    • The lpadmin command, web interface, and scheduler all queried an IPP
      +Everywhere printer differently, resulting in different PPDs for the same
      +printer (Issue #5484)
    • +
    • Fixed an issue with the self-signed certificates generated by GNU TLS
      +(Issue #5506)
    • +
    • The ippValidateAttribute function did not catch all instances of invalid
      +UTF-8 strings (Issue #5509)
    • +
    • Non-Kerberized printing to Windows via IPP was broken (Issue #5515)
    • +
    • The scheduler no longer stops a printer if an error occurs when a job is
      +canceled or aborted (Issue #5517)
    • +
    • Added a USB quirks rule for the DYMO 450 Turbo (Issue #5521)
    • +
    • Added a USB quirks rule for Xerox printers (Issue #5523)
    • +
    • The scheduler's self-signed certificate did not include all of the alternate
      +names for the server when using GNU TLS (Issue #5525)
    • +
    • Fixed compiler warnings with newer versions of GCC (Issue #5532, Issue #5533)
    • +
    • Fixed some PPD caching and IPP Everywhere PPD accounting/password bugs
      +(Issue #5535)
    • +
    • Fixed PreserveJobHistory bug with time values (Issue #5538)
    • +
    • Media size matching now uses a tolerance of 0.5mm (rdar://33822024)
    • +
    • The lpadmin command would hang with a bad PPD file (rdar://41495016)
    • +
    • Fixed a potential crash bug in cups-driverd (rdar://46625579)
    • +
    • Fixed a performance regression with large PPDs (rdar://47040759)
    • +
    • The scheduler did not always idle exit as quickly as it could.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + Pre-release + + + +
    + + + + +
    + +
    +
    +
    +
    + v2.3b7 +
    + + + Pre-release + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Dec 14, 2018 + · + + 350 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.3b7 is now available for download. This is the sixth beta of the CUPS 2.3 series which adopts the new CUPS license, adds support for IPP presets and finishing templates, and fixes a number of bugs and "polish" issues.

    +

    Changes include:

    +
      +
    • Fixed some build failures (Issue #5451, Issue #5463)
    • +
    • Running ppdmerge with the same input and output filenames did not work as
      +advertised (Issue #5455)
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + Pre-release + + + +
    + + + + +
    + +
    +
    +
    +
    + v2.3b6 +
    + + + Pre-release + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Dec 7, 2018 + · + + 358 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.3b6 is now available for download. This is the sixth beta of the CUPS 2.3 series which adopts the new CUPS license, adds support for IPP presets and finishing templates, and fixes a number of bugs and “polish†issues. Changes include:

    +
      +
    • Localization update (Issue #5339, Issue #5348, Issue #5362, Issue #5408, Issue #5410)
    • +
    • Documentation updates (Issue #5369, Issue #5402, Issue #5403, Issue #5404)
    • +
    • CVE-2018-4700: Linux session cookies used a predictable random number seed.
    • +
    • All user commands now support the --help option (Issue #5326)
    • +
    • The lpoptions command now works with IPP Everywhere printers that have not yet been added as local queues (Issue #5045)
    • +
    • The lpadmin command would create a non-working printer in some error cases (Issue #5305)
    • +
    • The scheduler would crash if an empty AccessLog directive was specified (Issue #5309)
    • +
    • The scheduler did not idle-exit on some Linux distributions (Issue #5319)
    • +
    • Fixed a regression in the changes to ippValidateAttribute (Issue #5322, Issue #5330)
    • +
    • Fixed a crash bug in the Epson dot matrix driver (Issue #5323)
    • +
    • Automatic debug logging of job errors did not work with systemd (Issue #5337)
    • +
    • The web interface did not list the IPP Everywhere "driver" (Issue #5338)
    • +
    • The scheduler did not report all of the supported job options and values (Issue #5340)
    • +
    • The IPP Everywhere "driver" now properly supports face-up printers (Issue #5345)
    • +
    • Fixed some typos in the label printer drivers (Issue #5350)
    • +
    • Setting the Community name to the empty string in snmp.conf now disables SNMP supply level monitoring by all the standard network backends (Issue #5354)
    • +
    • Multi-file jobs could get stuck if the backend failed (Issue #5359, Issue #5413)
    • +
    • The IPP Everywhere "driver" no longer does local filtering when printing to a shared CUPS printer (Issue #5361)
    • +
    • The lpadmin command now correctly reports IPP errors when configuring an IPP Everywhere printer (Issue #5370)
    • +
    • Fixed some memory leaks discovered by Coverity (Issue #5375)
    • +
    • The PPD compiler incorrectly terminated JCL options (Issue #5379)
    • +
    • The cupstestppd utility did not generate errors for missing/mismatched CloseUI/JCLCloseUI keywords (Issue #5381)
    • +
    • The scheduler now reports the actual location of the log file (Issue #5398)
    • +
    • Added USB quirk rules (Issue #5395, Issue #5420, Issue #5443)
    • +
    • The generated PPD files for IPP Everywhere printers did not contain the cupsManualCopies keyword (Issue #5433)
    • +
    • Kerberos credentials might be truncated (Issue #5435)
    • +
    • The handling of MaxJobTime 0 did not match the documentation (Issue #5438)
    • +
    • Fixed a bug adding a queue with the -E option (Issue #5440)
    • +
    • The cupsaddsmb program has been removed (Issue #5449)
    • +
    • The cupstestdsc program has been removed (Issue #5450)
    • +
    • The scheduler was being backgrounded on macOS, causing applications to spin (rdar://40436080)
    • +
    • The scheduler did not validate that required initial request attributes were in the operation group (rdar://41098178)
    • +
    • Authentication in the web interface did not work on macOS (rdar://41444473)
    • +
    • Fixed an issue with HTTP Digest authentication (rdar://41709086)
    • +
    • The scheduler could crash when job history was purged (rdar://42198057)
    • +
    • Fixed a crash bug when mapping PPD duplex options to IPP attributes (rdar://46183976)
    • +
    • Fixed a memory leak for some IPP (extension) syntaxes.
    • +
    • The cupscgi, cupsmime, and cupsppdc support libraries are no longer installed as shared libraries.
    • +
    • The snmp backend is now deprecated.
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + + + +
    + +
    +
    +
    + + +
    + + + + +
    + +
    +
    +
    +
    + v2.2.10 +
    + + +
    + + +

    + @michaelrsweet + michaelrsweet + released this + Dec 7, 2018 + · + + 793 commits + to master + since this release +

    +
    + + + +
    +

    CUPS 2.2.10 is a bug fix release that addresses issues in the scheduler, IPP Everywhere support, CUPS library, and USB printer support. Changes include:

    +
      +
    • CVE-2018-4300: Linux session cookies used a predictable random number seed.
    • +
    • The lpoptions command now works with IPP Everywhere printers that have not yet been added as local queues (Issue #5045)
    • +
    • Added USB quirk rules (Issue #5395, Issue #5443)
    • +
    • The generated PPD files for IPP Everywhere printers did not contain the cupsManualCopies keyword (Issue #5433)
    • +
    • Kerberos credentials might be truncated (Issue #5435)
    • +
    • The handling of MaxJobTime 0 did not match the documentation (Issue #5438)
    • +
    • Incorporated the page accounting changes from CUPS 2.3 (Issue #5439)
    • +
    • Fixed a bug adding a queue with the -E option (Issue #5440)
    • +
    • Fixed a crash bug when mapping PPD duplex options to IPP attributes (rdar://46183976)
    • +
    +

    Enjoy!

    +
    + + +
    + +
    + + + Assets + 4 +
    +
    + +
    + + +
    +
    + +
    + +
    + +
    + +
    + + +
    +
    + +
    +
    + + +
    + + + + + + +
    + + + You can’t perform that action at this time. +
    + + + + + + + + + + + + + + +
    + + + + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/d/db5.3/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/d/db5.3/index.html new file mode 100644 index 0000000..a5a6f48 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/d/db5.3/index.html @@ -0,0 +1,509 @@ + + + + Index of /debian/pool/main/d/db5.3 + + +

    Index of /debian/pool/main/d/db5.3

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSize

    [PARENTDIR]Parent Directory  -
    [   ]db5.3-doc_5.3.28+dfsg1-0.5_all.deb2019-02-26 10:57 15M
    [   ]db5.3-doc_5.3.28+dfsg1-0.6_all.deb2019-03-12 05:28 15M
    [   ]db5.3-doc_5.3.28-9+deb8u1_all.deb2017-11-18 20:15 18M
    [   ]db5.3-doc_5.3.28-12+deb9u1_all.deb2017-09-28 09:42 18M
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 21K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 20K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 22K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 23K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 20K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 21K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 20K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 22K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 19K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 23K
    [   ]db5.3-sql-util_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 20K
    [   ]db5.3-sql-util_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 21K
    [   ]db5.3-sql-util_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 20K
    [   ]db5.3-sql-util_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 19K
    [   ]db5.3-sql-util_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 22K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 20K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 18K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 20K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 19K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 22K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 19K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 19K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 19K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 19K
    [   ]db5.3-sql-util_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 20K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 63K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 63K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 58K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 59K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 65K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 62K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 64K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 63K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 69K
    [   ]db5.3-util_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 64K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 63K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 63K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 58K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 59K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 65K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 64K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 63K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 69K
    [   ]db5.3-util_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 64K
    [   ]db5.3-util_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 63K
    [   ]db5.3-util_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 60K
    [   ]db5.3-util_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 61K
    [   ]db5.3-util_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 65K
    [   ]db5.3-util_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 63K
    [   ]db5.3-util_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 60K
    [   ]db5.3-util_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 60K
    [   ]db5.3-util_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 61K
    [   ]db5.3-util_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 66K
    [   ]db5.3-util_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 62K
    [   ]db5.3-util_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 64K
    [   ]db5.3-util_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 63K
    [   ]db5.3-util_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 60K
    [   ]db5.3-util_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 64K
    [   ]db5.3_5.3.28+dfsg1-0.5.debian.tar.xz2019-02-26 08:51 28K
    [   ]db5.3_5.3.28+dfsg1-0.5.dsc2019-02-26 08:51 2.7K
    [   ]db5.3_5.3.28+dfsg1-0.6.debian.tar.xz2019-03-12 04:27 29K
    [   ]db5.3_5.3.28+dfsg1-0.6.dsc2019-03-12 04:27 3.1K
    [   ]db5.3_5.3.28+dfsg1.orig.tar.xz2018-08-09 01:52 19M
    [   ]db5.3_5.3.28-9+deb8u1.debian.tar.xz2017-11-18 20:15 28K
    [   ]db5.3_5.3.28-9+deb8u1.dsc2017-11-18 20:15 3.2K
    [   ]db5.3_5.3.28-12+deb9u1.debian.tar.xz2017-09-24 16:26 28K
    [   ]db5.3_5.3.28-12+deb9u1.dsc2017-09-24 16:26 3.2K
    [   ]db5.3_5.3.28.orig.tar.xz2013-10-27 14:01 23M
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 760K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 722K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 668K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 692K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 842K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 773K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 801K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 789K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 816K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 693K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 759K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 722K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 668K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 692K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 842K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 801K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 789K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 816K
    [   ]libdb5.3++-dev_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 693K
    [   ]libdb5.3++-dev_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 740K
    [   ]libdb5.3++-dev_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 643K
    [   ]libdb5.3++-dev_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 672K
    [   ]libdb5.3++-dev_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 780K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 757K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 663K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 676K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 690K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 836K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 768K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 795K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 786K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 701K
    [   ]libdb5.3++-dev_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 714K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 690K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 628K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 576K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 600K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 755K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 595K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 604K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 604K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 723K
    [   ]libdb5.3++_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 619K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 690K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 629K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 574K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 600K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 755K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 604K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 604K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 724K
    [   ]libdb5.3++_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 620K
    [   ]libdb5.3++_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 691K
    [   ]libdb5.3++_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 580K
    [   ]libdb5.3++_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 606K
    [   ]libdb5.3++_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 749K
    [   ]libdb5.3++_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 687K
    [   ]libdb5.3++_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 574K
    [   ]libdb5.3++_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 575K
    [   ]libdb5.3++_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 600K
    [   ]libdb5.3++_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 751K
    [   ]libdb5.3++_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 593K
    [   ]libdb5.3++_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 601K
    [   ]libdb5.3++_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 602K
    [   ]libdb5.3++_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 618K
    [   ]libdb5.3++_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 637K
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 43M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 41M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 43M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 43M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 44M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 43M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 41M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 43M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 42M
    [   ]libdb5.3-dbg_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 44M
    [   ]libdb5.3-dbg_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 34M
    [   ]libdb5.3-dbg_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 35M
    [   ]libdb5.3-dbg_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 35M
    [   ]libdb5.3-dbg_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 32M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 40M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 40M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 39M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 39M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 38M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 41M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 40M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 39M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 40M
    [   ]libdb5.3-dbg_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 42M
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 743K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 707K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 654K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 677K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 822K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 753K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 780K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 769K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 797K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 679K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 743K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 707K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 654K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 677K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 822K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 780K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 769K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 797K
    [   ]libdb5.3-dev_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 679K
    [   ]libdb5.3-dev_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 725K
    [   ]libdb5.3-dev_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 630K
    [   ]libdb5.3-dev_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 659K
    [   ]libdb5.3-dev_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 766K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 742K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 648K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 660K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 676K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 817K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 748K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 774K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 765K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 682K
    [   ]libdb5.3-dev_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 699K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 757K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 720K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 662K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 688K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 840K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 768K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 795K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 784K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 814K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 688K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 756K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 721K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 663K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 688K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 840K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 796K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 785K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 814K
    [   ]libdb5.3-java-dev_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 688K
    [   ]libdb5.3-java-dev_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 737K
    [   ]libdb5.3-java-dev_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 637K
    [   ]libdb5.3-java-dev_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 666K
    [   ]libdb5.3-java-dev_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 781K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 756K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 657K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 670K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 686K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 836K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 763K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 789K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 780K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 691K
    [   ]libdb5.3-java-dev_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 711K
    [   ]libdb5.3-java-gcj_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 602K
    [   ]libdb5.3-java-gcj_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 455K
    [   ]libdb5.3-java-gcj_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 450K
    [   ]libdb5.3-java-gcj_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 503K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 602K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 595K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 453K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 447K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 518K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 463K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 474K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 471K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 611K
    [   ]libdb5.3-java-gcj_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 578K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 696K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 635K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 580K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 606K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 763K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 596K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 603K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 605K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 732K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 624K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 696K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 636K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 581K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 606K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 762K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 603K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 605K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 733K
    [   ]libdb5.3-java-jni_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 625K
    [   ]libdb5.3-java-jni_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 696K
    [   ]libdb5.3-java-jni_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 583K
    [   ]libdb5.3-java-jni_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 612K
    [   ]libdb5.3-java-jni_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 754K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 695K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 574K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 580K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 606K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 758K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 593K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 600K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 603K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 618K
    [   ]libdb5.3-java-jni_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 641K
    [   ]libdb5.3-java_5.3.28+dfsg1-0.5_all.deb2019-02-26 10:57 575K
    [   ]libdb5.3-java_5.3.28+dfsg1-0.6_all.deb2019-03-12 05:28 575K
    [   ]libdb5.3-java_5.3.28-9+deb8u1_all.deb2017-11-18 20:15 543K
    [   ]libdb5.3-java_5.3.28-12+deb9u1_all.deb2017-09-28 09:42 548K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 1.0M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 968K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 901K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 929K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 1.1M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 1.0M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 1.1M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 1.0M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 1.1M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 938K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 1.0M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 968K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 901K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 929K
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 1.1M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 1.1M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 1.0M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 1.1M
    [   ]libdb5.3-sql-dev_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 938K
    [   ]libdb5.3-sql-dev_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 1.0M
    [   ]libdb5.3-sql-dev_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 869K
    [   ]libdb5.3-sql-dev_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 906K
    [   ]libdb5.3-sql-dev_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 1.0M
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 1.0M
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 891K
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 910K
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 929K
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 1.1M
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 1.0M
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 1.0M
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 1.0M
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 939K
    [   ]libdb5.3-sql-dev_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 965K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 885K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 808K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 737K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 766K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 963K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 777K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 789K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 788K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 928K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 794K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 883K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 808K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 739K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 766K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 963K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 789K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 788K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 927K
    [   ]libdb5.3-sql_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 794K
    [   ]libdb5.3-sql_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 882K
    [   ]libdb5.3-sql_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 742K
    [   ]libdb5.3-sql_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 774K
    [   ]libdb5.3-sql_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 954K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 879K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 733K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 737K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 766K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 958K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 776K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 786K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 788K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 786K
    [   ]libdb5.3-sql_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 817K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 842K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 804K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 751K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 774K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 927K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 856K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 885K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 874K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 900K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 773K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 842K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 804K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 751K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 774K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 927K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 886K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 874K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 900K
    [   ]libdb5.3-stl-dev_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 774K
    [   ]libdb5.3-stl-dev_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 826K
    [   ]libdb5.3-stl-dev_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 727K
    [   ]libdb5.3-stl-dev_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 757K
    [   ]libdb5.3-stl-dev_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 868K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 838K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 745K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 759K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 773K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 920K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 852K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 880K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 870K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 783K
    [   ]libdb5.3-stl-dev_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 795K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 711K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 650K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 592K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 618K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 779K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 614K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 623K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 623K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 746K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 639K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 712K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 649K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 592K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 618K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 779K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 623K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 624K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 746K
    [   ]libdb5.3-stl_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 639K
    [   ]libdb5.3-stl_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 714K
    [   ]libdb5.3-stl_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 599K
    [   ]libdb5.3-stl_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 627K
    [   ]libdb5.3-stl_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 774K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 707K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 594K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 591K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 617K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 774K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 612K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 620K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 622K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 639K
    [   ]libdb5.3-stl_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 657K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 954K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 894K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 805K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 826K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 1.0M
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 921K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 952K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 941K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 1.0M
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 854K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 954K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 894K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 803K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 825K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 1.0M
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 952K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 942K
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 1.0M
    [   ]libdb5.3-tcl_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 853K
    [   ]libdb5.3-tcl_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 1.1M
    [   ]libdb5.3-tcl_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 971K
    [   ]libdb5.3-tcl_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 1.0M
    [   ]libdb5.3-tcl_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 1.3M
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 949K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 809K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 808K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 823K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 1.0M
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 915K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 943K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 936K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 871K
    [   ]libdb5.3-tcl_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 885K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_amd64.deb2019-02-26 10:11 667K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_arm64.deb2019-02-26 09:56 607K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_armel.deb2019-02-26 10:57 558K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_armhf.deb2019-02-26 10:57 583K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_i386.deb2019-02-26 09:46 730K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_mips.deb2019-02-26 10:57 575K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_mips64el.deb2019-02-26 12:42 583K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_mipsel.deb2019-02-26 12:42 584K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_ppc64el.deb2019-02-26 09:56 701K
    [   ]libdb5.3_5.3.28+dfsg1-0.5_s390x.deb2019-02-26 09:56 599K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_amd64.deb2019-03-12 05:28 667K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_arm64.deb2019-03-12 05:28 607K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_armel.deb2019-03-12 06:29 559K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_armhf.deb2019-03-12 06:14 583K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_i386.deb2019-03-12 05:43 730K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_mips64el.deb2019-03-12 06:29 583K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_mipsel.deb2019-03-12 07:30 584K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_ppc64el.deb2019-03-12 05:28 701K
    [   ]libdb5.3_5.3.28+dfsg1-0.6_s390x.deb2019-03-12 05:13 598K
    [   ]libdb5.3_5.3.28-9+deb8u1_amd64.deb2017-11-20 03:40 664K
    [   ]libdb5.3_5.3.28-9+deb8u1_armel.deb2017-11-20 04:26 561K
    [   ]libdb5.3_5.3.28-9+deb8u1_armhf.deb2017-12-02 16:26 587K
    [   ]libdb5.3_5.3.28-9+deb8u1_i386.deb2017-11-20 03:25 721K
    [   ]libdb5.3_5.3.28-12+deb9u1_amd64.deb2017-09-28 09:42 663K
    [   ]libdb5.3_5.3.28-12+deb9u1_arm64.deb2017-09-28 09:42 550K
    [   ]libdb5.3_5.3.28-12+deb9u1_armel.deb2017-09-28 10:28 556K
    [   ]libdb5.3_5.3.28-12+deb9u1_armhf.deb2017-09-28 10:28 581K
    [   ]libdb5.3_5.3.28-12+deb9u1_i386.deb2017-09-28 09:27 725K
    [   ]libdb5.3_5.3.28-12+deb9u1_mips.deb2017-09-29 16:10 572K
    [   ]libdb5.3_5.3.28-12+deb9u1_mips64el.deb2017-09-28 11:29 579K
    [   ]libdb5.3_5.3.28-12+deb9u1_mipsel.deb2017-09-28 11:14 581K
    [   ]libdb5.3_5.3.28-12+deb9u1_ppc64el.deb2017-09-28 09:27 594K
    [   ]libdb5.3_5.3.28-12+deb9u1_s390x.deb2017-09-28 09:42 615K

    +
    Apache Server at ftp.debian.org Port 80
    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/m/minicom/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/m/minicom/index.html new file mode 100644 index 0000000..4a1eb4d --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/debian/pool/main/m/minicom/index.html @@ -0,0 +1,59 @@ + + + + Index of /debian/pool/main/m/minicom + + +

    Index of /debian/pool/main/m/minicom

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSize

    [PARENTDIR]Parent Directory  -
    [   ]minicom_2.7-1+deb8u1.debian.tar.xz2017-04-24 08:22 14K
    [   ]minicom_2.7-1+deb8u1.dsc2017-04-24 08:22 1.9K
    [   ]minicom_2.7-1+deb8u1_amd64.deb2017-04-25 21:10 257K
    [   ]minicom_2.7-1+deb8u1_armel.deb2017-04-26 00:58 246K
    [   ]minicom_2.7-1+deb8u1_armhf.deb2017-04-26 00:58 245K
    [   ]minicom_2.7-1+deb8u1_i386.deb2017-04-25 21:41 258K
    [   ]minicom_2.7-1.1.debian.tar.xz2017-04-22 09:34 14K
    [   ]minicom_2.7-1.1.dsc2017-04-22 09:34 1.9K
    [   ]minicom_2.7-1.1_amd64.deb2017-04-22 15:29 261K
    [   ]minicom_2.7-1.1_arm64.deb2017-04-22 15:29 250K
    [   ]minicom_2.7-1.1_armel.deb2017-04-22 15:29 255K
    [   ]minicom_2.7-1.1_armhf.deb2017-04-22 15:29 254K
    [   ]minicom_2.7-1.1_i386.deb2017-04-22 15:29 266K
    [   ]minicom_2.7-1.1_mips.deb2017-04-22 15:29 258K
    [   ]minicom_2.7-1.1_mips64el.deb2017-04-22 15:29 259K
    [   ]minicom_2.7-1.1_mipsel.deb2017-04-22 15:29 259K
    [   ]minicom_2.7-1.1_ppc64el.deb2017-04-22 15:29 253K
    [   ]minicom_2.7-1.1_s390x.deb2017-04-22 15:29 261K
    [   ]minicom_2.7.1-1+b1_amd64.deb2018-05-06 08:14 262K
    [   ]minicom_2.7.1-1+b1_arm64.deb2018-05-06 07:58 250K
    [   ]minicom_2.7.1-1+b1_armel.deb2018-05-06 08:45 253K
    [   ]minicom_2.7.1-1+b1_armhf.deb2018-05-06 10:42 253K
    [   ]minicom_2.7.1-1+b1_i386.deb2018-05-06 08:55 266K
    [   ]minicom_2.7.1-1+b1_mips.deb2018-05-06 08:14 258K
    [   ]minicom_2.7.1-1+b1_mipsel.deb2018-05-06 12:13 259K
    [   ]minicom_2.7.1-1+b1_ppc64el.deb2018-05-06 09:10 260K
    [   ]minicom_2.7.1-1+b1_s390x.deb2018-05-06 08:14 257K
    [   ]minicom_2.7.1-1+b2_mips64el.deb2018-05-06 09:41 260K
    [   ]minicom_2.7.1-1.debian.tar.xz2017-08-13 15:40 14K
    [   ]minicom_2.7.1-1.dsc2017-08-13 15:40 1.8K
    [   ]minicom_2.7.1.orig.tar.gz2017-08-13 15:40 855K
    [   ]minicom_2.7.orig.tar.gz2014-01-01 09:36 843K
    [   ]minicom_2.8-2.debian.tar.xz2021-06-15 03:47 14K
    [   ]minicom_2.8-2.dsc2021-06-15 03:47 1.8K
    [   ]minicom_2.8-2_amd64.deb2021-06-15 03:58 280K
    [   ]minicom_2.8-2_arm64.deb2021-06-15 04:13 275K
    [   ]minicom_2.8-2_armel.deb2021-06-15 04:13 271K
    [   ]minicom_2.8-2_armhf.deb2021-06-15 04:13 272K
    [   ]minicom_2.8-2_i386.deb2021-06-15 04:13 285K
    [   ]minicom_2.8-2_mips64el.deb2021-06-15 04:13 277K
    [   ]minicom_2.8-2_mipsel.deb2021-06-15 04:13 278K
    [   ]minicom_2.8-2_ppc64el.deb2021-06-15 04:13 286K
    [   ]minicom_2.8-2_s390x.deb2021-06-15 03:58 275K
    [   ]minicom_2.8.orig.tar.bz22021-01-03 12:44 598K

    +
    Apache Server at ftp.debian.org Port 80
    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/downloads/enchant/1.6.0/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/downloads/enchant/1.6.0/index.html new file mode 100644 index 0000000..b7bfb1e --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/downloads/enchant/1.6.0/index.html @@ -0,0 +1,15 @@ + + + + Index of /downloads/enchant/1.6.0 + + +

    Index of /downloads/enchant/1.6.0

    + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [DIR]Parent Directory  -  
    [   ]MD5SUM01-Apr-2010 23:03 55  
    [   ]enchant-1.6.0.tar.gz01-Apr-2010 23:02 593K 

    +
    Apache/2.2.15 (Fedora) Server at www.abisource.com Port 443
    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v2.8/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v2.8/index.html new file mode 100644 index 0000000..9ea077d --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v2.8/index.html @@ -0,0 +1,774 @@ + + + + Index of /files/v2.8 + + +

    Index of /files/v2.8

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]-*2012-06-07 12:08 0  
    [   ]CMakeChangeLog-2.8.02009-11-13 15:41 13K 
    [   ]CMakeChangeLog-2.8.12010-03-17 14:37 17K 
    [   ]CMakeChangeLog-2.8.22010-06-28 14:37 23K 
    [   ]CMakeChangeLog-2.8.32010-11-03 17:21 41K 
    [   ]CMakeChangeLog-2.8.42011-02-16 09:15 61K 
    [   ]CMakeChangeLog-2.8.52011-07-08 10:49 81K 
    [   ]CMakeChangeLog-2.8.62011-12-30 15:30 100K 
    [   ]CMakeChangeLog-2.8.72011-12-30 15:31 115K 
    [   ]CMakeChangeLog-2.8.82012-04-18 17:47 144K 
    [   ]CMakeChangeLog-2.8.92012-08-09 16:29 163K 
    [   ]CMakeChangeLog-2.8.102012-10-31 15:09 185K 
    [   ]CMakeChangeLog-2.8.10.12012-11-07 11:52 186K 
    [   ]CMakeChangeLog-2.8.10.22012-11-27 15:15 186K 
    [   ]CMakeChangeLog-2.8.112013-05-16 09:39 218K 
    [   ]CMakeChangeLog-2.8.122013-10-11 08:57 247K 
    [   ]CMakeChangeLog-2.8.12.12013-11-08 14:33 248K 
    [   ]CMakeVS10FindMake.cmake2010-05-27 09:45 1.2K 
    [TXT]cmake-2.8.0-AIX-powerpc.sh2010-02-08 10:44 17M 
    [   ]cmake-2.8.0-AIX-powerpc.tar.Z2010-02-08 10:44 24M 
    [   ]cmake-2.8.0-AIX-powerpc.tar.gz2010-02-08 10:44 17M 
    [   ]cmake-2.8.0-Darwin-universal.dmg2009-11-13 15:32 24M 
    [   ]cmake-2.8.0-Darwin-universal.tar.Z2009-11-13 15:32 35M 
    [   ]cmake-2.8.0-Darwin-universal.tar.gz2009-11-13 15:33 24M 
    [TXT]cmake-2.8.0-HP-UX-9000_785.sh2009-11-13 15:32 14M 
    [   ]cmake-2.8.0-HP-UX-9000_785.tar.Z2009-11-13 15:32 19M 
    [   ]cmake-2.8.0-HP-UX-9000_785.tar.gz2009-11-13 15:32 14M 
    [TXT]cmake-2.8.0-IRIX64-64.sh2009-11-13 15:32 9.0M 
    [   ]cmake-2.8.0-IRIX64-64.tar.Z2009-11-13 15:32 13M 
    [   ]cmake-2.8.0-IRIX64-64.tar.gz2009-11-13 15:32 9.0M 
    [TXT]cmake-2.8.0-IRIX64-n32.sh2009-11-13 15:32 8.8M 
    [   ]cmake-2.8.0-IRIX64-n32.tar.Z2009-11-13 15:32 13M 
    [   ]cmake-2.8.0-IRIX64-n32.tar.gz2009-11-13 15:32 8.8M 
    [TXT]cmake-2.8.0-Linux-i386.sh2009-11-13 15:32 15M 
    [   ]cmake-2.8.0-Linux-i386.tar.Z2009-11-13 15:32 21M 
    [   ]cmake-2.8.0-Linux-i386.tar.gz2009-11-13 15:32 15M 
    [TXT]cmake-2.8.0-SunOS-sparc.sh2009-11-13 15:32 10M 
    [   ]cmake-2.8.0-SunOS-sparc.tar.Z2009-11-13 15:32 14M 
    [   ]cmake-2.8.0-SunOS-sparc.tar.gz2009-11-13 15:32 10M 
    [   ]cmake-2.8.0-win32-x86.exe2009-11-13 15:32 7.4M 
    [   ]cmake-2.8.0-win32-x86.zip2009-11-13 15:32 9.3M 
    [   ]cmake-2.8.0.tar.Z2009-11-13 15:32 5.4M 
    [   ]cmake-2.8.0.tar.gz2009-11-13 15:32 3.4M 
    [   ]cmake-2.8.0.zip2009-11-13 15:32 4.6M 
    [TXT]cmake-2.8.1-AIX-powerpc.sh2010-04-06 14:37 17M 
    [   ]cmake-2.8.1-AIX-powerpc.tar.Z2010-04-06 14:37 24M 
    [   ]cmake-2.8.1-AIX-powerpc.tar.gz2010-04-06 14:37 17M 
    [   ]cmake-2.8.1-Darwin-universal.dmg2010-04-06 14:37 26M 
    [   ]cmake-2.8.1-Darwin-universal.tar.Z2010-04-06 14:37 37M 
    [   ]cmake-2.8.1-Darwin-universal.tar.gz2010-04-06 14:37 26M 
    [TXT]cmake-2.8.1-HP-UX-9000_785.sh2010-04-06 14:37 14M 
    [   ]cmake-2.8.1-HP-UX-9000_785.tar.Z2010-04-06 14:37 19M 
    [   ]cmake-2.8.1-HP-UX-9000_785.tar.gz2010-04-06 14:37 14M 
    [TXT]cmake-2.8.1-IRIX64-64.sh2010-04-06 14:37 9.1M 
    [   ]cmake-2.8.1-IRIX64-64.tar.Z2010-04-06 14:37 13M 
    [   ]cmake-2.8.1-IRIX64-64.tar.gz2010-04-06 14:37 9.1M 
    [TXT]cmake-2.8.1-IRIX64-n32.sh2010-04-06 14:37 8.8M 
    [   ]cmake-2.8.1-IRIX64-n32.tar.Z2010-04-06 14:37 13M 
    [   ]cmake-2.8.1-IRIX64-n32.tar.gz2010-04-06 14:37 8.8M 
    [TXT]cmake-2.8.1-Linux-i386.sh2010-04-06 14:37 15M 
    [   ]cmake-2.8.1-Linux-i386.tar.Z2010-04-06 14:37 21M 
    [   ]cmake-2.8.1-Linux-i386.tar.gz2010-04-06 14:37 15M 
    [TXT]cmake-2.8.1-SunOS-sparc.sh2010-04-06 14:37 10M 
    [   ]cmake-2.8.1-SunOS-sparc.tar.Z2010-04-06 14:37 14M 
    [   ]cmake-2.8.1-SunOS-sparc.tar.gz2010-04-06 14:37 10M 
    [   ]cmake-2.8.1-win32-x86.exe2010-04-06 14:37 7.5M 
    [   ]cmake-2.8.1-win32-x86.zip2010-04-06 14:37 9.5M 
    [   ]cmake-2.8.1.tar.Z2010-04-06 14:37 5.5M 
    [   ]cmake-2.8.1.tar.gz2010-04-06 14:37 3.4M 
    [   ]cmake-2.8.1.zip2010-04-06 14:37 4.6M 
    [TXT]cmake-2.8.2-AIX-powerpc.sh2010-06-28 14:10 17M 
    [   ]cmake-2.8.2-AIX-powerpc.tar.Z2010-06-28 14:09 24M 
    [   ]cmake-2.8.2-AIX-powerpc.tar.gz2010-06-28 14:09 17M 
    [   ]cmake-2.8.2-Darwin-universal.dmg2010-06-28 14:10 27M 
    [   ]cmake-2.8.2-Darwin-universal.tar.Z2010-06-28 14:10 39M 
    [   ]cmake-2.8.2-Darwin-universal.tar.gz2010-06-28 14:09 27M 
    [TXT]cmake-2.8.2-HP-UX-9000_785.sh2010-06-28 14:09 15M 
    [   ]cmake-2.8.2-HP-UX-9000_785.tar.Z2010-06-28 14:10 20M 
    [   ]cmake-2.8.2-HP-UX-9000_785.tar.gz2010-06-28 14:10 15M 
    [TXT]cmake-2.8.2-IRIX64-64.sh2010-06-28 14:10 9.6M 
    [   ]cmake-2.8.2-IRIX64-64.tar.Z2010-06-28 14:09 14M 
    [   ]cmake-2.8.2-IRIX64-64.tar.gz2010-06-28 14:10 9.6M 
    [TXT]cmake-2.8.2-IRIX64-n32.sh2010-06-28 14:10 9.4M 
    [   ]cmake-2.8.2-IRIX64-n32.tar.Z2010-06-28 14:09 14M 
    [   ]cmake-2.8.2-IRIX64-n32.tar.gz2010-06-28 14:10 9.3M 
    [TXT]cmake-2.8.2-Linux-i386.sh2010-06-28 14:10 15M 
    [   ]cmake-2.8.2-Linux-i386.tar.Z2010-06-28 14:09 21M 
    [   ]cmake-2.8.2-Linux-i386.tar.gz2010-06-28 14:10 15M 
    [TXT]cmake-2.8.2-SunOS-sparc.sh2010-06-28 14:09 10M 
    [   ]cmake-2.8.2-SunOS-sparc.tar.Z2010-06-28 14:10 14M 
    [   ]cmake-2.8.2-SunOS-sparc.tar.gz2010-06-28 14:10 10M 
    [   ]cmake-2.8.2-win32-x86.exe2010-06-28 14:09 7.7M 
    [   ]cmake-2.8.2-win32-x86.zip2010-06-28 14:09 9.7M 
    [   ]cmake-2.8.2.tar.Z2010-06-28 14:10 8.1M 
    [   ]cmake-2.8.2.tar.gz2010-06-28 14:09 5.1M 
    [   ]cmake-2.8.2.zip2010-06-28 14:10 6.8M 
    [TXT]cmake-2.8.3-AIX-powerpc.sh2010-11-03 17:11 17M 
    [   ]cmake-2.8.3-AIX-powerpc.tar.Z2010-11-03 17:11 24M 
    [   ]cmake-2.8.3-AIX-powerpc.tar.gz2010-11-03 17:10 17M 
    [   ]cmake-2.8.3-Darwin-universal.dmg2010-11-03 17:11 27M 
    [   ]cmake-2.8.3-Darwin-universal.tar.Z2010-11-03 17:11 39M 
    [   ]cmake-2.8.3-Darwin-universal.tar.gz2010-11-03 17:11 27M 
    [TXT]cmake-2.8.3-IRIX64-64.sh2010-11-03 17:11 9.8M 
    [   ]cmake-2.8.3-IRIX64-64.tar.Z2010-11-03 17:11 14M 
    [   ]cmake-2.8.3-IRIX64-64.tar.gz2010-11-03 17:11 9.8M 
    [TXT]cmake-2.8.3-IRIX64-n32.sh2010-11-03 17:10 9.5M 
    [   ]cmake-2.8.3-IRIX64-n32.tar.Z2010-11-03 17:11 14M 
    [   ]cmake-2.8.3-IRIX64-n32.tar.gz2010-11-03 17:10 9.5M 
    [TXT]cmake-2.8.3-Linux-i386.sh2010-11-03 17:11 16M 
    [   ]cmake-2.8.3-Linux-i386.tar.Z2010-11-03 17:11 22M 
    [   ]cmake-2.8.3-Linux-i386.tar.gz2010-11-03 17:10 16M 
    [TXT]cmake-2.8.3-SunOS-sparc.sh2010-11-03 17:10 11M 
    [   ]cmake-2.8.3-SunOS-sparc.tar.Z2010-11-03 17:11 15M 
    [   ]cmake-2.8.3-SunOS-sparc.tar.gz2010-11-03 17:11 11M 
    [   ]cmake-2.8.3-win32-x86.exe2010-11-03 17:11 7.9M 
    [   ]cmake-2.8.3-win32-x86.zip2010-11-03 17:11 9.9M 
    [   ]cmake-2.8.3.tar.Z2010-11-03 17:11 8.1M 
    [   ]cmake-2.8.3.tar.gz2010-11-03 17:11 5.2M 
    [   ]cmake-2.8.3.zip2010-11-03 17:11 6.9M 
    [TXT]cmake-2.8.4-AIX-powerpc.sh2011-02-15 15:54 17M 
    [   ]cmake-2.8.4-AIX-powerpc.tar.Z2011-02-15 15:54 24M 
    [   ]cmake-2.8.4-AIX-powerpc.tar.gz2011-02-15 15:53 17M 
    [   ]cmake-2.8.4-Darwin-universal.dmg2011-02-15 15:53 28M 
    [   ]cmake-2.8.4-Darwin-universal.tar.Z2011-02-15 15:54 39M 
    [   ]cmake-2.8.4-Darwin-universal.tar.gz2011-02-15 15:54 27M 
    [TXT]cmake-2.8.4-IRIX64-64.sh2011-02-15 15:53 9.9M 
    [   ]cmake-2.8.4-IRIX64-64.tar.Z2011-02-15 15:54 15M 
    [   ]cmake-2.8.4-IRIX64-64.tar.gz2011-02-15 15:54 9.9M 
    [TXT]cmake-2.8.4-IRIX64-n32.sh2011-02-15 15:53 9.7M 
    [   ]cmake-2.8.4-IRIX64-n32.tar.Z2011-02-15 15:55 14M 
    [   ]cmake-2.8.4-IRIX64-n32.tar.gz2011-02-15 15:54 9.7M 
    [TXT]cmake-2.8.4-Linux-i386.sh2011-02-15 15:54 16M 
    [   ]cmake-2.8.4-Linux-i386.tar.Z2011-02-15 15:54 22M 
    [   ]cmake-2.8.4-Linux-i386.tar.gz2011-02-15 15:54 16M 
    [TXT]cmake-2.8.4-SunOS-sparc.sh2011-02-15 15:54 11M 
    [   ]cmake-2.8.4-SunOS-sparc.tar.Z2011-02-15 15:54 15M 
    [   ]cmake-2.8.4-SunOS-sparc.tar.gz2011-02-15 15:54 11M 
    [   ]cmake-2.8.4-win32-x86.exe2011-02-15 15:54 7.9M 
    [   ]cmake-2.8.4-win32-x86.zip2011-02-15 15:54 10M 
    [   ]cmake-2.8.4.tar.Z2011-02-15 15:54 8.3M 
    [   ]cmake-2.8.4.tar.gz2011-02-15 15:54 5.2M 
    [   ]cmake-2.8.4.zip2011-02-15 15:54 7.0M 
    [   ]cmake-2.8.5-1-src.tar.bz22011-07-08 10:34 4.1M 
    [   ]cmake-2.8.5-1.tar.bz22011-07-08 10:34 6.3M 
    [TXT]cmake-2.8.5-AIX-powerpc.sh2011-07-08 10:34 17M 
    [   ]cmake-2.8.5-AIX-powerpc.tar.Z2011-07-08 10:34 24M 
    [   ]cmake-2.8.5-AIX-powerpc.tar.gz2011-07-08 10:34 17M 
    [   ]cmake-2.8.5-Darwin-universal.dmg2011-07-08 10:34 28M 
    [   ]cmake-2.8.5-Darwin-universal.tar.Z2011-07-08 10:34 40M 
    [   ]cmake-2.8.5-Darwin-universal.tar.gz2011-07-08 10:34 28M 
    [TXT]cmake-2.8.5-IRIX64-64.sh2011-07-08 10:34 10M 
    [   ]cmake-2.8.5-IRIX64-64.tar.Z2011-07-08 10:34 15M 
    [   ]cmake-2.8.5-IRIX64-64.tar.gz2011-07-08 10:34 10M 
    [TXT]cmake-2.8.5-IRIX64-n32.sh2011-07-08 10:34 9.8M 
    [   ]cmake-2.8.5-IRIX64-n32.tar.Z2011-07-08 10:34 15M 
    [   ]cmake-2.8.5-IRIX64-n32.tar.gz2011-07-08 10:34 9.8M 
    [TXT]cmake-2.8.5-Linux-i386.sh2011-07-08 10:34 16M 
    [   ]cmake-2.8.5-Linux-i386.tar.Z2011-07-08 10:34 22M 
    [   ]cmake-2.8.5-Linux-i386.tar.gz2011-07-08 10:34 16M 
    [TXT]cmake-2.8.5-SunOS-sparc.sh2011-07-08 10:34 11M 
    [   ]cmake-2.8.5-SunOS-sparc.tar.Z2011-07-08 10:34 15M 
    [   ]cmake-2.8.5-SunOS-sparc.tar.gz2011-07-08 10:34 11M 
    [   ]cmake-2.8.5-win32-x86.exe2011-07-08 10:34 8.0M 
    [   ]cmake-2.8.5-win32-x86.zip2011-07-08 10:34 10M 
    [   ]cmake-2.8.5.tar.Z2011-07-08 10:34 8.3M 
    [   ]cmake-2.8.5.tar.gz2011-07-08 10:34 5.3M 
    [   ]cmake-2.8.5.zip2011-07-08 10:34 7.0M 
    [   ]cmake-2.8.6-1-src.tar.bz22011-10-04 13:59 4.1M 
    [   ]cmake-2.8.6-1.tar.bz22011-10-04 13:59 6.4M 
    [TXT]cmake-2.8.6-AIX-powerpc.sh2011-10-04 13:59 17M 
    [   ]cmake-2.8.6-AIX-powerpc.tar.Z2011-10-04 13:59 25M 
    [   ]cmake-2.8.6-AIX-powerpc.tar.gz2011-10-04 13:59 17M 
    [   ]cmake-2.8.6-Darwin-universal.dmg2011-10-04 13:59 28M 
    [   ]cmake-2.8.6-Darwin-universal.tar.Z2011-10-04 13:59 40M 
    [   ]cmake-2.8.6-Darwin-universal.tar.gz2011-10-04 13:59 28M 
    [   ]cmake-2.8.6-Darwin64-universal.dmg2011-10-04 13:59 29M 
    [   ]cmake-2.8.6-Darwin64-universal.tar.Z2011-10-04 13:59 41M 
    [   ]cmake-2.8.6-Darwin64-universal.tar.gz2011-10-04 13:59 29M 
    [TXT]cmake-2.8.6-IRIX64-64.sh2011-10-04 13:59 10M 
    [   ]cmake-2.8.6-IRIX64-64.tar.Z2011-10-04 13:59 15M 
    [   ]cmake-2.8.6-IRIX64-64.tar.gz2011-10-04 13:59 10M 
    [TXT]cmake-2.8.6-IRIX64-n32.sh2011-10-04 13:59 10M 
    [   ]cmake-2.8.6-IRIX64-n32.tar.Z2011-10-04 13:59 15M 
    [   ]cmake-2.8.6-IRIX64-n32.tar.gz2011-10-04 13:59 10M 
    [TXT]cmake-2.8.6-Linux-i386.sh2011-10-04 13:59 16M 
    [   ]cmake-2.8.6-Linux-i386.tar.Z2011-10-04 13:59 23M 
    [   ]cmake-2.8.6-Linux-i386.tar.gz2011-10-04 13:58 16M 
    [   ]cmake-2.8.6-win32-x86.exe2011-10-04 13:58 8.2M 
    [   ]cmake-2.8.6-win32-x86.zip2011-10-04 13:58 10M 
    [   ]cmake-2.8.6.tar.Z2011-10-04 13:58 8.4M 
    [   ]cmake-2.8.6.tar.gz2011-10-04 13:58 5.3M 
    [   ]cmake-2.8.6.zip2011-10-04 13:58 7.1M 
    [   ]cmake-2.8.7-1-src.tar.bz22011-12-30 14:14 4.2M 
    [   ]cmake-2.8.7-1.tar.bz22011-12-30 14:14 6.5M 
    [TXT]cmake-2.8.7-AIX-powerpc.sh2012-01-03 16:51 17M 
    [   ]cmake-2.8.7-AIX-powerpc.tar.Z2012-01-03 16:51 25M 
    [   ]cmake-2.8.7-AIX-powerpc.tar.gz2012-01-03 16:51 17M 
    [   ]cmake-2.8.7-Darwin-universal.dmg2011-12-30 14:14 29M 
    [   ]cmake-2.8.7-Darwin-universal.tar.Z2011-12-30 14:14 41M 
    [   ]cmake-2.8.7-Darwin-universal.tar.gz2011-12-30 14:14 28M 
    [   ]cmake-2.8.7-Darwin64-universal.dmg2011-12-30 14:14 30M 
    [   ]cmake-2.8.7-Darwin64-universal.tar.Z2011-12-30 14:13 42M 
    [   ]cmake-2.8.7-Darwin64-universal.tar.gz2011-12-30 14:13 30M 
    [TXT]cmake-2.8.7-IRIX64-64.sh2011-12-30 14:13 10M 
    [   ]cmake-2.8.7-IRIX64-64.tar.Z2011-12-30 14:13 15M 
    [   ]cmake-2.8.7-IRIX64-64.tar.gz2011-12-30 14:13 10M 
    [TXT]cmake-2.8.7-IRIX64-n32.sh2011-12-30 14:13 10M 
    [   ]cmake-2.8.7-IRIX64-n32.tar.Z2011-12-30 14:13 15M 
    [   ]cmake-2.8.7-IRIX64-n32.tar.gz2011-12-30 14:13 10M 
    [TXT]cmake-2.8.7-Linux-i386.sh2011-12-30 14:13 16M 
    [   ]cmake-2.8.7-Linux-i386.tar.Z2011-12-30 14:13 23M 
    [   ]cmake-2.8.7-Linux-i386.tar.gz2011-12-30 14:13 16M 
    [   ]cmake-2.8.7-win32-x86.exe2011-12-30 14:13 8.2M 
    [   ]cmake-2.8.7-win32-x86.zip2011-12-30 14:13 10M 
    [   ]cmake-2.8.7.tar.Z2011-12-30 14:13 8.5M 
    [   ]cmake-2.8.7.tar.gz2011-12-30 14:13 5.4M 
    [   ]cmake-2.8.7.zip2011-12-30 14:13 7.2M 
    [TXT]cmake-2.8.8-AIX-powerpc.sh2012-04-18 15:23 19M 
    [   ]cmake-2.8.8-AIX-powerpc.tar.Z2012-04-18 15:23 27M 
    [   ]cmake-2.8.8-AIX-powerpc.tar.gz2012-04-18 15:23 19M 
    [   ]cmake-2.8.8-Darwin-universal.dmg2012-04-18 15:23 34M 
    [   ]cmake-2.8.8-Darwin-universal.tar.Z2012-04-18 15:23 49M 
    [   ]cmake-2.8.8-Darwin-universal.tar.gz2012-04-18 15:23 34M 
    [   ]cmake-2.8.8-Darwin64-universal.dmg2012-04-18 15:22 32M 
    [   ]cmake-2.8.8-Darwin64-universal.tar.Z2012-04-18 15:22 44M 
    [   ]cmake-2.8.8-Darwin64-universal.tar.gz2012-04-18 15:22 32M 
    [TXT]cmake-2.8.8-IRIX64-64.sh2012-04-18 15:22 12M 
    [   ]cmake-2.8.8-IRIX64-64.tar.Z2012-04-18 15:22 17M 
    [   ]cmake-2.8.8-IRIX64-64.tar.gz2012-04-18 15:22 12M 
    [TXT]cmake-2.8.8-IRIX64-n32.sh2012-04-18 15:22 11M 
    [   ]cmake-2.8.8-IRIX64-n32.tar.Z2012-04-18 15:22 17M 
    [   ]cmake-2.8.8-IRIX64-n32.tar.gz2012-04-18 15:22 11M 
    [TXT]cmake-2.8.8-Linux-i386.sh2012-04-18 15:22 18M 
    [   ]cmake-2.8.8-Linux-i386.tar.Z2012-04-18 15:22 26M 
    [   ]cmake-2.8.8-Linux-i386.tar.gz2012-04-18 15:22 18M 
    [TXT]cmake-2.8.8-SHA-256.txt2016-04-13 12:48 2.1K 
    [TXT]cmake-2.8.8-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.8-win32-x86.exe2012-04-18 15:22 8.7M 
    [   ]cmake-2.8.8-win32-x86.zip2012-04-18 15:22 11M 
    [   ]cmake-2.8.8.tar.Z2012-04-18 15:22 8.5M 
    [   ]cmake-2.8.8.tar.gz2012-04-18 15:22 5.4M 
    [   ]cmake-2.8.8.zip2012-04-18 15:22 7.2M 
    [TXT]cmake-2.8.9-AIX-powerpc.sh2012-08-09 15:36 19M 
    [   ]cmake-2.8.9-AIX-powerpc.tar.Z2012-08-09 15:36 27M 
    [   ]cmake-2.8.9-AIX-powerpc.tar.gz2012-08-09 15:36 19M 
    [   ]cmake-2.8.9-Darwin-universal.dmg2012-08-09 15:36 35M 
    [   ]cmake-2.8.9-Darwin-universal.tar.Z2012-08-09 15:36 50M 
    [   ]cmake-2.8.9-Darwin-universal.tar.gz2012-08-09 15:36 35M 
    [   ]cmake-2.8.9-Darwin64-universal.dmg2012-08-09 15:36 33M 
    [   ]cmake-2.8.9-Darwin64-universal.tar.Z2012-08-09 15:35 45M 
    [   ]cmake-2.8.9-Darwin64-universal.tar.gz2012-08-09 15:35 32M 
    [TXT]cmake-2.8.9-IRIX64-64.sh2012-08-09 15:35 12M 
    [   ]cmake-2.8.9-IRIX64-64.tar.Z2012-08-09 15:35 17M 
    [   ]cmake-2.8.9-IRIX64-64.tar.gz2012-08-09 15:35 12M 
    [TXT]cmake-2.8.9-IRIX64-n32.sh2012-08-09 15:35 12M 
    [   ]cmake-2.8.9-IRIX64-n32.tar.Z2012-08-09 15:35 17M 
    [   ]cmake-2.8.9-IRIX64-n32.tar.gz2012-08-09 15:35 12M 
    [TXT]cmake-2.8.9-Linux-i386.sh2012-08-09 15:35 19M 
    [   ]cmake-2.8.9-Linux-i386.tar.Z2012-08-09 15:35 26M 
    [   ]cmake-2.8.9-Linux-i386.tar.gz2012-08-09 15:35 19M 
    [TXT]cmake-2.8.9-SHA-256.txt2016-04-13 12:48 2.1K 
    [TXT]cmake-2.8.9-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.9-win32-x86.exe2012-08-09 15:35 8.9M 
    [   ]cmake-2.8.9-win32-x86.zip2012-08-09 15:35 11M 
    [   ]cmake-2.8.9.tar.Z2012-08-09 15:35 8.5M 
    [   ]cmake-2.8.9.tar.gz2012-08-09 15:35 5.4M 
    [   ]cmake-2.8.9.zip2012-08-09 15:35 7.2M 
    [TXT]cmake-2.8.10-AIX-powerpc.sh2012-10-31 13:05 20M 
    [   ]cmake-2.8.10-AIX-powerpc.tar.Z2012-10-31 13:05 28M 
    [   ]cmake-2.8.10-AIX-powerpc.tar.gz2012-10-31 13:05 20M 
    [   ]cmake-2.8.10-Darwin-universal.dmg2012-10-31 13:04 41M 
    [   ]cmake-2.8.10-Darwin-universal.tar.Z2012-10-31 13:04 58M 
    [   ]cmake-2.8.10-Darwin-universal.tar.gz2012-10-31 13:04 41M 
    [   ]cmake-2.8.10-Darwin64-universal.dmg2012-10-31 13:04 38M 
    [   ]cmake-2.8.10-Darwin64-universal.tar.Z2012-10-31 13:04 53M 
    [   ]cmake-2.8.10-Darwin64-universal.tar.gz2012-10-31 13:04 38M 
    [TXT]cmake-2.8.10-IRIX64-64.sh2012-10-31 13:04 12M 
    [   ]cmake-2.8.10-IRIX64-64.tar.Z2012-10-31 13:04 18M 
    [   ]cmake-2.8.10-IRIX64-64.tar.gz2012-10-31 13:04 12M 
    [TXT]cmake-2.8.10-IRIX64-n32.sh2012-10-31 13:04 12M 
    [   ]cmake-2.8.10-IRIX64-n32.tar.Z2012-10-31 13:04 17M 
    [   ]cmake-2.8.10-IRIX64-n32.tar.gz2012-10-31 13:04 12M 
    [TXT]cmake-2.8.10-Linux-i386.sh2012-10-31 13:04 22M 
    [   ]cmake-2.8.10-Linux-i386.tar.Z2012-10-31 13:04 30M 
    [   ]cmake-2.8.10-Linux-i386.tar.gz2012-10-31 13:04 22M 
    [TXT]cmake-2.8.10-SHA-256.txt2016-04-13 12:48 2.1K 
    [TXT]cmake-2.8.10-SHA-256.txt.asc2016-04-13 12:48 819  
    [TXT]cmake-2.8.10-rc1-AIX-powerpc.sh2012-10-02 13:28 20M 
    [   ]cmake-2.8.10-rc1-AIX-powerpc.tar.Z2012-10-02 13:28 28M 
    [   ]cmake-2.8.10-rc1-AIX-powerpc.tar.gz2012-10-02 13:28 20M 
    [   ]cmake-2.8.10-rc1-Darwin-universal.dmg2012-10-02 13:28 41M 
    [   ]cmake-2.8.10-rc1-Darwin-universal.tar.Z2012-10-02 13:28 58M 
    [   ]cmake-2.8.10-rc1-Darwin-universal.tar.gz2012-10-02 13:28 40M 
    [   ]cmake-2.8.10-rc1-Darwin64-universal.dmg2012-10-02 13:28 38M 
    [   ]cmake-2.8.10-rc1-Darwin64-universal.tar.Z2012-10-02 13:28 53M 
    [   ]cmake-2.8.10-rc1-Darwin64-universal.tar.gz2012-10-02 13:28 38M 
    [TXT]cmake-2.8.10-rc1-IRIX64-64.sh2012-10-02 13:27 12M 
    [   ]cmake-2.8.10-rc1-IRIX64-64.tar.Z2012-10-02 13:27 18M 
    [   ]cmake-2.8.10-rc1-IRIX64-64.tar.gz2012-10-02 13:27 12M 
    [TXT]cmake-2.8.10-rc1-IRIX64-n32.sh2012-10-02 13:27 12M 
    [   ]cmake-2.8.10-rc1-IRIX64-n32.tar.Z2012-10-02 13:27 17M 
    [   ]cmake-2.8.10-rc1-IRIX64-n32.tar.gz2012-10-02 13:27 12M 
    [TXT]cmake-2.8.10-rc1-Linux-i386.sh2012-10-02 13:27 22M 
    [   ]cmake-2.8.10-rc1-Linux-i386.tar.Z2012-10-02 13:27 30M 
    [   ]cmake-2.8.10-rc1-Linux-i386.tar.gz2012-10-02 13:27 22M 
    [TXT]cmake-2.8.10-rc1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.10-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.10-rc1-win32-x86.exe2012-10-02 13:27 9.6M 
    [   ]cmake-2.8.10-rc1-win32-x86.zip2012-10-02 13:27 12M 
    [   ]cmake-2.8.10-rc1.tar.Z2012-10-02 13:27 8.6M 
    [   ]cmake-2.8.10-rc1.tar.gz2012-10-02 13:27 5.5M 
    [   ]cmake-2.8.10-rc1.zip2012-10-02 13:27 7.4M 
    [TXT]cmake-2.8.10-rc2-AIX-powerpc.sh2012-10-19 09:26 20M 
    [   ]cmake-2.8.10-rc2-AIX-powerpc.tar.Z2012-10-19 09:26 28M 
    [   ]cmake-2.8.10-rc2-AIX-powerpc.tar.gz2012-10-19 09:26 20M 
    [   ]cmake-2.8.10-rc2-Darwin-universal.dmg2012-10-19 09:26 41M 
    [   ]cmake-2.8.10-rc2-Darwin-universal.tar.Z2012-10-19 09:26 58M 
    [   ]cmake-2.8.10-rc2-Darwin-universal.tar.gz2012-10-19 09:26 41M 
    [   ]cmake-2.8.10-rc2-Darwin64-universal.dmg2012-10-19 09:25 38M 
    [   ]cmake-2.8.10-rc2-Darwin64-universal.tar.Z2012-10-19 09:25 53M 
    [   ]cmake-2.8.10-rc2-Darwin64-universal.tar.gz2012-10-19 09:25 38M 
    [TXT]cmake-2.8.10-rc2-IRIX64-64.sh2012-10-19 09:25 12M 
    [   ]cmake-2.8.10-rc2-IRIX64-64.tar.Z2012-10-19 09:25 18M 
    [   ]cmake-2.8.10-rc2-IRIX64-64.tar.gz2012-10-19 09:25 12M 
    [TXT]cmake-2.8.10-rc2-IRIX64-n32.sh2012-10-19 09:25 12M 
    [   ]cmake-2.8.10-rc2-IRIX64-n32.tar.Z2012-10-19 09:25 17M 
    [   ]cmake-2.8.10-rc2-IRIX64-n32.tar.gz2012-10-19 09:25 12M 
    [TXT]cmake-2.8.10-rc2-Linux-i386.sh2012-10-19 09:25 22M 
    [   ]cmake-2.8.10-rc2-Linux-i386.tar.Z2012-10-19 09:24 30M 
    [   ]cmake-2.8.10-rc2-Linux-i386.tar.gz2012-10-19 09:24 22M 
    [TXT]cmake-2.8.10-rc2-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.10-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.10-rc2-win32-x86.exe2012-10-19 09:24 9.6M 
    [   ]cmake-2.8.10-rc2-win32-x86.zip2012-10-19 09:24 12M 
    [   ]cmake-2.8.10-rc2.tar.Z2012-10-19 09:24 8.6M 
    [   ]cmake-2.8.10-rc2.tar.gz2012-10-19 09:24 5.5M 
    [   ]cmake-2.8.10-rc2.zip2012-10-19 09:24 7.4M 
    [TXT]cmake-2.8.10-rc3-AIX-powerpc.sh2012-10-24 15:11 20M 
    [   ]cmake-2.8.10-rc3-AIX-powerpc.tar.Z2012-10-24 15:11 28M 
    [   ]cmake-2.8.10-rc3-AIX-powerpc.tar.gz2012-10-24 15:10 20M 
    [   ]cmake-2.8.10-rc3-Darwin-universal.dmg2012-10-24 15:10 41M 
    [   ]cmake-2.8.10-rc3-Darwin-universal.tar.Z2012-10-24 15:10 58M 
    [   ]cmake-2.8.10-rc3-Darwin-universal.tar.gz2012-10-24 15:10 41M 
    [   ]cmake-2.8.10-rc3-Darwin64-universal.dmg2012-10-24 15:10 38M 
    [   ]cmake-2.8.10-rc3-Darwin64-universal.tar.Z2012-10-24 15:10 53M 
    [   ]cmake-2.8.10-rc3-Darwin64-universal.tar.gz2012-10-24 15:10 38M 
    [TXT]cmake-2.8.10-rc3-IRIX64-64.sh2012-10-24 15:10 12M 
    [   ]cmake-2.8.10-rc3-IRIX64-64.tar.Z2012-10-24 15:10 18M 
    [   ]cmake-2.8.10-rc3-IRIX64-64.tar.gz2012-10-24 15:10 12M 
    [TXT]cmake-2.8.10-rc3-IRIX64-n32.sh2012-10-24 15:10 12M 
    [   ]cmake-2.8.10-rc3-IRIX64-n32.tar.Z2012-10-24 15:10 17M 
    [   ]cmake-2.8.10-rc3-IRIX64-n32.tar.gz2012-10-24 15:10 12M 
    [TXT]cmake-2.8.10-rc3-Linux-i386.sh2012-10-24 15:10 22M 
    [   ]cmake-2.8.10-rc3-Linux-i386.tar.Z2012-10-24 15:10 30M 
    [   ]cmake-2.8.10-rc3-Linux-i386.tar.gz2012-10-24 15:10 22M 
    [TXT]cmake-2.8.10-rc3-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.10-rc3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.10-rc3-win32-x86.exe2012-10-24 15:10 9.6M 
    [   ]cmake-2.8.10-rc3-win32-x86.zip2012-10-24 15:09 12M 
    [   ]cmake-2.8.10-rc3.tar.Z2012-10-24 15:09 8.7M 
    [   ]cmake-2.8.10-rc3.tar.gz2012-10-24 15:09 5.5M 
    [   ]cmake-2.8.10-rc3.zip2012-10-24 15:09 7.4M 
    [   ]cmake-2.8.10-win32-x86.exe2012-10-31 13:04 9.6M 
    [   ]cmake-2.8.10-win32-x86.zip2012-10-31 13:04 12M 
    [TXT]cmake-2.8.10.1-AIX-powerpc.sh2012-11-07 11:48 20M 
    [   ]cmake-2.8.10.1-AIX-powerpc.tar.Z2012-11-07 11:48 28M 
    [   ]cmake-2.8.10.1-AIX-powerpc.tar.gz2012-11-07 11:48 20M 
    [   ]cmake-2.8.10.1-Darwin-universal.dmg2012-11-07 11:48 41M 
    [   ]cmake-2.8.10.1-Darwin-universal.tar.Z2012-11-07 11:48 58M 
    [   ]cmake-2.8.10.1-Darwin-universal.tar.gz2012-11-07 11:48 41M 
    [   ]cmake-2.8.10.1-Darwin64-universal.dmg2012-11-07 11:48 38M 
    [   ]cmake-2.8.10.1-Darwin64-universal.tar.Z2012-11-07 11:48 53M 
    [   ]cmake-2.8.10.1-Darwin64-universal.tar.gz2012-11-07 11:48 38M 
    [TXT]cmake-2.8.10.1-IRIX64-64.sh2012-11-07 11:48 12M 
    [   ]cmake-2.8.10.1-IRIX64-64.tar.Z2012-11-07 11:48 18M 
    [   ]cmake-2.8.10.1-IRIX64-64.tar.gz2012-11-07 11:48 12M 
    [TXT]cmake-2.8.10.1-IRIX64-n32.sh2012-11-07 11:47 12M 
    [   ]cmake-2.8.10.1-IRIX64-n32.tar.Z2012-11-07 11:47 17M 
    [   ]cmake-2.8.10.1-IRIX64-n32.tar.gz2012-11-07 11:47 12M 
    [TXT]cmake-2.8.10.1-Linux-i386.sh2012-11-07 11:47 22M 
    [   ]cmake-2.8.10.1-Linux-i386.tar.Z2012-11-07 11:47 30M 
    [   ]cmake-2.8.10.1-Linux-i386.tar.gz2012-11-07 11:47 22M 
    [TXT]cmake-2.8.10.1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.10.1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.10.1-win32-x86.exe2012-11-07 11:47 9.6M 
    [   ]cmake-2.8.10.1-win32-x86.zip2012-11-07 11:47 12M 
    [   ]cmake-2.8.10.1.tar.Z2012-11-07 11:47 8.6M 
    [   ]cmake-2.8.10.1.tar.gz2012-11-07 11:47 5.5M 
    [   ]cmake-2.8.10.1.zip2012-11-07 11:47 7.4M 
    [TXT]cmake-2.8.10.2-AIX-powerpc.sh2012-11-27 15:05 20M 
    [   ]cmake-2.8.10.2-AIX-powerpc.tar.Z2012-11-27 15:05 28M 
    [   ]cmake-2.8.10.2-AIX-powerpc.tar.gz2012-11-27 15:04 20M 
    [   ]cmake-2.8.10.2-Darwin-universal.dmg2012-11-27 15:04 41M 
    [   ]cmake-2.8.10.2-Darwin-universal.tar.Z2012-11-27 15:04 58M 
    [   ]cmake-2.8.10.2-Darwin-universal.tar.gz2012-11-27 15:04 41M 
    [   ]cmake-2.8.10.2-Darwin64-universal.dmg2012-11-27 15:04 38M 
    [   ]cmake-2.8.10.2-Darwin64-universal.tar.Z2012-11-27 15:04 53M 
    [   ]cmake-2.8.10.2-Darwin64-universal.tar.gz2012-11-27 15:04 38M 
    [TXT]cmake-2.8.10.2-IRIX64-64.sh2012-11-27 15:04 12M 
    [   ]cmake-2.8.10.2-IRIX64-64.tar.Z2012-11-27 15:04 18M 
    [   ]cmake-2.8.10.2-IRIX64-64.tar.gz2012-11-27 15:04 12M 
    [TXT]cmake-2.8.10.2-IRIX64-n32.sh2012-11-27 15:04 12M 
    [   ]cmake-2.8.10.2-IRIX64-n32.tar.Z2012-11-27 15:04 17M 
    [   ]cmake-2.8.10.2-IRIX64-n32.tar.gz2012-11-27 15:04 12M 
    [TXT]cmake-2.8.10.2-Linux-i386.sh2012-11-27 15:04 22M 
    [   ]cmake-2.8.10.2-Linux-i386.tar.Z2012-11-27 15:04 30M 
    [   ]cmake-2.8.10.2-Linux-i386.tar.gz2012-11-27 15:04 22M 
    [TXT]cmake-2.8.10.2-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.10.2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.10.2-win32-x86.exe2012-11-27 15:04 9.6M 
    [   ]cmake-2.8.10.2-win32-x86.zip2012-11-27 15:03 12M 
    [   ]cmake-2.8.10.2.tar.Z2012-11-27 15:03 8.7M 
    [   ]cmake-2.8.10.2.tar.gz2012-11-27 15:03 5.5M 
    [   ]cmake-2.8.10.2.zip2012-11-27 15:03 7.4M 
    [   ]cmake-2.8.10.tar.Z2012-10-31 13:03 8.7M 
    [   ]cmake-2.8.10.tar.gz2012-10-31 13:03 5.5M 
    [   ]cmake-2.8.10.zip2012-10-31 13:03 7.4M 
    [TXT]cmake-2.8.11-AIX-powerpc.sh2013-06-07 14:42 21M 
    [   ]cmake-2.8.11-AIX-powerpc.tar.Z2013-06-07 14:42 30M 
    [   ]cmake-2.8.11-AIX-powerpc.tar.gz2013-06-07 14:42 21M 
    [   ]cmake-2.8.11-Darwin-universal.dmg2013-05-15 15:54 42M 
    [   ]cmake-2.8.11-Darwin-universal.tar.Z2013-05-15 15:54 59M 
    [   ]cmake-2.8.11-Darwin-universal.tar.gz2013-05-15 15:54 42M 
    [   ]cmake-2.8.11-Darwin64-universal.dmg2013-05-15 15:54 39M 
    [   ]cmake-2.8.11-Darwin64-universal.tar.Z2013-05-15 15:54 55M 
    [   ]cmake-2.8.11-Darwin64-universal.tar.gz2013-05-15 15:54 39M 
    [TXT]cmake-2.8.11-IRIX64-64.sh2013-05-15 15:53 13M 
    [   ]cmake-2.8.11-IRIX64-64.tar.Z2013-05-15 15:53 19M 
    [   ]cmake-2.8.11-IRIX64-64.tar.gz2013-05-15 15:53 13M 
    [TXT]cmake-2.8.11-IRIX64-n32.sh2013-05-15 15:53 12M 
    [   ]cmake-2.8.11-IRIX64-n32.tar.Z2013-05-15 15:53 18M 
    [   ]cmake-2.8.11-IRIX64-n32.tar.gz2013-05-15 15:53 12M 
    [TXT]cmake-2.8.11-Linux-i386.sh2013-05-15 15:53 23M 
    [   ]cmake-2.8.11-Linux-i386.tar.Z2013-05-15 15:53 31M 
    [   ]cmake-2.8.11-Linux-i386.tar.gz2013-05-15 15:53 23M 
    [TXT]cmake-2.8.11-SHA-256.txt2016-04-13 12:48 2.4K 
    [TXT]cmake-2.8.11-SHA-256.txt.asc2016-04-13 12:48 819  
    [TXT]cmake-2.8.11-rc1-AIX-powerpc.sh2013-03-14 17:16 21M 
    [   ]cmake-2.8.11-rc1-AIX-powerpc.tar.Z2013-03-14 17:16 30M 
    [   ]cmake-2.8.11-rc1-AIX-powerpc.tar.gz2013-03-14 17:16 21M 
    [   ]cmake-2.8.11-rc1-Darwin-universal.dmg2013-03-14 17:16 42M 
    [   ]cmake-2.8.11-rc1-Darwin-universal.tar.Z2013-03-14 17:16 59M 
    [   ]cmake-2.8.11-rc1-Darwin-universal.tar.gz2013-03-14 17:16 41M 
    [   ]cmake-2.8.11-rc1-Darwin64-universal.dmg2013-03-14 17:15 39M 
    [   ]cmake-2.8.11-rc1-Darwin64-universal.tar.Z2013-03-14 17:15 55M 
    [   ]cmake-2.8.11-rc1-Darwin64-universal.tar.gz2013-03-14 17:15 39M 
    [TXT]cmake-2.8.11-rc1-IRIX64-64.sh2013-03-14 17:15 13M 
    [   ]cmake-2.8.11-rc1-IRIX64-64.tar.Z2013-03-14 17:15 19M 
    [   ]cmake-2.8.11-rc1-IRIX64-64.tar.gz2013-03-14 17:15 13M 
    [TXT]cmake-2.8.11-rc1-IRIX64-n32.sh2013-03-14 17:15 12M 
    [   ]cmake-2.8.11-rc1-IRIX64-n32.tar.Z2013-03-14 17:15 18M 
    [   ]cmake-2.8.11-rc1-IRIX64-n32.tar.gz2013-03-14 17:15 12M 
    [TXT]cmake-2.8.11-rc1-Linux-i386.sh2013-03-14 17:15 23M 
    [   ]cmake-2.8.11-rc1-Linux-i386.tar.Z2013-03-14 17:15 31M 
    [   ]cmake-2.8.11-rc1-Linux-i386.tar.gz2013-03-14 17:15 23M 
    [TXT]cmake-2.8.11-rc1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.11-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.11-rc1-win32-x86.exe2013-03-14 17:15 9.9M 
    [   ]cmake-2.8.11-rc1-win32-x86.zip2013-03-14 17:14 12M 
    [   ]cmake-2.8.11-rc1.tar.Z2013-03-14 17:14 8.8M 
    [   ]cmake-2.8.11-rc1.tar.gz2013-03-14 17:14 5.6M 
    [   ]cmake-2.8.11-rc1.zip2013-03-14 17:14 7.6M 
    [TXT]cmake-2.8.11-rc2-AIX-powerpc.sh2013-04-05 18:01 21M 
    [   ]cmake-2.8.11-rc2-AIX-powerpc.tar.Z2013-04-05 18:01 30M 
    [   ]cmake-2.8.11-rc2-AIX-powerpc.tar.gz2013-04-05 18:01 21M 
    [   ]cmake-2.8.11-rc2-Darwin-universal.dmg2013-04-05 18:01 42M 
    [   ]cmake-2.8.11-rc2-Darwin-universal.tar.Z2013-04-05 18:01 59M 
    [   ]cmake-2.8.11-rc2-Darwin-universal.tar.gz2013-04-05 18:01 42M 
    [   ]cmake-2.8.11-rc2-Darwin64-universal.dmg2013-04-05 18:01 39M 
    [   ]cmake-2.8.11-rc2-Darwin64-universal.tar.Z2013-04-05 18:01 55M 
    [   ]cmake-2.8.11-rc2-Darwin64-universal.tar.gz2013-04-05 18:01 39M 
    [TXT]cmake-2.8.11-rc2-IRIX64-64.sh2013-04-05 18:01 13M 
    [   ]cmake-2.8.11-rc2-IRIX64-64.tar.Z2013-04-05 18:01 19M 
    [   ]cmake-2.8.11-rc2-IRIX64-64.tar.gz2013-04-05 18:01 13M 
    [TXT]cmake-2.8.11-rc2-IRIX64-n32.sh2013-04-05 18:01 12M 
    [   ]cmake-2.8.11-rc2-IRIX64-n32.tar.Z2013-04-05 18:01 18M 
    [   ]cmake-2.8.11-rc2-IRIX64-n32.tar.gz2013-04-05 18:00 12M 
    [TXT]cmake-2.8.11-rc2-Linux-i386.sh2013-04-05 18:00 23M 
    [   ]cmake-2.8.11-rc2-Linux-i386.tar.Z2013-04-05 18:00 31M 
    [   ]cmake-2.8.11-rc2-Linux-i386.tar.gz2013-04-05 18:00 23M 
    [TXT]cmake-2.8.11-rc2-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.11-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.11-rc2-win32-x86.exe2013-04-05 18:00 9.9M 
    [   ]cmake-2.8.11-rc2-win32-x86.zip2013-04-05 18:00 12M 
    [   ]cmake-2.8.11-rc2.tar.Z2013-04-05 18:00 8.8M 
    [   ]cmake-2.8.11-rc2.tar.gz2013-04-05 18:00 5.6M 
    [   ]cmake-2.8.11-rc2.zip2013-04-05 18:00 7.6M 
    [TXT]cmake-2.8.11-rc3-AIX-powerpc.sh2013-04-18 17:33 21M 
    [   ]cmake-2.8.11-rc3-AIX-powerpc.tar.Z2013-04-18 17:33 30M 
    [   ]cmake-2.8.11-rc3-AIX-powerpc.tar.gz2013-04-18 17:33 21M 
    [   ]cmake-2.8.11-rc3-Darwin-universal.dmg2013-04-18 17:33 42M 
    [   ]cmake-2.8.11-rc3-Darwin-universal.tar.Z2013-04-18 17:33 59M 
    [   ]cmake-2.8.11-rc3-Darwin-universal.tar.gz2013-04-18 17:33 42M 
    [   ]cmake-2.8.11-rc3-Darwin64-universal.dmg2013-04-18 17:33 39M 
    [   ]cmake-2.8.11-rc3-Darwin64-universal.tar.Z2013-04-18 17:33 55M 
    [   ]cmake-2.8.11-rc3-Darwin64-universal.tar.gz2013-04-18 17:33 39M 
    [TXT]cmake-2.8.11-rc3-IRIX64-64.sh2013-04-18 17:33 13M 
    [   ]cmake-2.8.11-rc3-IRIX64-64.tar.Z2013-04-18 17:33 19M 
    [   ]cmake-2.8.11-rc3-IRIX64-64.tar.gz2013-04-18 17:33 13M 
    [TXT]cmake-2.8.11-rc3-IRIX64-n32.sh2013-04-18 17:33 12M 
    [   ]cmake-2.8.11-rc3-IRIX64-n32.tar.Z2013-04-18 17:33 18M 
    [   ]cmake-2.8.11-rc3-IRIX64-n32.tar.gz2013-04-18 17:33 12M 
    [TXT]cmake-2.8.11-rc3-Linux-i386.sh2013-04-18 17:32 23M 
    [   ]cmake-2.8.11-rc3-Linux-i386.tar.Z2013-04-18 17:32 31M 
    [   ]cmake-2.8.11-rc3-Linux-i386.tar.gz2013-04-18 17:32 23M 
    [TXT]cmake-2.8.11-rc3-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.11-rc3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.11-rc3-win32-x86.exe2013-04-18 17:32 9.9M 
    [   ]cmake-2.8.11-rc3-win32-x86.zip2013-04-18 17:32 12M 
    [   ]cmake-2.8.11-rc3.tar.Z2013-04-18 17:32 8.8M 
    [   ]cmake-2.8.11-rc3.tar.gz2013-04-18 17:32 5.6M 
    [   ]cmake-2.8.11-rc3.zip2013-04-18 17:32 7.6M 
    [TXT]cmake-2.8.11-rc4-AIX-powerpc.sh2013-05-08 09:54 21M 
    [   ]cmake-2.8.11-rc4-AIX-powerpc.tar.Z2013-05-08 09:54 30M 
    [   ]cmake-2.8.11-rc4-AIX-powerpc.tar.gz2013-05-08 09:54 21M 
    [   ]cmake-2.8.11-rc4-Darwin-universal.dmg2013-05-08 09:54 42M 
    [   ]cmake-2.8.11-rc4-Darwin-universal.tar.Z2013-05-08 09:54 59M 
    [   ]cmake-2.8.11-rc4-Darwin-universal.tar.gz2013-05-08 09:54 42M 
    [   ]cmake-2.8.11-rc4-Darwin64-universal.dmg2013-05-08 09:54 39M 
    [   ]cmake-2.8.11-rc4-Darwin64-universal.tar.Z2013-05-08 09:54 55M 
    [   ]cmake-2.8.11-rc4-Darwin64-universal.tar.gz2013-05-08 09:54 39M 
    [TXT]cmake-2.8.11-rc4-IRIX64-64.sh2013-05-08 09:54 13M 
    [   ]cmake-2.8.11-rc4-IRIX64-64.tar.Z2013-05-08 09:54 19M 
    [   ]cmake-2.8.11-rc4-IRIX64-64.tar.gz2013-05-08 09:53 13M 
    [TXT]cmake-2.8.11-rc4-IRIX64-n32.sh2013-05-08 09:53 12M 
    [   ]cmake-2.8.11-rc4-IRIX64-n32.tar.Z2013-05-08 09:53 18M 
    [   ]cmake-2.8.11-rc4-IRIX64-n32.tar.gz2013-05-08 09:53 12M 
    [TXT]cmake-2.8.11-rc4-Linux-i386.sh2013-05-08 09:53 23M 
    [   ]cmake-2.8.11-rc4-Linux-i386.tar.Z2013-05-08 09:53 31M 
    [   ]cmake-2.8.11-rc4-Linux-i386.tar.gz2013-05-08 09:53 23M 
    [TXT]cmake-2.8.11-rc4-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.11-rc4-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.11-rc4-win32-x86.exe2013-05-08 09:53 9.9M 
    [   ]cmake-2.8.11-rc4-win32-x86.zip2013-05-08 09:53 12M 
    [   ]cmake-2.8.11-rc4.tar.Z2013-05-08 09:53 8.9M 
    [   ]cmake-2.8.11-rc4.tar.gz2013-05-08 09:53 5.6M 
    [   ]cmake-2.8.11-rc4.zip2013-05-08 09:53 7.6M 
    [   ]cmake-2.8.11-win32-x86.exe2013-05-15 15:53 9.9M 
    [   ]cmake-2.8.11-win32-x86.zip2013-05-15 15:53 12M 
    [TXT]cmake-2.8.11.1-AIX-powerpc.sh2013-06-07 14:41 21M 
    [   ]cmake-2.8.11.1-AIX-powerpc.tar.Z2013-06-07 14:41 30M 
    [   ]cmake-2.8.11.1-AIX-powerpc.tar.gz2013-06-07 14:41 21M 
    [   ]cmake-2.8.11.1-Darwin-universal.dmg2013-06-07 14:41 42M 
    [   ]cmake-2.8.11.1-Darwin-universal.tar.Z2013-06-07 14:41 59M 
    [   ]cmake-2.8.11.1-Darwin-universal.tar.gz2013-06-07 14:41 42M 
    [   ]cmake-2.8.11.1-Darwin64-universal.dmg2013-06-07 14:41 39M 
    [   ]cmake-2.8.11.1-Darwin64-universal.tar.Z2013-06-07 14:41 55M 
    [   ]cmake-2.8.11.1-Darwin64-universal.tar.gz2013-06-07 14:41 39M 
    [TXT]cmake-2.8.11.1-IRIX64-64.sh2013-06-07 14:41 13M 
    [   ]cmake-2.8.11.1-IRIX64-64.tar.Z2013-06-07 14:41 19M 
    [   ]cmake-2.8.11.1-IRIX64-64.tar.gz2013-06-07 14:41 13M 
    [TXT]cmake-2.8.11.1-IRIX64-n32.sh2013-06-07 14:41 12M 
    [   ]cmake-2.8.11.1-IRIX64-n32.tar.Z2013-06-07 14:41 18M 
    [   ]cmake-2.8.11.1-IRIX64-n32.tar.gz2013-06-07 14:41 12M 
    [TXT]cmake-2.8.11.1-Linux-i386.sh2013-06-07 14:41 23M 
    [   ]cmake-2.8.11.1-Linux-i386.tar.Z2013-06-07 14:40 31M 
    [   ]cmake-2.8.11.1-Linux-i386.tar.gz2013-06-07 14:40 23M 
    [TXT]cmake-2.8.11.1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.11.1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.11.1-win32-x86.exe2013-06-07 14:40 9.9M 
    [   ]cmake-2.8.11.1-win32-x86.zip2013-06-07 14:40 12M 
    [   ]cmake-2.8.11.1.tar.Z2013-06-07 14:40 8.9M 
    [   ]cmake-2.8.11.1.tar.gz2013-06-07 14:40 5.6M 
    [   ]cmake-2.8.11.1.zip2013-06-07 14:40 7.6M 
    [TXT]cmake-2.8.11.2-AIX-powerpc.sh2013-07-03 11:53 21M 
    [   ]cmake-2.8.11.2-AIX-powerpc.tar.Z2013-07-03 11:53 30M 
    [   ]cmake-2.8.11.2-AIX-powerpc.tar.gz2013-07-03 11:53 21M 
    [   ]cmake-2.8.11.2-Darwin-universal.dmg2013-07-03 11:53 42M 
    [   ]cmake-2.8.11.2-Darwin-universal.tar.Z2013-07-03 11:53 59M 
    [   ]cmake-2.8.11.2-Darwin-universal.tar.gz2013-07-03 11:53 42M 
    [   ]cmake-2.8.11.2-Darwin64-universal.dmg2013-07-03 11:53 39M 
    [   ]cmake-2.8.11.2-Darwin64-universal.tar.Z2013-07-03 11:53 55M 
    [   ]cmake-2.8.11.2-Darwin64-universal.tar.gz2013-07-03 11:53 39M 
    [TXT]cmake-2.8.11.2-IRIX64-64.sh2013-07-03 11:53 13M 
    [   ]cmake-2.8.11.2-IRIX64-64.tar.Z2013-07-03 11:53 19M 
    [   ]cmake-2.8.11.2-IRIX64-64.tar.gz2013-07-03 11:52 13M 
    [TXT]cmake-2.8.11.2-IRIX64-n32.sh2013-07-03 11:52 12M 
    [   ]cmake-2.8.11.2-IRIX64-n32.tar.Z2013-07-03 11:52 18M 
    [   ]cmake-2.8.11.2-IRIX64-n32.tar.gz2013-07-03 11:52 12M 
    [TXT]cmake-2.8.11.2-Linux-i386.sh2013-07-03 11:52 23M 
    [   ]cmake-2.8.11.2-Linux-i386.tar.Z2013-07-03 11:52 31M 
    [   ]cmake-2.8.11.2-Linux-i386.tar.gz2013-07-03 11:52 23M 
    [TXT]cmake-2.8.11.2-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.11.2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.11.2-win32-x86.exe2013-07-03 11:52 9.9M 
    [   ]cmake-2.8.11.2-win32-x86.zip2013-07-03 11:52 12M 
    [   ]cmake-2.8.11.2.tar.Z2013-07-03 11:52 8.9M 
    [   ]cmake-2.8.11.2.tar.gz2013-07-03 11:52 5.6M 
    [   ]cmake-2.8.11.2.zip2013-07-03 11:52 7.6M 
    [   ]cmake-2.8.11.tar.Z2013-05-15 15:53 8.9M 
    [   ]cmake-2.8.11.tar.gz2013-05-15 15:53 5.6M 
    [   ]cmake-2.8.11.zip2013-05-15 15:53 7.6M 
    [TXT]cmake-2.8.12-AIX-powerpc.sh2013-10-07 14:34 22M 
    [   ]cmake-2.8.12-AIX-powerpc.tar.Z2013-10-07 14:34 32M 
    [   ]cmake-2.8.12-AIX-powerpc.tar.gz2013-10-07 14:34 22M 
    [   ]cmake-2.8.12-Darwin-universal.dmg2013-10-07 14:34 43M 
    [   ]cmake-2.8.12-Darwin-universal.tar.Z2013-10-07 14:33 61M 
    [   ]cmake-2.8.12-Darwin-universal.tar.gz2013-10-07 14:33 43M 
    [   ]cmake-2.8.12-Darwin64-universal.dmg2013-10-07 14:33 41M 
    [   ]cmake-2.8.12-Darwin64-universal.tar.Z2013-10-07 14:33 57M 
    [   ]cmake-2.8.12-Darwin64-universal.tar.gz2013-10-07 14:33 40M 
    [TXT]cmake-2.8.12-IRIX64-64.sh2013-10-07 14:33 13M 
    [   ]cmake-2.8.12-IRIX64-64.tar.Z2013-10-07 14:33 20M 
    [   ]cmake-2.8.12-IRIX64-64.tar.gz2013-10-07 14:33 13M 
    [TXT]cmake-2.8.12-IRIX64-n32.sh2013-10-07 14:33 13M 
    [   ]cmake-2.8.12-IRIX64-n32.tar.Z2013-10-07 14:33 19M 
    [   ]cmake-2.8.12-IRIX64-n32.tar.gz2013-10-07 14:33 13M 
    [TXT]cmake-2.8.12-Linux-i386.sh2013-10-07 14:33 24M 
    [   ]cmake-2.8.12-Linux-i386.tar.Z2013-10-07 14:33 33M 
    [   ]cmake-2.8.12-Linux-i386.tar.gz2013-10-07 14:33 24M 
    [TXT]cmake-2.8.12-SHA-256.txt2016-04-13 12:48 2.1K 
    [TXT]cmake-2.8.12-SHA-256.txt.asc2016-04-13 12:48 819  
    [TXT]cmake-2.8.12-rc1-AIX-powerpc.sh2013-08-19 08:54 22M 
    [   ]cmake-2.8.12-rc1-AIX-powerpc.tar.Z2013-08-19 08:54 32M 
    [   ]cmake-2.8.12-rc1-AIX-powerpc.tar.gz2013-08-19 08:54 22M 
    [   ]cmake-2.8.12-rc1-Darwin-universal.dmg2013-08-19 08:54 43M 
    [   ]cmake-2.8.12-rc1-Darwin-universal.tar.Z2013-08-19 08:53 61M 
    [   ]cmake-2.8.12-rc1-Darwin-universal.tar.gz2013-08-19 08:53 43M 
    [   ]cmake-2.8.12-rc1-Darwin64-universal.dmg2013-08-19 08:53 40M 
    [   ]cmake-2.8.12-rc1-Darwin64-universal.tar.Z2013-08-19 08:53 57M 
    [   ]cmake-2.8.12-rc1-Darwin64-universal.tar.gz2013-08-19 08:53 40M 
    [TXT]cmake-2.8.12-rc1-IRIX64-64.sh2013-08-19 08:53 13M 
    [   ]cmake-2.8.12-rc1-IRIX64-64.tar.Z2013-08-19 08:53 20M 
    [   ]cmake-2.8.12-rc1-IRIX64-64.tar.gz2013-08-19 08:53 13M 
    [TXT]cmake-2.8.12-rc1-IRIX64-n32.sh2013-08-19 08:53 13M 
    [   ]cmake-2.8.12-rc1-IRIX64-n32.tar.Z2013-08-19 08:53 19M 
    [   ]cmake-2.8.12-rc1-IRIX64-n32.tar.gz2013-08-19 08:53 13M 
    [TXT]cmake-2.8.12-rc1-Linux-i386.sh2013-08-19 08:52 24M 
    [   ]cmake-2.8.12-rc1-Linux-i386.tar.Z2013-08-19 08:52 33M 
    [   ]cmake-2.8.12-rc1-Linux-i386.tar.gz2013-08-19 08:52 24M 
    [TXT]cmake-2.8.12-rc1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.12-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.12-rc1-win32-x86.exe2013-08-19 08:52 10M 
    [   ]cmake-2.8.12-rc1-win32-x86.zip2013-08-19 08:52 13M 
    [   ]cmake-2.8.12-rc1.tar.Z2013-08-19 08:52 9.1M 
    [   ]cmake-2.8.12-rc1.tar.gz2013-08-19 08:52 5.8M 
    [   ]cmake-2.8.12-rc1.zip2013-08-19 08:52 8.0M 
    [TXT]cmake-2.8.12-rc2-AIX-powerpc.sh2013-08-30 15:59 22M 
    [   ]cmake-2.8.12-rc2-AIX-powerpc.tar.Z2013-08-30 15:59 32M 
    [   ]cmake-2.8.12-rc2-AIX-powerpc.tar.gz2013-08-30 15:59 22M 
    [   ]cmake-2.8.12-rc2-Darwin-universal.dmg2013-08-30 15:59 43M 
    [   ]cmake-2.8.12-rc2-Darwin-universal.tar.Z2013-08-30 15:59 61M 
    [   ]cmake-2.8.12-rc2-Darwin-universal.tar.gz2013-08-30 15:59 43M 
    [   ]cmake-2.8.12-rc2-Darwin64-universal.dmg2013-08-30 15:59 40M 
    [   ]cmake-2.8.12-rc2-Darwin64-universal.tar.Z2013-08-30 15:59 57M 
    [   ]cmake-2.8.12-rc2-Darwin64-universal.tar.gz2013-08-30 15:58 40M 
    [   ]cmake-2.8.12-rc2-IRIX64-64.tar.Z2013-08-30 15:58 20M 
    [   ]cmake-2.8.12-rc2-IRIX64-64.tar.gz2013-08-30 15:58 13M 
    [TXT]cmake-2.8.12-rc2-IRIX64-n32.sh2013-08-30 15:58 13M 
    [   ]cmake-2.8.12-rc2-IRIX64-n32.tar.Z2013-08-30 15:58 19M 
    [   ]cmake-2.8.12-rc2-IRIX64-n32.tar.gz2013-08-30 15:58 13M 
    [TXT]cmake-2.8.12-rc2-Linux-i386.sh2013-08-30 15:58 24M 
    [   ]cmake-2.8.12-rc2-Linux-i386.tar.Z2013-08-30 15:58 33M 
    [   ]cmake-2.8.12-rc2-Linux-i386.tar.gz2013-08-30 15:58 24M 
    [TXT]cmake-2.8.12-rc2-SHA-256.txt2016-04-13 12:48 2.1K 
    [TXT]cmake-2.8.12-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.12-rc2-win32-x86.exe2013-08-30 15:58 10M 
    [   ]cmake-2.8.12-rc2-win32-x86.zip2013-08-30 15:58 13M 
    [   ]cmake-2.8.12-rc2.tar.Z2013-08-30 15:58 9.2M 
    [   ]cmake-2.8.12-rc2.tar.gz2013-08-30 15:58 5.8M 
    [   ]cmake-2.8.12-rc2.zip2013-08-30 15:58 8.0M 
    [TXT]cmake-2.8.12-rc3-AIX-powerpc.sh2013-09-10 15:39 22M 
    [   ]cmake-2.8.12-rc3-AIX-powerpc.tar.Z2013-09-10 15:39 32M 
    [   ]cmake-2.8.12-rc3-AIX-powerpc.tar.gz2013-09-10 15:39 22M 
    [   ]cmake-2.8.12-rc3-Darwin-universal.dmg2013-09-10 15:39 43M 
    [   ]cmake-2.8.12-rc3-Darwin-universal.tar.Z2013-09-10 15:39 61M 
    [   ]cmake-2.8.12-rc3-Darwin-universal.tar.gz2013-09-10 15:39 43M 
    [   ]cmake-2.8.12-rc3-Darwin64-universal.dmg2013-09-10 15:39 41M 
    [   ]cmake-2.8.12-rc3-Darwin64-universal.tar.Z2013-09-10 15:39 57M 
    [   ]cmake-2.8.12-rc3-Darwin64-universal.tar.gz2013-09-10 15:39 40M 
    [TXT]cmake-2.8.12-rc3-Linux-i386.sh2013-09-10 15:39 24M 
    [   ]cmake-2.8.12-rc3-Linux-i386.tar.Z2013-09-10 15:39 33M 
    [   ]cmake-2.8.12-rc3-Linux-i386.tar.gz2013-09-10 15:39 24M 
    [TXT]cmake-2.8.12-rc3-SHA-256.txt2016-04-13 12:48 1.7K 
    [TXT]cmake-2.8.12-rc3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.12-rc3-win32-x86.exe2013-09-10 15:39 10M 
    [   ]cmake-2.8.12-rc3-win32-x86.zip2013-09-10 15:38 13M 
    [   ]cmake-2.8.12-rc3.tar.Z2013-09-10 15:38 9.1M 
    [   ]cmake-2.8.12-rc3.tar.gz2013-09-10 15:38 5.8M 
    [   ]cmake-2.8.12-rc3.zip2013-09-10 15:38 8.0M 
    [TXT]cmake-2.8.12-rc4-AIX-powerpc.sh2013-10-01 16:23 22M 
    [   ]cmake-2.8.12-rc4-AIX-powerpc.tar.Z2013-10-01 16:23 32M 
    [   ]cmake-2.8.12-rc4-AIX-powerpc.tar.gz2013-10-01 16:23 22M 
    [   ]cmake-2.8.12-rc4-Darwin-universal.dmg2013-10-01 16:23 43M 
    [   ]cmake-2.8.12-rc4-Darwin-universal.tar.Z2013-10-01 16:23 61M 
    [   ]cmake-2.8.12-rc4-Darwin-universal.tar.gz2013-10-01 16:23 43M 
    [   ]cmake-2.8.12-rc4-Darwin64-universal.dmg2013-10-01 16:23 40M 
    [   ]cmake-2.8.12-rc4-Darwin64-universal.tar.Z2013-10-01 16:23 57M 
    [   ]cmake-2.8.12-rc4-Darwin64-universal.tar.gz2013-10-01 16:23 40M 
    [TXT]cmake-2.8.12-rc4-IRIX64-64.sh2013-10-01 16:23 13M 
    [   ]cmake-2.8.12-rc4-IRIX64-64.tar.Z2013-10-01 16:23 20M 
    [   ]cmake-2.8.12-rc4-IRIX64-64.tar.gz2013-10-01 16:23 13M 
    [TXT]cmake-2.8.12-rc4-IRIX64-n32.sh2013-10-01 16:23 13M 
    [   ]cmake-2.8.12-rc4-IRIX64-n32.tar.Z2013-10-01 16:23 19M 
    [   ]cmake-2.8.12-rc4-IRIX64-n32.tar.gz2013-10-01 16:23 13M 
    [TXT]cmake-2.8.12-rc4-Linux-i386.sh2013-10-01 16:23 24M 
    [   ]cmake-2.8.12-rc4-Linux-i386.tar.Z2013-10-01 16:23 33M 
    [   ]cmake-2.8.12-rc4-Linux-i386.tar.gz2013-10-01 16:23 24M 
    [TXT]cmake-2.8.12-rc4-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.12-rc4-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.12-rc4-win32-x86.exe2013-10-01 16:22 10M 
    [   ]cmake-2.8.12-rc4-win32-x86.zip2013-10-01 16:22 13M 
    [   ]cmake-2.8.12-rc4.tar.Z2013-10-01 16:22 9.1M 
    [   ]cmake-2.8.12-rc4.tar.gz2013-10-01 16:22 5.8M 
    [   ]cmake-2.8.12-rc4.zip2013-10-01 16:22 8.0M 
    [   ]cmake-2.8.12-win32-x86.exe2013-10-07 14:33 10M 
    [   ]cmake-2.8.12-win32-x86.zip2013-10-07 14:33 13M 
    [TXT]cmake-2.8.12.1-AIX-powerpc.sh2013-11-06 10:48 22M 
    [   ]cmake-2.8.12.1-AIX-powerpc.tar.Z2013-11-06 10:47 32M 
    [   ]cmake-2.8.12.1-AIX-powerpc.tar.gz2013-11-06 10:47 22M 
    [   ]cmake-2.8.12.1-Darwin-universal.dmg2013-11-06 10:47 43M 
    [   ]cmake-2.8.12.1-Darwin-universal.tar.Z2013-11-06 10:47 61M 
    [   ]cmake-2.8.12.1-Darwin-universal.tar.gz2013-11-06 10:47 43M 
    [   ]cmake-2.8.12.1-Darwin64-universal.dmg2013-11-06 10:47 41M 
    [   ]cmake-2.8.12.1-Darwin64-universal.tar.Z2013-11-06 10:46 57M 
    [   ]cmake-2.8.12.1-Darwin64-universal.tar.gz2013-11-06 10:46 41M 
    [TXT]cmake-2.8.12.1-IRIX64-64.sh2013-11-06 10:46 13M 
    [   ]cmake-2.8.12.1-IRIX64-64.tar.Z2013-11-06 10:46 20M 
    [   ]cmake-2.8.12.1-IRIX64-64.tar.gz2013-11-06 10:46 13M 
    [TXT]cmake-2.8.12.1-IRIX64-n32.sh2013-11-06 10:46 13M 
    [   ]cmake-2.8.12.1-IRIX64-n32.tar.Z2013-11-06 10:46 19M 
    [   ]cmake-2.8.12.1-IRIX64-n32.tar.gz2013-11-06 10:46 13M 
    [TXT]cmake-2.8.12.1-Linux-i386.sh2013-11-06 10:46 24M 
    [   ]cmake-2.8.12.1-Linux-i386.tar.Z2013-11-06 10:46 33M 
    [   ]cmake-2.8.12.1-Linux-i386.tar.gz2013-11-06 10:46 24M 
    [TXT]cmake-2.8.12.1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.12.1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.12.1-win32-x86.exe2013-11-06 10:46 10M 
    [   ]cmake-2.8.12.1-win32-x86.zip2013-11-06 10:46 13M 
    [   ]cmake-2.8.12.1.tar.Z2013-11-06 10:45 9.1M 
    [   ]cmake-2.8.12.1.tar.gz2013-11-06 10:45 5.8M 
    [   ]cmake-2.8.12.1.zip2013-11-06 10:45 8.0M 
    [TXT]cmake-2.8.12.2-AIX-powerpc.sh2014-01-16 14:49 22M 
    [   ]cmake-2.8.12.2-AIX-powerpc.tar.Z2014-01-16 14:49 32M 
    [   ]cmake-2.8.12.2-AIX-powerpc.tar.gz2014-01-16 14:49 22M 
    [   ]cmake-2.8.12.2-Darwin-universal.dmg2014-01-16 14:48 43M 
    [   ]cmake-2.8.12.2-Darwin-universal.tar.Z2014-01-16 14:48 61M 
    [   ]cmake-2.8.12.2-Darwin-universal.tar.gz2014-01-16 14:48 43M 
    [   ]cmake-2.8.12.2-Darwin64-universal.dmg2014-01-16 14:48 41M 
    [   ]cmake-2.8.12.2-Darwin64-universal.tar.Z2014-01-16 14:48 57M 
    [   ]cmake-2.8.12.2-Darwin64-universal.tar.gz2014-01-16 14:48 41M 
    [TXT]cmake-2.8.12.2-IRIX64-64.sh2014-01-16 14:48 13M 
    [   ]cmake-2.8.12.2-IRIX64-64.tar.Z2014-01-16 14:48 20M 
    [   ]cmake-2.8.12.2-IRIX64-64.tar.gz2014-01-16 14:48 13M 
    [TXT]cmake-2.8.12.2-IRIX64-n32.sh2014-01-16 14:48 13M 
    [   ]cmake-2.8.12.2-IRIX64-n32.tar.Z2014-01-16 14:48 19M 
    [   ]cmake-2.8.12.2-IRIX64-n32.tar.gz2014-01-16 14:48 13M 
    [TXT]cmake-2.8.12.2-Linux-i386.sh2014-01-16 14:48 24M 
    [   ]cmake-2.8.12.2-Linux-i386.tar.Z2014-01-16 14:48 33M 
    [   ]cmake-2.8.12.2-Linux-i386.tar.gz2014-01-16 14:48 24M 
    [TXT]cmake-2.8.12.2-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-2.8.12.2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-2.8.12.2-win32-x86.exe2014-01-16 14:48 10M 
    [   ]cmake-2.8.12.2-win32-x86.zip2014-01-16 14:48 13M 
    [   ]cmake-2.8.12.2.tar.Z2014-01-16 14:48 9.2M 
    [   ]cmake-2.8.12.2.tar.gz2014-01-16 14:48 5.8M 
    [   ]cmake-2.8.12.2.zip2014-01-16 14:48 8.0M 
    [   ]cmake-2.8.12.tar.Z2013-10-07 14:32 9.2M 
    [   ]cmake-2.8.12.tar.gz2013-10-07 14:32 5.8M 
    [   ]cmake-2.8.12.zip2013-10-07 14:32 8.0M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.0/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.0/index.html new file mode 100644 index 0000000..2583dcd --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.0/index.html @@ -0,0 +1,209 @@ + + + + Index of /files/v3.0 + + +

    Index of /files/v3.0

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.0.0-1-src.tar.bz22014-06-10 13:28 4.2M 
    [   ]cmake-3.0.0-1.tar.bz22014-06-10 13:28 8.0M 
    [   ]cmake-3.0.0-Darwin-universal.dmg2014-06-10 13:28 41M 
    [   ]cmake-3.0.0-Darwin-universal.tar.Z2014-06-10 13:27 58M 
    [   ]cmake-3.0.0-Darwin-universal.tar.gz2014-06-10 13:27 41M 
    [   ]cmake-3.0.0-Darwin64-universal.dmg2014-06-10 13:27 39M 
    [   ]cmake-3.0.0-Darwin64-universal.tar.Z2014-06-10 13:27 54M 
    [   ]cmake-3.0.0-Darwin64-universal.tar.gz2014-06-10 13:27 39M 
    [TXT]cmake-3.0.0-Linux-i386.sh2014-06-10 13:27 22M 
    [   ]cmake-3.0.0-Linux-i386.tar.Z2014-06-10 13:27 31M 
    [   ]cmake-3.0.0-Linux-i386.tar.gz2014-06-10 13:27 22M 
    [TXT]cmake-3.0.0-SHA-256.txt2016-04-13 12:48 1.3K 
    [TXT]cmake-3.0.0-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc1-1-src.tar.bz22014-02-28 13:54 4.2M 
    [   ]cmake-3.0.0-rc1-1.tar.bz22014-02-28 13:54 8.0M 
    [TXT]cmake-3.0.0-rc1-AIX-powerpc.sh2014-02-28 13:54 21M 
    [   ]cmake-3.0.0-rc1-AIX-powerpc.tar.Z2014-02-28 13:54 31M 
    [   ]cmake-3.0.0-rc1-AIX-powerpc.tar.gz2014-02-28 13:54 21M 
    [   ]cmake-3.0.0-rc1-Darwin-universal.dmg2014-02-28 13:54 41M 
    [   ]cmake-3.0.0-rc1-Darwin-universal.tar.Z2014-02-28 13:54 58M 
    [   ]cmake-3.0.0-rc1-Darwin-universal.tar.gz2014-02-28 13:54 41M 
    [   ]cmake-3.0.0-rc1-Darwin64-universal.dmg2014-02-28 13:54 39M 
    [   ]cmake-3.0.0-rc1-Darwin64-universal.tar.Z2014-02-28 13:54 54M 
    [   ]cmake-3.0.0-rc1-Darwin64-universal.tar.gz2014-02-28 13:54 39M 
    [TXT]cmake-3.0.0-rc1-IRIX64-64.sh2014-02-28 13:54 13M 
    [   ]cmake-3.0.0-rc1-IRIX64-64.tar.Z2014-02-28 13:54 19M 
    [   ]cmake-3.0.0-rc1-IRIX64-64.tar.gz2014-02-28 13:54 13M 
    [TXT]cmake-3.0.0-rc1-IRIX64-n32.sh2014-02-28 13:54 12M 
    [   ]cmake-3.0.0-rc1-IRIX64-n32.tar.Z2014-02-28 13:54 19M 
    [   ]cmake-3.0.0-rc1-IRIX64-n32.tar.gz2014-02-28 13:54 12M 
    [TXT]cmake-3.0.0-rc1-Linux-i386.sh2014-02-28 13:54 22M 
    [   ]cmake-3.0.0-rc1-Linux-i386.tar.Z2014-02-28 13:54 31M 
    [   ]cmake-3.0.0-rc1-Linux-i386.tar.gz2014-02-28 13:53 22M 
    [TXT]cmake-3.0.0-rc1-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-3.0.0-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc1-win32-x86.exe2014-02-28 13:53 11M 
    [   ]cmake-3.0.0-rc1-win32-x86.zip2014-02-28 13:53 14M 
    [   ]cmake-3.0.0-rc1.tar.Z2014-02-28 13:53 8.5M 
    [   ]cmake-3.0.0-rc1.tar.gz2014-02-28 13:53 5.2M 
    [   ]cmake-3.0.0-rc1.zip2014-02-28 13:53 8.0M 
    [   ]cmake-3.0.0-rc2-1-src.tar.bz22014-03-19 10:29 4.2M 
    [   ]cmake-3.0.0-rc2-1.tar.bz22014-03-19 10:28 8.0M 
    [TXT]cmake-3.0.0-rc2-AIX-powerpc.sh2014-03-19 10:28 21M 
    [   ]cmake-3.0.0-rc2-AIX-powerpc.tar.Z2014-03-19 10:28 31M 
    [   ]cmake-3.0.0-rc2-AIX-powerpc.tar.gz2014-03-19 10:28 21M 
    [   ]cmake-3.0.0-rc2-Darwin-universal.dmg2014-03-19 10:28 41M 
    [   ]cmake-3.0.0-rc2-Darwin-universal.tar.Z2014-03-19 10:28 58M 
    [   ]cmake-3.0.0-rc2-Darwin-universal.tar.gz2014-03-19 10:28 41M 
    [   ]cmake-3.0.0-rc2-Darwin64-universal.dmg2014-03-19 10:28 39M 
    [   ]cmake-3.0.0-rc2-Darwin64-universal.tar.Z2014-03-19 10:28 54M 
    [   ]cmake-3.0.0-rc2-Darwin64-universal.tar.gz2014-03-19 10:28 39M 
    [TXT]cmake-3.0.0-rc2-IRIX64-64.sh2014-03-19 10:28 13M 
    [   ]cmake-3.0.0-rc2-IRIX64-64.tar.Z2014-03-19 10:28 19M 
    [   ]cmake-3.0.0-rc2-IRIX64-64.tar.gz2014-03-19 10:28 13M 
    [TXT]cmake-3.0.0-rc2-IRIX64-n32.sh2014-03-19 10:28 12M 
    [   ]cmake-3.0.0-rc2-IRIX64-n32.tar.Z2014-03-19 10:28 19M 
    [   ]cmake-3.0.0-rc2-IRIX64-n32.tar.gz2014-03-19 10:28 12M 
    [TXT]cmake-3.0.0-rc2-Linux-i386.sh2014-03-19 10:28 22M 
    [   ]cmake-3.0.0-rc2-Linux-i386.tar.Z2014-03-19 10:28 31M 
    [   ]cmake-3.0.0-rc2-Linux-i386.tar.gz2014-03-19 10:28 22M 
    [TXT]cmake-3.0.0-rc2-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-3.0.0-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc2-win32-x86.exe2014-03-19 10:28 11M 
    [   ]cmake-3.0.0-rc2-win32-x86.zip2014-03-19 10:27 14M 
    [   ]cmake-3.0.0-rc2.tar.Z2014-03-19 10:27 8.5M 
    [   ]cmake-3.0.0-rc2.tar.gz2014-03-19 10:27 5.2M 
    [   ]cmake-3.0.0-rc2.zip2014-03-19 10:27 8.0M 
    [   ]cmake-3.0.0-rc3-1-src.tar.bz22014-03-26 13:00 4.2M 
    [   ]cmake-3.0.0-rc3-1.tar.bz22014-03-26 13:00 8.0M 
    [TXT]cmake-3.0.0-rc3-AIX-powerpc.sh2014-03-26 13:00 21M 
    [   ]cmake-3.0.0-rc3-AIX-powerpc.tar.Z2014-03-26 13:00 31M 
    [   ]cmake-3.0.0-rc3-AIX-powerpc.tar.gz2014-03-26 13:00 21M 
    [   ]cmake-3.0.0-rc3-Darwin-universal.dmg2014-03-26 13:00 41M 
    [   ]cmake-3.0.0-rc3-Darwin-universal.tar.Z2014-03-26 13:00 58M 
    [   ]cmake-3.0.0-rc3-Darwin-universal.tar.gz2014-03-26 13:00 41M 
    [   ]cmake-3.0.0-rc3-Darwin64-universal.dmg2014-03-26 12:59 39M 
    [   ]cmake-3.0.0-rc3-Darwin64-universal.tar.Z2014-03-26 12:59 54M 
    [   ]cmake-3.0.0-rc3-Darwin64-universal.tar.gz2014-03-26 12:59 39M 
    [TXT]cmake-3.0.0-rc3-IRIX64-64.sh2014-03-26 12:59 13M 
    [   ]cmake-3.0.0-rc3-IRIX64-64.tar.Z2014-03-26 12:59 19M 
    [   ]cmake-3.0.0-rc3-IRIX64-64.tar.gz2014-03-26 12:59 13M 
    [TXT]cmake-3.0.0-rc3-IRIX64-n32.sh2014-03-26 12:59 12M 
    [   ]cmake-3.0.0-rc3-IRIX64-n32.tar.Z2014-03-26 12:59 19M 
    [   ]cmake-3.0.0-rc3-IRIX64-n32.tar.gz2014-03-26 12:59 12M 
    [TXT]cmake-3.0.0-rc3-SHA-256.txt2016-04-13 12:48 1.9K 
    [TXT]cmake-3.0.0-rc3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc3-win32-x86.exe2014-03-26 12:59 11M 
    [   ]cmake-3.0.0-rc3-win32-x86.zip2014-03-26 12:59 14M 
    [   ]cmake-3.0.0-rc3.tar.Z2014-03-26 12:59 8.4M 
    [   ]cmake-3.0.0-rc3.tar.gz2014-03-26 12:59 5.2M 
    [   ]cmake-3.0.0-rc3.zip2014-03-26 12:59 8.0M 
    [   ]cmake-3.0.0-rc4-1-src.tar.bz22014-04-18 09:52 4.2M 
    [   ]cmake-3.0.0-rc4-1.tar.bz22014-04-18 09:52 8.0M 
    [TXT]cmake-3.0.0-rc4-AIX-powerpc.sh2014-04-18 09:52 22M 
    [   ]cmake-3.0.0-rc4-AIX-powerpc.tar.Z2014-04-18 09:52 31M 
    [   ]cmake-3.0.0-rc4-AIX-powerpc.tar.gz2014-04-18 09:52 22M 
    [   ]cmake-3.0.0-rc4-Darwin-universal.dmg2014-04-18 09:52 41M 
    [   ]cmake-3.0.0-rc4-Darwin-universal.tar.Z2014-04-18 09:52 58M 
    [   ]cmake-3.0.0-rc4-Darwin-universal.tar.gz2014-04-18 09:51 41M 
    [   ]cmake-3.0.0-rc4-Darwin64-universal.dmg2014-04-18 09:51 39M 
    [   ]cmake-3.0.0-rc4-Darwin64-universal.tar.Z2014-04-18 09:51 54M 
    [   ]cmake-3.0.0-rc4-Darwin64-universal.tar.gz2014-04-18 09:51 39M 
    [TXT]cmake-3.0.0-rc4-IRIX64-64.sh2014-04-18 09:51 13M 
    [   ]cmake-3.0.0-rc4-IRIX64-64.tar.Z2014-04-18 09:51 19M 
    [   ]cmake-3.0.0-rc4-IRIX64-64.tar.gz2014-04-18 09:51 13M 
    [TXT]cmake-3.0.0-rc4-IRIX64-n32.sh2014-04-18 09:51 12M 
    [   ]cmake-3.0.0-rc4-IRIX64-n32.tar.Z2014-04-18 09:51 19M 
    [   ]cmake-3.0.0-rc4-IRIX64-n32.tar.gz2014-04-18 09:51 12M 
    [TXT]cmake-3.0.0-rc4-Linux-i386.sh2014-04-18 09:51 22M 
    [   ]cmake-3.0.0-rc4-Linux-i386.tar.Z2014-04-18 09:51 31M 
    [   ]cmake-3.0.0-rc4-Linux-i386.tar.gz2014-04-18 09:51 22M 
    [TXT]cmake-3.0.0-rc4-SHA-256.txt2016-04-13 12:48 2.2K 
    [TXT]cmake-3.0.0-rc4-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc4-win32-x86.exe2014-04-18 09:51 11M 
    [   ]cmake-3.0.0-rc4-win32-x86.zip2014-04-18 09:51 14M 
    [   ]cmake-3.0.0-rc4.tar.Z2014-04-18 09:51 8.5M 
    [   ]cmake-3.0.0-rc4.tar.gz2014-04-18 09:51 5.2M 
    [   ]cmake-3.0.0-rc4.zip2014-04-18 09:51 8.0M 
    [   ]cmake-3.0.0-rc5-1-src.tar.bz22014-05-13 14:25 4.2M 
    [   ]cmake-3.0.0-rc5-1.tar.bz22014-05-13 14:25 8.0M 
    [   ]cmake-3.0.0-rc5-Darwin-universal.dmg2014-05-13 14:25 41M 
    [   ]cmake-3.0.0-rc5-Darwin-universal.tar.Z2014-05-13 14:24 58M 
    [   ]cmake-3.0.0-rc5-Darwin-universal.tar.gz2014-05-13 14:24 41M 
    [   ]cmake-3.0.0-rc5-Darwin64-universal.dmg2014-05-13 14:24 39M 
    [   ]cmake-3.0.0-rc5-Darwin64-universal.tar.Z2014-05-13 14:24 54M 
    [   ]cmake-3.0.0-rc5-Darwin64-universal.tar.gz2014-05-13 14:24 39M 
    [TXT]cmake-3.0.0-rc5-Linux-i386.sh2014-05-13 14:24 22M 
    [   ]cmake-3.0.0-rc5-Linux-i386.tar.Z2014-05-13 14:24 31M 
    [   ]cmake-3.0.0-rc5-Linux-i386.tar.gz2014-05-13 14:24 22M 
    [TXT]cmake-3.0.0-rc5-SHA-256.txt2016-04-13 12:48 1.4K 
    [TXT]cmake-3.0.0-rc5-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc5-win32-x86.exe2014-05-13 14:24 11M 
    [   ]cmake-3.0.0-rc5-win32-x86.zip2014-05-13 14:24 14M 
    [   ]cmake-3.0.0-rc5.tar.Z2014-05-13 14:24 8.5M 
    [   ]cmake-3.0.0-rc5.tar.gz2014-05-13 14:24 5.2M 
    [   ]cmake-3.0.0-rc5.zip2014-05-13 14:24 8.0M 
    [   ]cmake-3.0.0-rc6-1-src.tar.bz22014-05-22 14:57 4.2M 
    [   ]cmake-3.0.0-rc6-1.tar.bz22014-05-22 14:57 8.0M 
    [   ]cmake-3.0.0-rc6-Darwin-universal.dmg2014-05-22 14:57 41M 
    [   ]cmake-3.0.0-rc6-Darwin-universal.tar.Z2014-05-22 14:56 58M 
    [   ]cmake-3.0.0-rc6-Darwin-universal.tar.gz2014-05-22 14:56 41M 
    [   ]cmake-3.0.0-rc6-Darwin64-universal.dmg2014-05-22 14:56 39M 
    [   ]cmake-3.0.0-rc6-Darwin64-universal.tar.Z2014-05-22 14:56 54M 
    [   ]cmake-3.0.0-rc6-Darwin64-universal.tar.gz2014-05-22 14:56 39M 
    [TXT]cmake-3.0.0-rc6-Linux-i386.sh2014-05-22 14:56 22M 
    [   ]cmake-3.0.0-rc6-Linux-i386.tar.Z2014-05-22 14:56 31M 
    [   ]cmake-3.0.0-rc6-Linux-i386.tar.gz2014-05-22 14:56 22M 
    [TXT]cmake-3.0.0-rc6-SHA-256.txt2016-04-13 12:48 1.4K 
    [TXT]cmake-3.0.0-rc6-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.0-rc6-win32-x86.exe2014-05-22 14:56 11M 
    [   ]cmake-3.0.0-rc6-win32-x86.zip2014-05-22 14:56 14M 
    [   ]cmake-3.0.0-rc6.tar.Z2014-05-22 14:56 8.5M 
    [   ]cmake-3.0.0-rc6.tar.gz2014-05-22 14:56 5.2M 
    [   ]cmake-3.0.0-rc6.zip2014-05-22 14:56 8.0M 
    [   ]cmake-3.0.0-win32-x86.exe2014-06-10 13:27 11M 
    [   ]cmake-3.0.0-win32-x86.zip2014-06-10 13:27 14M 
    [   ]cmake-3.0.0.tar.Z2014-06-10 13:27 8.5M 
    [   ]cmake-3.0.0.tar.gz2014-06-10 13:27 5.2M 
    [   ]cmake-3.0.0.zip2014-06-10 13:27 7.9M 
    [   ]cmake-3.0.1-1-src.tar.bz22014-09-11 09:19 4.2M 
    [   ]cmake-3.0.1-1.tar.bz22014-09-11 09:19 8.0M 
    [   ]cmake-3.0.1-Darwin-universal.dmg2014-09-11 09:19 41M 
    [   ]cmake-3.0.1-Darwin-universal.tar.Z2014-09-11 09:19 58M 
    [   ]cmake-3.0.1-Darwin-universal.tar.gz2014-09-11 09:19 41M 
    [   ]cmake-3.0.1-Darwin64-universal.dmg2014-09-11 09:18 39M 
    [   ]cmake-3.0.1-Darwin64-universal.tar.Z2014-09-11 09:18 54M 
    [   ]cmake-3.0.1-Darwin64-universal.tar.gz2014-09-11 09:18 39M 
    [TXT]cmake-3.0.1-Linux-i386.sh2014-09-11 09:18 22M 
    [   ]cmake-3.0.1-Linux-i386.tar.Z2014-09-11 09:18 31M 
    [   ]cmake-3.0.1-Linux-i386.tar.gz2014-09-11 09:18 22M 
    [TXT]cmake-3.0.1-SHA-256.txt2016-04-13 12:48 1.3K 
    [TXT]cmake-3.0.1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.1-win32-x86.exe2014-09-11 09:18 11M 
    [   ]cmake-3.0.1-win32-x86.zip2014-09-11 09:18 14M 
    [   ]cmake-3.0.1.tar.Z2014-09-11 09:18 8.5M 
    [   ]cmake-3.0.1.tar.gz2014-09-11 09:18 5.2M 
    [   ]cmake-3.0.1.zip2014-09-11 09:18 7.9M 
    [   ]cmake-3.0.2-1-src.tar.bz22014-09-11 12:19 4.2M 
    [   ]cmake-3.0.2-1.tar.bz22014-09-11 12:19 8.0M 
    [   ]cmake-3.0.2-Darwin-universal.dmg2014-09-11 12:19 41M 
    [   ]cmake-3.0.2-Darwin-universal.tar.Z2014-09-11 12:19 58M 
    [   ]cmake-3.0.2-Darwin-universal.tar.gz2014-09-11 12:19 41M 
    [   ]cmake-3.0.2-Darwin64-universal.dmg2014-09-11 12:19 39M 
    [   ]cmake-3.0.2-Darwin64-universal.tar.Z2014-09-11 12:19 54M 
    [   ]cmake-3.0.2-Darwin64-universal.tar.gz2014-09-11 12:18 39M 
    [TXT]cmake-3.0.2-Linux-i386.sh2014-09-11 12:18 22M 
    [   ]cmake-3.0.2-Linux-i386.tar.Z2014-09-11 12:18 31M 
    [   ]cmake-3.0.2-Linux-i386.tar.gz2014-09-11 12:18 22M 
    [TXT]cmake-3.0.2-SHA-256.txt2016-04-13 12:48 1.3K 
    [TXT]cmake-3.0.2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.0.2-win32-x86.exe2014-09-11 12:18 11M 
    [   ]cmake-3.0.2-win32-x86.zip2014-09-11 12:18 14M 
    [   ]cmake-3.0.2.tar.Z2014-09-11 12:18 8.5M 
    [   ]cmake-3.0.2.tar.gz2014-09-11 12:18 5.2M 
    [   ]cmake-3.0.2.zip2014-09-11 12:18 7.9M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.1/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.1/index.html new file mode 100644 index 0000000..635d34c --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.1/index.html @@ -0,0 +1,156 @@ + + + + Index of /files/v3.1 + + +

    Index of /files/v3.1

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.1.0-1-src.tar.bz22014-12-17 13:10 4.5M 
    [   ]cmake-3.1.0-1.tar.bz22014-12-17 13:10 9.0M 
    [   ]cmake-3.1.0-Darwin-universal.dmg2014-12-17 13:10 45M 
    [   ]cmake-3.1.0-Darwin-universal.tar.Z2014-12-17 13:10 63M 
    [   ]cmake-3.1.0-Darwin-universal.tar.gz2014-12-17 13:10 44M 
    [   ]cmake-3.1.0-Darwin64-universal.dmg2014-12-17 13:10 28M 
    [   ]cmake-3.1.0-Darwin64-universal.tar.Z2014-12-17 13:10 40M 
    [   ]cmake-3.1.0-Darwin64-universal.tar.gz2014-12-17 13:10 28M 
    [   ]cmake-3.1.0-Darwin64.dmg2014-12-19 11:38 29M 
    [   ]cmake-3.1.0-Darwin64.tar.Z2014-12-19 11:38 41M 
    [   ]cmake-3.1.0-Darwin64.tar.gz2014-12-19 11:38 29M 
    [TXT]cmake-3.1.0-Linux-i386.sh2014-12-17 13:10 24M 
    [   ]cmake-3.1.0-Linux-i386.tar.Z2014-12-17 13:10 33M 
    [   ]cmake-3.1.0-Linux-i386.tar.gz2014-12-17 13:10 24M 
    [TXT]cmake-3.1.0-Linux-x86_64.sh2014-12-17 13:10 25M 
    [   ]cmake-3.1.0-Linux-x86_64.tar.Z2014-12-17 13:10 35M 
    [   ]cmake-3.1.0-Linux-x86_64.tar.gz2014-12-17 13:10 25M 
    [TXT]cmake-3.1.0-SHA-256.txt2016-04-13 12:48 1.9K 
    [TXT]cmake-3.1.0-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.0-rc1-1-src.tar.bz22014-10-28 14:09 4.5M 
    [   ]cmake-3.1.0-rc1-1.tar.bz22014-10-28 14:09 9.0M 
    [   ]cmake-3.1.0-rc1-Darwin-universal.dmg2014-10-28 14:09 45M 
    [   ]cmake-3.1.0-rc1-Darwin-universal.tar.Z2014-10-28 14:09 63M 
    [   ]cmake-3.1.0-rc1-Darwin-universal.tar.gz2014-10-28 14:09 44M 
    [   ]cmake-3.1.0-rc1-Darwin64-universal.dmg2014-10-28 14:09 28M 
    [   ]cmake-3.1.0-rc1-Darwin64-universal.tar.Z2014-10-28 14:09 40M 
    [   ]cmake-3.1.0-rc1-Darwin64-universal.tar.gz2014-10-28 14:08 28M 
    [TXT]cmake-3.1.0-rc1-Linux-i386.sh2014-10-28 14:08 24M 
    [   ]cmake-3.1.0-rc1-Linux-i386.tar.Z2014-10-28 14:08 33M 
    [   ]cmake-3.1.0-rc1-Linux-i386.tar.gz2014-10-28 14:08 24M 
    [TXT]cmake-3.1.0-rc1-SHA-256.txt2016-04-13 12:48 1.4K 
    [TXT]cmake-3.1.0-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.0-rc1-win32-x86.exe2014-10-28 14:08 12M 
    [   ]cmake-3.1.0-rc1-win32-x86.zip2014-10-28 14:08 15M 
    [   ]cmake-3.1.0-rc1.tar.Z2014-10-28 14:08 9.2M 
    [   ]cmake-3.1.0-rc1.tar.gz2014-10-28 14:08 5.7M 
    [   ]cmake-3.1.0-rc1.zip2014-10-28 14:08 9.0M 
    [   ]cmake-3.1.0-rc2-1-src.tar.bz22014-11-13 11:51 4.5M 
    [   ]cmake-3.1.0-rc2-1.tar.bz22014-11-13 11:51 9.0M 
    [   ]cmake-3.1.0-rc2-Darwin-universal.dmg2014-11-13 11:51 45M 
    [   ]cmake-3.1.0-rc2-Darwin-universal.tar.Z2014-11-13 11:51 63M 
    [   ]cmake-3.1.0-rc2-Darwin-universal.tar.gz2014-11-13 11:50 44M 
    [   ]cmake-3.1.0-rc2-Darwin64-universal.dmg2014-11-13 11:50 28M 
    [   ]cmake-3.1.0-rc2-Darwin64-universal.tar.Z2014-11-13 11:50 40M 
    [   ]cmake-3.1.0-rc2-Darwin64-universal.tar.gz2014-11-13 11:50 28M 
    [TXT]cmake-3.1.0-rc2-Linux-i386.sh2014-11-13 11:50 24M 
    [   ]cmake-3.1.0-rc2-Linux-i386.tar.Z2014-11-13 11:50 33M 
    [   ]cmake-3.1.0-rc2-Linux-i386.tar.gz2014-11-13 11:50 24M 
    [TXT]cmake-3.1.0-rc2-SHA-256.txt2016-04-13 12:48 1.4K 
    [TXT]cmake-3.1.0-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.0-rc2-win32-x86.exe2014-11-13 11:50 12M 
    [   ]cmake-3.1.0-rc2-win32-x86.zip2014-11-13 11:50 15M 
    [   ]cmake-3.1.0-rc2.tar.Z2014-11-13 11:50 9.2M 
    [   ]cmake-3.1.0-rc2.tar.gz2014-11-13 11:50 5.7M 
    [   ]cmake-3.1.0-rc2.zip2014-11-13 11:50 9.0M 
    [   ]cmake-3.1.0-rc3-1-src.tar.bz22014-12-09 16:53 4.5M 
    [   ]cmake-3.1.0-rc3-1.tar.bz22014-12-09 16:53 9.0M 
    [   ]cmake-3.1.0-rc3-Darwin-universal.dmg2014-12-09 16:53 45M 
    [   ]cmake-3.1.0-rc3-Darwin-universal.tar.Z2014-12-09 16:52 63M 
    [   ]cmake-3.1.0-rc3-Darwin-universal.tar.gz2014-12-09 16:52 44M 
    [   ]cmake-3.1.0-rc3-Darwin64-universal.dmg2014-12-09 16:52 28M 
    [   ]cmake-3.1.0-rc3-Darwin64-universal.tar.Z2014-12-09 16:52 40M 
    [   ]cmake-3.1.0-rc3-Darwin64-universal.tar.gz2014-12-09 16:52 28M 
    [TXT]cmake-3.1.0-rc3-Linux-i386.sh2014-12-09 16:52 24M 
    [   ]cmake-3.1.0-rc3-Linux-i386.tar.Z2014-12-09 16:52 33M 
    [   ]cmake-3.1.0-rc3-Linux-i386.tar.gz2014-12-09 16:52 24M 
    [TXT]cmake-3.1.0-rc3-Linux-x86_64.sh2014-12-09 16:52 25M 
    [   ]cmake-3.1.0-rc3-Linux-x86_64.tar.Z2014-12-09 16:52 35M 
    [   ]cmake-3.1.0-rc3-Linux-x86_64.tar.gz2014-12-09 16:52 25M 
    [TXT]cmake-3.1.0-rc3-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.1.0-rc3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.0-rc3-win32-x86.exe2014-12-09 16:52 12M 
    [   ]cmake-3.1.0-rc3-win32-x86.zip2014-12-09 16:52 15M 
    [   ]cmake-3.1.0-rc3.tar.Z2014-12-09 16:52 9.2M 
    [   ]cmake-3.1.0-rc3.tar.gz2014-12-09 16:52 5.7M 
    [   ]cmake-3.1.0-rc3.zip2014-12-09 16:52 9.0M 
    [   ]cmake-3.1.0-win32-x86.exe2014-12-17 13:10 12M 
    [   ]cmake-3.1.0-win32-x86.zip2014-12-17 13:10 15M 
    [   ]cmake-3.1.0.tar.Z2014-12-17 13:10 9.2M 
    [   ]cmake-3.1.0.tar.gz2014-12-17 13:10 5.7M 
    [   ]cmake-3.1.0.zip2014-12-17 13:10 9.0M 
    [   ]cmake-3.1.1-1-src.tar.bz22015-01-22 16:49 4.5M 
    [   ]cmake-3.1.1-1.tar.bz22015-01-22 16:49 9.1M 
    [   ]cmake-3.1.1-Darwin-universal.dmg2015-01-22 16:49 45M 
    [   ]cmake-3.1.1-Darwin-universal.tar.Z2015-01-22 16:49 64M 
    [   ]cmake-3.1.1-Darwin-universal.tar.gz2015-01-22 16:49 44M 
    [   ]cmake-3.1.1-Darwin-x86_64.dmg2015-01-22 16:48 29M 
    [   ]cmake-3.1.1-Darwin-x86_64.tar.Z2015-01-22 16:48 41M 
    [   ]cmake-3.1.1-Darwin-x86_64.tar.gz2015-01-22 16:48 29M 
    [TXT]cmake-3.1.1-Linux-i386.sh2015-01-22 16:48 24M 
    [   ]cmake-3.1.1-Linux-i386.tar.Z2015-01-22 16:48 33M 
    [   ]cmake-3.1.1-Linux-i386.tar.gz2015-01-22 16:48 24M 
    [TXT]cmake-3.1.1-Linux-x86_64.sh2015-01-22 16:48 25M 
    [   ]cmake-3.1.1-Linux-x86_64.tar.Z2015-01-22 16:48 35M 
    [   ]cmake-3.1.1-Linux-x86_64.tar.gz2015-01-22 16:48 25M 
    [TXT]cmake-3.1.1-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.1.1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.1-win32-x86.exe2015-01-22 16:48 12M 
    [   ]cmake-3.1.1-win32-x86.zip2015-01-22 16:48 15M 
    [   ]cmake-3.1.1.tar.Z2015-01-22 16:48 9.2M 
    [   ]cmake-3.1.1.tar.gz2015-01-22 16:48 5.7M 
    [   ]cmake-3.1.1.zip2015-01-22 16:48 9.0M 
    [   ]cmake-3.1.2-Darwin-universal.dmg2015-02-05 10:06 45M 
    [   ]cmake-3.1.2-Darwin-universal.tar.Z2015-02-05 10:06 64M 
    [   ]cmake-3.1.2-Darwin-universal.tar.gz2015-02-05 10:06 44M 
    [   ]cmake-3.1.2-Darwin-x86_64.dmg2015-02-05 10:06 29M 
    [   ]cmake-3.1.2-Darwin-x86_64.tar.Z2015-02-05 10:06 41M 
    [   ]cmake-3.1.2-Darwin-x86_64.tar.gz2015-02-05 10:06 29M 
    [TXT]cmake-3.1.2-Linux-i386.sh2015-02-05 10:06 24M 
    [   ]cmake-3.1.2-Linux-i386.tar.Z2015-02-05 10:06 33M 
    [   ]cmake-3.1.2-Linux-i386.tar.gz2015-02-05 10:05 24M 
    [TXT]cmake-3.1.2-Linux-x86_64.sh2015-02-05 10:05 25M 
    [   ]cmake-3.1.2-Linux-x86_64.tar.Z2015-02-05 10:05 35M 
    [   ]cmake-3.1.2-Linux-x86_64.tar.gz2015-02-05 10:05 25M 
    [TXT]cmake-3.1.2-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.1.2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.2-win32-x86.exe2015-02-05 10:05 12M 
    [   ]cmake-3.1.2-win32-x86.zip2015-02-05 10:05 15M 
    [   ]cmake-3.1.2.tar.Z2015-02-05 10:05 9.2M 
    [   ]cmake-3.1.2.tar.gz2015-02-05 10:05 5.7M 
    [   ]cmake-3.1.2.zip2015-02-05 10:05 9.0M 
    [   ]cmake-3.1.3-1-src.tar.bz22015-02-12 17:40 4.5M 
    [   ]cmake-3.1.3-1.tar.bz22015-02-12 17:40 9.0M 
    [   ]cmake-3.1.3-Darwin-universal.dmg2015-02-12 17:40 45M 
    [   ]cmake-3.1.3-Darwin-universal.tar.Z2015-02-12 17:40 64M 
    [   ]cmake-3.1.3-Darwin-universal.tar.gz2015-02-12 17:40 44M 
    [   ]cmake-3.1.3-Darwin-x86_64.dmg2015-02-12 17:40 29M 
    [   ]cmake-3.1.3-Darwin-x86_64.tar.Z2015-02-12 17:40 41M 
    [   ]cmake-3.1.3-Darwin-x86_64.tar.gz2015-02-12 17:39 29M 
    [TXT]cmake-3.1.3-Linux-i386.sh2015-02-12 17:39 24M 
    [   ]cmake-3.1.3-Linux-i386.tar.Z2015-02-12 17:39 33M 
    [   ]cmake-3.1.3-Linux-i386.tar.gz2015-02-12 17:39 24M 
    [TXT]cmake-3.1.3-Linux-x86_64.sh2015-02-12 17:39 25M 
    [   ]cmake-3.1.3-Linux-x86_64.tar.Z2015-02-12 17:39 35M 
    [   ]cmake-3.1.3-Linux-x86_64.tar.gz2015-02-12 17:39 25M 
    [TXT]cmake-3.1.3-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.1.3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.1.3-win32-x86.exe2015-02-12 17:39 12M 
    [   ]cmake-3.1.3-win32-x86.zip2015-02-12 17:39 15M 
    [   ]cmake-3.1.3.tar.Z2015-02-12 17:39 9.2M 
    [   ]cmake-3.1.3.tar.gz2015-02-12 17:39 5.7M 
    [   ]cmake-3.1.3.zip2015-02-12 17:39 9.0M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.10/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.10/index.html new file mode 100644 index 0000000..df654a3 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.10/index.html @@ -0,0 +1,131 @@ + + + + Index of /files/v3.10 + + +

    Index of /files/v3.10

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.10.0-Darwin-x86_64.dmg2017-11-20 16:00 26M 
    [   ]cmake-3.10.0-Darwin-x86_64.tar.gz2017-11-20 16:00 26M 
    [TXT]cmake-3.10.0-Linux-x86_64.sh2017-11-20 16:00 33M 
    [   ]cmake-3.10.0-Linux-x86_64.tar.gz2017-11-20 16:00 33M 
    [TXT]cmake-3.10.0-SHA-256.txt2017-11-20 16:00 1.0K 
    [TXT]cmake-3.10.0-SHA-256.txt.asc2017-11-20 16:00 833  
    [   ]cmake-3.10.0-rc1-Darwin-x86_64.dmg2017-10-05 15:50 26M 
    [   ]cmake-3.10.0-rc1-Darwin-x86_64.tar.gz2017-10-05 15:50 26M 
    [TXT]cmake-3.10.0-rc1-Linux-x86_64.sh2017-10-05 15:50 31M 
    [   ]cmake-3.10.0-rc1-Linux-x86_64.tar.gz2017-10-05 15:50 31M 
    [TXT]cmake-3.10.0-rc1-SHA-256.txt2017-10-05 15:50 1.0K 
    [TXT]cmake-3.10.0-rc1-SHA-256.txt.asc2017-10-05 15:50 833  
    [   ]cmake-3.10.0-rc1-win32-x86.msi2017-10-05 15:50 16M 
    [   ]cmake-3.10.0-rc1-win32-x86.zip2017-10-05 15:50 22M 
    [   ]cmake-3.10.0-rc1-win64-x64.msi2017-10-05 15:50 18M 
    [   ]cmake-3.10.0-rc1-win64-x64.zip2017-10-05 15:50 25M 
    [   ]cmake-3.10.0-rc1.tar.Z2017-10-05 15:50 12M 
    [   ]cmake-3.10.0-rc1.tar.gz2017-10-05 15:50 7.4M 
    [   ]cmake-3.10.0-rc1.zip2017-10-05 15:50 12M 
    [   ]cmake-3.10.0-rc2-Darwin-x86_64.dmg2017-10-12 12:07 26M 
    [   ]cmake-3.10.0-rc2-Darwin-x86_64.tar.gz2017-10-12 12:07 26M 
    [TXT]cmake-3.10.0-rc2-Linux-x86_64.sh2017-10-12 12:07 31M 
    [   ]cmake-3.10.0-rc2-Linux-x86_64.tar.gz2017-10-12 12:07 31M 
    [TXT]cmake-3.10.0-rc2-SHA-256.txt2017-10-12 12:07 1.0K 
    [TXT]cmake-3.10.0-rc2-SHA-256.txt.asc2017-10-12 12:06 833  
    [   ]cmake-3.10.0-rc2-win32-x86.msi2017-10-12 12:06 16M 
    [   ]cmake-3.10.0-rc2-win32-x86.zip2017-10-12 12:06 22M 
    [   ]cmake-3.10.0-rc2-win64-x64.msi2017-10-12 12:06 18M 
    [   ]cmake-3.10.0-rc2-win64-x64.zip2017-10-12 12:06 25M 
    [   ]cmake-3.10.0-rc2.tar.Z2017-10-12 12:06 12M 
    [   ]cmake-3.10.0-rc2.tar.gz2017-10-12 12:06 7.5M 
    [   ]cmake-3.10.0-rc2.zip2017-10-12 12:06 13M 
    [   ]cmake-3.10.0-rc3-Darwin-x86_64.dmg2017-10-19 13:24 26M 
    [   ]cmake-3.10.0-rc3-Darwin-x86_64.tar.gz2017-10-19 13:24 26M 
    [TXT]cmake-3.10.0-rc3-Linux-x86_64.sh2017-10-19 13:24 31M 
    [   ]cmake-3.10.0-rc3-Linux-x86_64.tar.gz2017-10-19 13:24 31M 
    [TXT]cmake-3.10.0-rc3-SHA-256.txt2017-10-19 13:24 1.0K 
    [TXT]cmake-3.10.0-rc3-SHA-256.txt.asc2017-10-19 13:24 833  
    [   ]cmake-3.10.0-rc3-win32-x86.msi2017-10-19 13:24 16M 
    [   ]cmake-3.10.0-rc3-win32-x86.zip2017-10-19 13:24 22M 
    [   ]cmake-3.10.0-rc3-win64-x64.msi2017-10-19 13:24 18M 
    [   ]cmake-3.10.0-rc3-win64-x64.zip2017-10-19 13:24 25M 
    [   ]cmake-3.10.0-rc3.tar.Z2017-10-19 13:24 12M 
    [   ]cmake-3.10.0-rc3.tar.gz2017-10-19 13:24 7.5M 
    [   ]cmake-3.10.0-rc3.zip2017-10-19 13:24 13M 
    [   ]cmake-3.10.0-rc4-Darwin-x86_64.dmg2017-11-01 15:37 26M 
    [   ]cmake-3.10.0-rc4-Darwin-x86_64.tar.gz2017-11-01 15:37 26M 
    [TXT]cmake-3.10.0-rc4-Linux-x86_64.sh2017-11-01 15:37 31M 
    [   ]cmake-3.10.0-rc4-Linux-x86_64.tar.gz2017-11-01 15:37 31M 
    [TXT]cmake-3.10.0-rc4-SHA-256.txt2017-11-01 15:37 1.0K 
    [TXT]cmake-3.10.0-rc4-SHA-256.txt.asc2017-11-01 15:37 833  
    [   ]cmake-3.10.0-rc4-win32-x86.msi2017-11-01 15:37 16M 
    [   ]cmake-3.10.0-rc4-win32-x86.zip2017-11-01 15:37 22M 
    [   ]cmake-3.10.0-rc4-win64-x64.msi2017-11-01 15:37 18M 
    [   ]cmake-3.10.0-rc4-win64-x64.zip2017-11-01 15:37 25M 
    [   ]cmake-3.10.0-rc4.tar.Z2017-11-01 15:37 12M 
    [   ]cmake-3.10.0-rc4.tar.gz2017-11-01 15:37 7.5M 
    [   ]cmake-3.10.0-rc4.zip2017-11-01 15:37 13M 
    [   ]cmake-3.10.0-rc5-Darwin-x86_64.dmg2017-11-10 14:01 26M 
    [   ]cmake-3.10.0-rc5-Darwin-x86_64.tar.gz2017-11-10 14:01 26M 
    [TXT]cmake-3.10.0-rc5-Linux-x86_64.sh2017-11-10 14:01 31M 
    [   ]cmake-3.10.0-rc5-Linux-x86_64.tar.gz2017-11-10 14:01 31M 
    [TXT]cmake-3.10.0-rc5-SHA-256.txt2017-11-10 14:01 1.0K 
    [TXT]cmake-3.10.0-rc5-SHA-256.txt.asc2017-11-10 14:01 833  
    [   ]cmake-3.10.0-rc5-win32-x86.msi2017-11-10 14:01 16M 
    [   ]cmake-3.10.0-rc5-win32-x86.zip2017-11-10 14:01 22M 
    [   ]cmake-3.10.0-rc5-win64-x64.msi2017-11-10 14:01 18M 
    [   ]cmake-3.10.0-rc5-win64-x64.zip2017-11-10 14:01 25M 
    [   ]cmake-3.10.0-rc5.tar.Z2017-11-10 14:01 12M 
    [   ]cmake-3.10.0-rc5.tar.gz2017-11-10 14:01 7.5M 
    [   ]cmake-3.10.0-rc5.zip2017-11-10 14:00 13M 
    [   ]cmake-3.10.0-win32-x86.msi2017-11-20 16:00 15M 
    [   ]cmake-3.10.0-win32-x86.zip2017-11-20 16:00 21M 
    [   ]cmake-3.10.0-win64-x64.msi2017-11-20 16:00 17M 
    [   ]cmake-3.10.0-win64-x64.zip2017-11-20 16:00 24M 
    [   ]cmake-3.10.0.tar.Z2017-11-20 16:00 12M 
    [   ]cmake-3.10.0.tar.gz2017-11-20 16:00 7.5M 
    [   ]cmake-3.10.0.zip2017-11-20 16:00 12M 
    [   ]cmake-3.10.1-Darwin-x86_64.dmg2017-12-14 09:10 26M 
    [   ]cmake-3.10.1-Darwin-x86_64.tar.gz2017-12-14 09:10 26M 
    [TXT]cmake-3.10.1-Linux-x86_64.sh2017-12-14 09:10 33M 
    [   ]cmake-3.10.1-Linux-x86_64.tar.gz2017-12-14 09:10 33M 
    [TXT]cmake-3.10.1-SHA-256.txt2017-12-14 09:10 1.0K 
    [TXT]cmake-3.10.1-SHA-256.txt.asc2017-12-14 09:10 833  
    [   ]cmake-3.10.1-win32-x86.msi2017-12-14 09:10 15M 
    [   ]cmake-3.10.1-win32-x86.zip2017-12-14 09:10 21M 
    [   ]cmake-3.10.1-win64-x64.msi2017-12-14 09:10 18M 
    [   ]cmake-3.10.1-win64-x64.zip2017-12-14 09:09 25M 
    [   ]cmake-3.10.1.tar.Z2017-12-14 09:09 12M 
    [   ]cmake-3.10.1.tar.gz2017-12-14 09:09 7.5M 
    [   ]cmake-3.10.1.zip2017-12-14 09:09 12M 
    [   ]cmake-3.10.2-Darwin-x86_64.dmg2018-01-18 12:09 26M 
    [   ]cmake-3.10.2-Darwin-x86_64.tar.gz2018-01-18 12:09 26M 
    [TXT]cmake-3.10.2-Linux-x86_64.sh2018-01-18 12:09 33M 
    [   ]cmake-3.10.2-Linux-x86_64.tar.gz2018-01-18 12:09 33M 
    [TXT]cmake-3.10.2-SHA-256.txt2018-01-18 12:09 1.0K 
    [TXT]cmake-3.10.2-SHA-256.txt.asc2018-01-18 12:09 833  
    [   ]cmake-3.10.2-win32-x86.msi2018-01-18 12:09 15M 
    [   ]cmake-3.10.2-win32-x86.zip2018-01-18 12:09 21M 
    [   ]cmake-3.10.2-win64-x64.msi2018-01-18 12:09 18M 
    [   ]cmake-3.10.2-win64-x64.zip2018-01-18 12:09 25M 
    [   ]cmake-3.10.2.tar.Z2018-01-18 12:09 12M 
    [   ]cmake-3.10.2.tar.gz2018-01-18 12:09 7.5M 
    [   ]cmake-3.10.2.zip2018-01-18 12:08 12M 
    [   ]cmake-3.10.3-Darwin-x86_64.dmg2018-03-16 09:38 26M 
    [   ]cmake-3.10.3-Darwin-x86_64.tar.gz2018-03-16 09:38 26M 
    [TXT]cmake-3.10.3-Linux-x86_64.sh2018-03-16 09:38 33M 
    [   ]cmake-3.10.3-Linux-x86_64.tar.gz2018-03-16 09:38 33M 
    [TXT]cmake-3.10.3-SHA-256.txt2018-03-16 09:38 1.0K 
    [TXT]cmake-3.10.3-SHA-256.txt.asc2018-03-16 09:38 833  
    [   ]cmake-3.10.3-win32-x86.msi2018-03-16 09:38 15M 
    [   ]cmake-3.10.3-win32-x86.zip2018-03-16 09:38 21M 
    [   ]cmake-3.10.3-win64-x64.msi2018-03-16 09:38 18M 
    [   ]cmake-3.10.3-win64-x64.zip2018-03-16 09:38 25M 
    [   ]cmake-3.10.3.tar.Z2018-03-16 09:38 12M 
    [   ]cmake-3.10.3.tar.gz2018-03-16 09:38 7.5M 
    [   ]cmake-3.10.3.zip2018-03-16 09:38 12M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.11/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.11/index.html new file mode 100644 index 0000000..869d742 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.11/index.html @@ -0,0 +1,131 @@ + + + + Index of /files/v3.11 + + +

    Index of /files/v3.11

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.11.0-Darwin-x86_64.dmg2018-03-28 13:40 26M 
    [   ]cmake-3.11.0-Darwin-x86_64.tar.gz2018-03-28 13:40 26M 
    [TXT]cmake-3.11.0-Linux-x86_64.sh2018-03-28 13:40 33M 
    [   ]cmake-3.11.0-Linux-x86_64.tar.gz2018-03-28 13:40 33M 
    [TXT]cmake-3.11.0-SHA-256.txt2018-03-28 13:40 1.0K 
    [TXT]cmake-3.11.0-SHA-256.txt.asc2018-03-28 13:40 833  
    [   ]cmake-3.11.0-rc1-Darwin-x86_64.dmg2018-02-15 11:53 26M 
    [   ]cmake-3.11.0-rc1-Darwin-x86_64.tar.gz2018-02-15 11:53 26M 
    [TXT]cmake-3.11.0-rc1-Linux-x86_64.sh2018-02-15 11:53 33M 
    [   ]cmake-3.11.0-rc1-Linux-x86_64.tar.gz2018-02-15 11:53 33M 
    [TXT]cmake-3.11.0-rc1-SHA-256.txt2018-02-15 11:53 1.0K 
    [TXT]cmake-3.11.0-rc1-SHA-256.txt.asc2018-02-15 11:53 833  
    [   ]cmake-3.11.0-rc1-win32-x86.msi2018-02-15 11:53 16M 
    [   ]cmake-3.11.0-rc1-win32-x86.zip2018-02-15 11:53 22M 
    [   ]cmake-3.11.0-rc1-win64-x64.msi2018-02-15 11:53 19M 
    [   ]cmake-3.11.0-rc1-win64-x64.zip2018-02-15 11:53 26M 
    [   ]cmake-3.11.0-rc1.tar.Z2018-02-15 11:52 12M 
    [   ]cmake-3.11.0-rc1.tar.gz2018-02-15 11:52 7.6M 
    [   ]cmake-3.11.0-rc1.zip2018-02-15 11:52 13M 
    [   ]cmake-3.11.0-rc2-Darwin-x86_64.dmg2018-02-27 11:09 26M 
    [   ]cmake-3.11.0-rc2-Darwin-x86_64.tar.gz2018-02-27 11:09 26M 
    [TXT]cmake-3.11.0-rc2-Linux-x86_64.sh2018-02-27 11:09 33M 
    [   ]cmake-3.11.0-rc2-Linux-x86_64.tar.gz2018-02-27 11:09 33M 
    [TXT]cmake-3.11.0-rc2-SHA-256.txt2018-02-27 11:09 1.0K 
    [TXT]cmake-3.11.0-rc2-SHA-256.txt.asc2018-02-27 11:09 833  
    [   ]cmake-3.11.0-rc2-win32-x86.msi2018-02-27 11:09 16M 
    [   ]cmake-3.11.0-rc2-win32-x86.zip2018-02-27 11:09 22M 
    [   ]cmake-3.11.0-rc2-win64-x64.msi2018-02-27 11:09 19M 
    [   ]cmake-3.11.0-rc2-win64-x64.zip2018-02-27 11:09 26M 
    [   ]cmake-3.11.0-rc2.tar.Z2018-02-27 11:09 12M 
    [   ]cmake-3.11.0-rc2.tar.gz2018-02-27 11:09 7.6M 
    [   ]cmake-3.11.0-rc2.zip2018-02-27 11:09 13M 
    [   ]cmake-3.11.0-rc3-Darwin-x86_64.dmg2018-03-09 13:46 26M 
    [   ]cmake-3.11.0-rc3-Darwin-x86_64.tar.gz2018-03-09 13:46 26M 
    [TXT]cmake-3.11.0-rc3-Linux-x86_64.sh2018-03-09 13:46 33M 
    [   ]cmake-3.11.0-rc3-Linux-x86_64.tar.gz2018-03-09 13:46 33M 
    [TXT]cmake-3.11.0-rc3-SHA-256.txt2018-03-09 13:46 1.0K 
    [TXT]cmake-3.11.0-rc3-SHA-256.txt.asc2018-03-09 13:46 833  
    [   ]cmake-3.11.0-rc3-win32-x86.msi2018-03-09 13:46 16M 
    [   ]cmake-3.11.0-rc3-win32-x86.zip2018-03-09 13:45 22M 
    [   ]cmake-3.11.0-rc3-win64-x64.msi2018-03-09 13:45 19M 
    [   ]cmake-3.11.0-rc3-win64-x64.zip2018-03-09 13:45 26M 
    [   ]cmake-3.11.0-rc3.tar.Z2018-03-09 13:45 12M 
    [   ]cmake-3.11.0-rc3.tar.gz2018-03-09 13:45 7.6M 
    [   ]cmake-3.11.0-rc3.zip2018-03-09 13:45 13M 
    [   ]cmake-3.11.0-rc4-Darwin-x86_64.dmg2018-03-19 11:07 26M 
    [   ]cmake-3.11.0-rc4-Darwin-x86_64.tar.gz2018-03-19 11:07 26M 
    [TXT]cmake-3.11.0-rc4-Linux-x86_64.sh2018-03-19 11:06 33M 
    [   ]cmake-3.11.0-rc4-Linux-x86_64.tar.gz2018-03-19 11:06 33M 
    [TXT]cmake-3.11.0-rc4-SHA-256.txt2018-03-19 11:06 1.0K 
    [TXT]cmake-3.11.0-rc4-SHA-256.txt.asc2018-03-19 11:06 833  
    [   ]cmake-3.11.0-rc4-win32-x86.msi2018-03-19 11:06 16M 
    [   ]cmake-3.11.0-rc4-win32-x86.zip2018-03-19 11:06 22M 
    [   ]cmake-3.11.0-rc4-win64-x64.msi2018-03-19 11:06 19M 
    [   ]cmake-3.11.0-rc4-win64-x64.zip2018-03-19 11:06 26M 
    [   ]cmake-3.11.0-rc4.tar.Z2018-03-19 11:06 12M 
    [   ]cmake-3.11.0-rc4.tar.gz2018-03-19 11:06 7.6M 
    [   ]cmake-3.11.0-rc4.zip2018-03-19 11:06 13M 
    [   ]cmake-3.11.0-win32-x86.msi2018-03-28 13:40 16M 
    [   ]cmake-3.11.0-win32-x86.zip2018-03-28 13:40 22M 
    [   ]cmake-3.11.0-win64-x64.msi2018-03-28 13:40 19M 
    [   ]cmake-3.11.0-win64-x64.zip2018-03-28 13:40 26M 
    [   ]cmake-3.11.0.tar.Z2018-03-28 13:40 12M 
    [   ]cmake-3.11.0.tar.gz2018-03-28 13:40 7.6M 
    [   ]cmake-3.11.0.zip2018-03-28 13:40 13M 
    [   ]cmake-3.11.1-Darwin-x86_64.dmg2018-04-17 11:33 26M 
    [   ]cmake-3.11.1-Darwin-x86_64.tar.gz2018-04-17 11:32 26M 
    [TXT]cmake-3.11.1-Linux-x86_64.sh2018-04-17 11:32 33M 
    [   ]cmake-3.11.1-Linux-x86_64.tar.gz2018-04-17 11:32 33M 
    [TXT]cmake-3.11.1-SHA-256.txt2018-04-17 11:32 1.0K 
    [TXT]cmake-3.11.1-SHA-256.txt.asc2018-04-17 11:32 833  
    [   ]cmake-3.11.1-win32-x86.msi2018-04-17 11:32 16M 
    [   ]cmake-3.11.1-win32-x86.zip2018-04-17 11:32 22M 
    [   ]cmake-3.11.1-win64-x64.msi2018-04-17 11:32 19M 
    [   ]cmake-3.11.1-win64-x64.zip2018-04-17 11:32 26M 
    [   ]cmake-3.11.1.tar.Z2018-04-17 11:32 12M 
    [   ]cmake-3.11.1.tar.gz2018-04-17 11:32 7.6M 
    [   ]cmake-3.11.1.zip2018-04-17 11:32 13M 
    [   ]cmake-3.11.2-Darwin-x86_64.dmg2018-05-17 12:45 26M 
    [   ]cmake-3.11.2-Darwin-x86_64.tar.gz2018-05-17 12:45 26M 
    [TXT]cmake-3.11.2-Linux-x86_64.sh2018-05-17 12:45 33M 
    [   ]cmake-3.11.2-Linux-x86_64.tar.gz2018-05-17 12:45 33M 
    [TXT]cmake-3.11.2-SHA-256.txt2018-05-17 12:45 1.0K 
    [TXT]cmake-3.11.2-SHA-256.txt.asc2018-05-17 12:45 833  
    [   ]cmake-3.11.2-win32-x86.msi2018-05-17 12:45 16M 
    [   ]cmake-3.11.2-win32-x86.zip2018-05-17 12:45 22M 
    [   ]cmake-3.11.2-win64-x64.msi2018-05-17 12:45 18M 
    [   ]cmake-3.11.2-win64-x64.zip2018-05-17 12:44 25M 
    [   ]cmake-3.11.2.tar.Z2018-05-17 12:44 12M 
    [   ]cmake-3.11.2.tar.gz2018-05-17 12:44 7.6M 
    [   ]cmake-3.11.2.zip2018-05-17 12:44 13M 
    [   ]cmake-3.11.3-Darwin-x86_64.dmg2018-05-31 15:53 26M 
    [   ]cmake-3.11.3-Darwin-x86_64.tar.gz2018-05-31 15:53 26M 
    [TXT]cmake-3.11.3-Linux-x86_64.sh2018-05-31 15:53 33M 
    [   ]cmake-3.11.3-Linux-x86_64.tar.gz2018-05-31 15:52 33M 
    [TXT]cmake-3.11.3-SHA-256.txt2018-05-31 15:52 1.0K 
    [TXT]cmake-3.11.3-SHA-256.txt.asc2018-05-31 15:52 833  
    [   ]cmake-3.11.3-win32-x86.msi2018-05-31 15:52 16M 
    [   ]cmake-3.11.3-win32-x86.zip2018-05-31 15:52 22M 
    [   ]cmake-3.11.3-win64-x64.msi2018-05-31 15:52 18M 
    [   ]cmake-3.11.3-win64-x64.zip2018-05-31 15:52 25M 
    [   ]cmake-3.11.3.tar.Z2018-05-31 15:52 12M 
    [   ]cmake-3.11.3.tar.gz2018-05-31 15:52 7.6M 
    [   ]cmake-3.11.3.zip2018-05-31 15:52 13M 
    [   ]cmake-3.11.4-Darwin-x86_64.dmg2018-06-14 13:50 26M 
    [   ]cmake-3.11.4-Darwin-x86_64.tar.gz2018-06-14 13:50 26M 
    [TXT]cmake-3.11.4-Linux-x86_64.sh2018-06-14 13:50 33M 
    [   ]cmake-3.11.4-Linux-x86_64.tar.gz2018-06-14 13:50 33M 
    [TXT]cmake-3.11.4-SHA-256.txt2018-06-14 13:50 1.0K 
    [TXT]cmake-3.11.4-SHA-256.txt.asc2018-06-14 13:50 833  
    [   ]cmake-3.11.4-win32-x86.msi2018-06-14 13:50 16M 
    [   ]cmake-3.11.4-win32-x86.zip2018-06-14 13:50 22M 
    [   ]cmake-3.11.4-win64-x64.msi2018-06-14 13:50 18M 
    [   ]cmake-3.11.4-win64-x64.zip2018-06-14 13:50 25M 
    [   ]cmake-3.11.4.tar.Z2018-06-14 13:50 12M 
    [   ]cmake-3.11.4.tar.gz2018-06-14 13:50 7.6M 
    [   ]cmake-3.11.4.zip2018-06-14 13:50 13M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.12/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.12/index.html new file mode 100644 index 0000000..1977e7e --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.12/index.html @@ -0,0 +1,118 @@ + + + + Index of /files/v3.12 + + +

    Index of /files/v3.12

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.12.0-Darwin-x86_64.dmg2018-07-17 09:58 27M 
    [   ]cmake-3.12.0-Darwin-x86_64.tar.gz2018-07-17 09:58 27M 
    [TXT]cmake-3.12.0-Linux-x86_64.sh2018-07-17 09:58 33M 
    [   ]cmake-3.12.0-Linux-x86_64.tar.gz2018-07-17 09:58 33M 
    [TXT]cmake-3.12.0-SHA-256.txt2018-07-17 09:58 1.0K 
    [TXT]cmake-3.12.0-SHA-256.txt.asc2018-07-17 09:58 833  
    [   ]cmake-3.12.0-rc1-Darwin-x86_64.dmg2018-06-14 15:01 27M 
    [   ]cmake-3.12.0-rc1-Darwin-x86_64.tar.gz2018-06-14 15:01 27M 
    [TXT]cmake-3.12.0-rc1-Linux-x86_64.sh2018-06-14 15:01 29M 
    [   ]cmake-3.12.0-rc1-Linux-x86_64.tar.gz2018-06-14 15:01 29M 
    [TXT]cmake-3.12.0-rc1-SHA-256.txt2018-06-14 15:01 1.0K 
    [TXT]cmake-3.12.0-rc1-SHA-256.txt.asc2018-06-14 15:01 833  
    [   ]cmake-3.12.0-rc1-win32-x86.msi2018-06-14 15:01 16M 
    [   ]cmake-3.12.0-rc1-win32-x86.zip2018-06-14 15:01 23M 
    [   ]cmake-3.12.0-rc1-win64-x64.msi2018-06-14 15:01 18M 
    [   ]cmake-3.12.0-rc1-win64-x64.zip2018-06-14 15:01 25M 
    [   ]cmake-3.12.0-rc1.tar.Z2018-06-14 15:01 13M 
    [   ]cmake-3.12.0-rc1.tar.gz2018-06-14 15:01 7.7M 
    [   ]cmake-3.12.0-rc1.zip2018-06-14 15:01 13M 
    [   ]cmake-3.12.0-rc2-Darwin-x86_64.dmg2018-06-29 13:57 27M 
    [   ]cmake-3.12.0-rc2-Darwin-x86_64.tar.gz2018-06-29 13:57 27M 
    [TXT]cmake-3.12.0-rc2-Linux-x86_64.sh2018-06-29 13:57 29M 
    [   ]cmake-3.12.0-rc2-Linux-x86_64.tar.gz2018-06-29 13:57 29M 
    [TXT]cmake-3.12.0-rc2-SHA-256.txt2018-06-29 13:57 1.0K 
    [TXT]cmake-3.12.0-rc2-SHA-256.txt.asc2018-06-29 13:57 833  
    [   ]cmake-3.12.0-rc2-win32-x86.msi2018-06-29 13:56 16M 
    [   ]cmake-3.12.0-rc2-win32-x86.zip2018-06-29 13:56 23M 
    [   ]cmake-3.12.0-rc2-win64-x64.msi2018-06-29 13:56 18M 
    [   ]cmake-3.12.0-rc2-win64-x64.zip2018-06-29 13:56 25M 
    [   ]cmake-3.12.0-rc2.tar.Z2018-06-29 13:56 13M 
    [   ]cmake-3.12.0-rc2.tar.gz2018-06-29 13:56 7.7M 
    [   ]cmake-3.12.0-rc2.zip2018-06-29 13:56 13M 
    [   ]cmake-3.12.0-rc3-Darwin-x86_64.dmg2018-07-09 11:38 27M 
    [   ]cmake-3.12.0-rc3-Darwin-x86_64.tar.gz2018-07-09 11:38 27M 
    [TXT]cmake-3.12.0-rc3-Linux-x86_64.sh2018-07-09 11:38 33M 
    [   ]cmake-3.12.0-rc3-Linux-x86_64.tar.gz2018-07-09 11:38 33M 
    [TXT]cmake-3.12.0-rc3-SHA-256.txt2018-07-09 11:38 1.0K 
    [TXT]cmake-3.12.0-rc3-SHA-256.txt.asc2018-07-09 11:38 833  
    [   ]cmake-3.12.0-rc3-win32-x86.msi2018-07-09 11:38 16M 
    [   ]cmake-3.12.0-rc3-win32-x86.zip2018-07-09 11:38 23M 
    [   ]cmake-3.12.0-rc3-win64-x64.msi2018-07-09 11:37 18M 
    [   ]cmake-3.12.0-rc3-win64-x64.zip2018-07-09 11:37 25M 
    [   ]cmake-3.12.0-rc3.tar.Z2018-07-09 11:37 13M 
    [   ]cmake-3.12.0-rc3.tar.gz2018-07-09 11:37 7.7M 
    [   ]cmake-3.12.0-rc3.zip2018-07-09 11:37 13M 
    [   ]cmake-3.12.0-win32-x86.msi2018-07-17 09:58 16M 
    [   ]cmake-3.12.0-win32-x86.zip2018-07-17 09:58 23M 
    [   ]cmake-3.12.0-win64-x64.msi2018-07-17 09:58 18M 
    [   ]cmake-3.12.0-win64-x64.zip2018-07-17 09:58 25M 
    [   ]cmake-3.12.0.tar.Z2018-07-17 09:58 13M 
    [   ]cmake-3.12.0.tar.gz2018-07-17 09:58 7.7M 
    [   ]cmake-3.12.0.zip2018-07-17 09:57 13M 
    [   ]cmake-3.12.1-Darwin-x86_64.dmg2018-08-09 11:21 27M 
    [   ]cmake-3.12.1-Darwin-x86_64.tar.gz2018-08-09 11:21 27M 
    [TXT]cmake-3.12.1-Linux-x86_64.sh2018-08-09 11:21 33M 
    [   ]cmake-3.12.1-Linux-x86_64.tar.gz2018-08-09 11:21 33M 
    [TXT]cmake-3.12.1-SHA-256.txt2018-08-09 11:20 1.0K 
    [TXT]cmake-3.12.1-SHA-256.txt.asc2018-08-09 11:20 833  
    [   ]cmake-3.12.1-win32-x86.msi2018-08-09 11:20 16M 
    [   ]cmake-3.12.1-win32-x86.zip2018-08-09 11:20 23M 
    [   ]cmake-3.12.1-win64-x64.msi2018-08-09 11:20 18M 
    [   ]cmake-3.12.1-win64-x64.zip2018-08-09 11:20 25M 
    [   ]cmake-3.12.1.tar.Z2018-08-09 11:20 13M 
    [   ]cmake-3.12.1.tar.gz2018-08-09 11:20 7.7M 
    [   ]cmake-3.12.1.zip2018-08-09 11:20 13M 
    [   ]cmake-3.12.2-Darwin-x86_64.dmg2018-09-07 12:51 28M 
    [   ]cmake-3.12.2-Darwin-x86_64.tar.gz2018-09-07 12:51 28M 
    [TXT]cmake-3.12.2-Linux-x86_64.sh2018-09-07 12:51 33M 
    [   ]cmake-3.12.2-Linux-x86_64.tar.gz2018-09-07 12:51 33M 
    [TXT]cmake-3.12.2-SHA-256.txt2018-09-07 12:51 1.0K 
    [TXT]cmake-3.12.2-SHA-256.txt.asc2018-09-07 12:51 833  
    [   ]cmake-3.12.2-win32-x86.msi2018-09-07 12:51 16M 
    [   ]cmake-3.12.2-win32-x86.zip2018-09-07 12:51 22M 
    [   ]cmake-3.12.2-win64-x64.msi2018-09-07 12:51 18M 
    [   ]cmake-3.12.2-win64-x64.zip2018-09-07 12:51 25M 
    [   ]cmake-3.12.2.tar.Z2018-09-07 12:51 13M 
    [   ]cmake-3.12.2.tar.gz2018-09-07 12:51 8.0M 
    [   ]cmake-3.12.2.zip2018-09-07 12:51 13M 
    [   ]cmake-3.12.3-Darwin-x86_64.dmg2018-10-03 10:46 28M 
    [   ]cmake-3.12.3-Darwin-x86_64.tar.gz2018-10-03 10:46 28M 
    [TXT]cmake-3.12.3-Linux-x86_64.sh2018-10-03 10:45 33M 
    [   ]cmake-3.12.3-Linux-x86_64.tar.gz2018-10-03 10:45 33M 
    [TXT]cmake-3.12.3-SHA-256.txt2018-10-03 10:45 1.0K 
    [TXT]cmake-3.12.3-SHA-256.txt.asc2018-10-03 10:45 833  
    [   ]cmake-3.12.3-win32-x86.msi2018-10-03 10:45 16M 
    [   ]cmake-3.12.3-win32-x86.zip2018-10-03 10:45 22M 
    [   ]cmake-3.12.3-win64-x64.msi2018-10-03 10:45 18M 
    [   ]cmake-3.12.3-win64-x64.zip2018-10-03 10:45 25M 
    [   ]cmake-3.12.3.tar.Z2018-10-03 10:45 13M 
    [   ]cmake-3.12.3.tar.gz2018-10-03 10:45 8.0M 
    [   ]cmake-3.12.3.zip2018-10-03 10:45 13M 
    [   ]cmake-3.12.4-Darwin-x86_64.dmg2018-11-02 13:51 28M 
    [   ]cmake-3.12.4-Darwin-x86_64.tar.gz2018-11-02 13:51 28M 
    [TXT]cmake-3.12.4-Linux-x86_64.sh2018-11-02 13:51 33M 
    [   ]cmake-3.12.4-Linux-x86_64.tar.gz2018-11-02 13:51 33M 
    [TXT]cmake-3.12.4-SHA-256.txt2018-11-02 13:51 1.0K 
    [TXT]cmake-3.12.4-SHA-256.txt.asc2018-11-02 13:51 833  
    [   ]cmake-3.12.4-win32-x86.msi2018-11-02 13:51 16M 
    [   ]cmake-3.12.4-win32-x86.zip2018-11-02 13:51 22M 
    [   ]cmake-3.12.4-win64-x64.msi2018-11-02 13:51 18M 
    [   ]cmake-3.12.4-win64-x64.zip2018-11-02 13:51 25M 
    [   ]cmake-3.12.4.tar.Z2018-11-02 13:51 13M 
    [   ]cmake-3.12.4.tar.gz2018-11-02 13:51 8.0M 
    [   ]cmake-3.12.4.zip2018-11-02 13:51 13M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.13/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.13/index.html new file mode 100644 index 0000000..b50a791 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.13/index.html @@ -0,0 +1,131 @@ + + + + Index of /files/v3.13 + + +

    Index of /files/v3.13

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.13.0-Darwin-x86_64.dmg2018-11-20 14:05 31M 
    [   ]cmake-3.13.0-Darwin-x86_64.tar.gz2018-11-20 14:05 31M 
    [TXT]cmake-3.13.0-Linux-x86_64.sh2018-11-20 14:05 37M 
    [   ]cmake-3.13.0-Linux-x86_64.tar.gz2018-11-20 14:05 37M 
    [TXT]cmake-3.13.0-SHA-256.txt2018-11-20 14:05 1.0K 
    [TXT]cmake-3.13.0-SHA-256.txt.asc2018-11-20 14:05 833  
    [   ]cmake-3.13.0-rc1-Darwin-x86_64.dmg2018-10-09 11:32 29M 
    [   ]cmake-3.13.0-rc1-Darwin-x86_64.tar.gz2018-10-09 11:32 28M 
    [TXT]cmake-3.13.0-rc1-Linux-x86_64.sh2018-10-09 11:32 34M 
    [   ]cmake-3.13.0-rc1-Linux-x86_64.tar.gz2018-10-09 11:32 34M 
    [TXT]cmake-3.13.0-rc1-SHA-256.txt2018-10-09 11:32 1.0K 
    [TXT]cmake-3.13.0-rc1-SHA-256.txt.asc2018-10-09 11:32 833  
    [   ]cmake-3.13.0-rc1-win32-x86.msi2018-10-09 11:32 16M 
    [   ]cmake-3.13.0-rc1-win32-x86.zip2018-10-09 11:32 23M 
    [   ]cmake-3.13.0-rc1-win64-x64.msi2018-10-09 11:32 19M 
    [   ]cmake-3.13.0-rc1-win64-x64.zip2018-10-09 11:32 26M 
    [   ]cmake-3.13.0-rc1.tar.Z2018-10-09 11:32 13M 
    [   ]cmake-3.13.0-rc1.tar.gz2018-10-09 11:32 8.2M 
    [   ]cmake-3.13.0-rc1.zip2018-10-09 11:32 13M 
    [   ]cmake-3.13.0-rc2-Darwin-x86_64.dmg2018-10-25 10:28 31M 
    [   ]cmake-3.13.0-rc2-Darwin-x86_64.tar.gz2018-10-25 10:28 31M 
    [TXT]cmake-3.13.0-rc2-Linux-x86_64.sh2018-10-25 10:27 37M 
    [   ]cmake-3.13.0-rc2-Linux-x86_64.tar.gz2018-10-25 10:27 37M 
    [TXT]cmake-3.13.0-rc2-SHA-256.txt2018-10-25 10:27 1.0K 
    [TXT]cmake-3.13.0-rc2-SHA-256.txt.asc2018-10-25 10:27 833  
    [   ]cmake-3.13.0-rc2-win32-x86.msi2018-10-25 10:27 19M 
    [   ]cmake-3.13.0-rc2-win32-x86.zip2018-10-25 10:27 25M 
    [   ]cmake-3.13.0-rc2-win64-x64.msi2018-10-25 10:27 21M 
    [   ]cmake-3.13.0-rc2-win64-x64.zip2018-10-25 10:27 28M 
    [   ]cmake-3.13.0-rc2.tar.Z2018-10-25 10:27 13M 
    [   ]cmake-3.13.0-rc2.tar.gz2018-10-25 10:27 8.2M 
    [   ]cmake-3.13.0-rc2.zip2018-10-25 10:27 13M 
    [   ]cmake-3.13.0-rc3-Darwin-x86_64.dmg2018-11-07 12:11 31M 
    [   ]cmake-3.13.0-rc3-Darwin-x86_64.tar.gz2018-11-07 12:11 31M 
    [TXT]cmake-3.13.0-rc3-Linux-x86_64.sh2018-11-07 12:11 37M 
    [   ]cmake-3.13.0-rc3-Linux-x86_64.tar.gz2018-11-07 12:11 37M 
    [TXT]cmake-3.13.0-rc3-SHA-256.txt2018-11-07 12:11 1.0K 
    [TXT]cmake-3.13.0-rc3-SHA-256.txt.asc2018-11-07 12:11 833  
    [   ]cmake-3.13.0-rc3-win32-x86.msi2018-11-07 12:11 19M 
    [   ]cmake-3.13.0-rc3-win32-x86.zip2018-11-07 12:11 25M 
    [   ]cmake-3.13.0-rc3-win64-x64.msi2018-11-07 12:11 21M 
    [   ]cmake-3.13.0-rc3-win64-x64.zip2018-11-07 12:11 28M 
    [   ]cmake-3.13.0-rc3.tar.Z2018-11-07 12:11 13M 
    [   ]cmake-3.13.0-rc3.tar.gz2018-11-07 12:11 8.2M 
    [   ]cmake-3.13.0-rc3.zip2018-11-07 12:11 13M 
    [   ]cmake-3.13.0-win32-x86.msi2018-11-20 14:05 19M 
    [   ]cmake-3.13.0-win32-x86.zip2018-11-20 14:05 25M 
    [   ]cmake-3.13.0-win64-x64.msi2018-11-20 14:05 21M 
    [   ]cmake-3.13.0-win64-x64.zip2018-11-20 14:05 28M 
    [   ]cmake-3.13.0.tar.Z2018-11-20 14:04 13M 
    [   ]cmake-3.13.0.tar.gz2018-11-20 14:04 8.2M 
    [   ]cmake-3.13.0.zip2018-11-20 14:04 13M 
    [   ]cmake-3.13.1-Darwin-x86_64.dmg2018-11-28 08:50 31M 
    [   ]cmake-3.13.1-Darwin-x86_64.tar.gz2018-11-28 08:50 31M 
    [TXT]cmake-3.13.1-Linux-x86_64.sh2018-11-28 08:50 37M 
    [   ]cmake-3.13.1-Linux-x86_64.tar.gz2018-11-28 08:50 37M 
    [TXT]cmake-3.13.1-SHA-256.txt2018-11-28 08:50 1.0K 
    [TXT]cmake-3.13.1-SHA-256.txt.asc2018-11-28 08:50 833  
    [   ]cmake-3.13.1-win32-x86.msi2018-11-28 08:50 19M 
    [   ]cmake-3.13.1-win32-x86.zip2018-11-28 08:50 25M 
    [   ]cmake-3.13.1-win64-x64.msi2018-11-28 08:50 21M 
    [   ]cmake-3.13.1-win64-x64.zip2018-11-28 08:50 28M 
    [   ]cmake-3.13.1.tar.Z2018-11-28 08:50 13M 
    [   ]cmake-3.13.1.tar.gz2018-11-28 08:50 8.2M 
    [   ]cmake-3.13.1.zip2018-11-28 08:50 13M 
    [   ]cmake-3.13.2-Darwin-x86_64.dmg2018-12-13 08:41 31M 
    [   ]cmake-3.13.2-Darwin-x86_64.tar.gz2018-12-13 08:41 31M 
    [TXT]cmake-3.13.2-Linux-x86_64.sh2018-12-13 08:41 37M 
    [   ]cmake-3.13.2-Linux-x86_64.tar.gz2018-12-13 08:41 37M 
    [TXT]cmake-3.13.2-SHA-256.txt2018-12-13 08:41 1.0K 
    [TXT]cmake-3.13.2-SHA-256.txt.asc2018-12-13 08:41 833  
    [   ]cmake-3.13.2-win32-x86.msi2018-12-13 08:41 19M 
    [   ]cmake-3.13.2-win32-x86.zip2018-12-13 08:41 25M 
    [   ]cmake-3.13.2-win64-x64.msi2018-12-13 08:41 21M 
    [   ]cmake-3.13.2-win64-x64.zip2018-12-13 08:41 28M 
    [   ]cmake-3.13.2.tar.Z2018-12-13 08:41 13M 
    [   ]cmake-3.13.2.tar.gz2018-12-13 08:41 8.2M 
    [   ]cmake-3.13.2.zip2018-12-13 08:41 13M 
    [   ]cmake-3.13.3-Darwin-x86_64.dmg2019-01-14 09:26 31M 
    [   ]cmake-3.13.3-Darwin-x86_64.tar.gz2019-01-14 09:26 31M 
    [TXT]cmake-3.13.3-Linux-x86_64.sh2019-01-14 09:25 37M 
    [   ]cmake-3.13.3-Linux-x86_64.tar.gz2019-01-14 09:25 37M 
    [TXT]cmake-3.13.3-SHA-256.txt2019-01-14 09:25 1.0K 
    [TXT]cmake-3.13.3-SHA-256.txt.asc2019-01-14 09:25 833  
    [   ]cmake-3.13.3-win32-x86.msi2019-01-14 09:25 19M 
    [   ]cmake-3.13.3-win32-x86.zip2019-01-14 09:25 25M 
    [   ]cmake-3.13.3-win64-x64.msi2019-01-14 09:25 21M 
    [   ]cmake-3.13.3-win64-x64.zip2019-01-14 09:25 28M 
    [   ]cmake-3.13.3.tar.Z2019-01-14 09:25 13M 
    [   ]cmake-3.13.3.tar.gz2019-01-14 09:25 8.2M 
    [   ]cmake-3.13.3.zip2019-01-14 09:25 13M 
    [   ]cmake-3.13.4-Darwin-x86_64.dmg2019-02-01 13:20 31M 
    [   ]cmake-3.13.4-Darwin-x86_64.tar.gz2019-02-01 13:20 31M 
    [TXT]cmake-3.13.4-Linux-x86_64.sh2019-02-01 13:20 37M 
    [   ]cmake-3.13.4-Linux-x86_64.tar.gz2019-02-01 13:20 37M 
    [TXT]cmake-3.13.4-SHA-256.txt2019-02-01 13:20 1.0K 
    [TXT]cmake-3.13.4-SHA-256.txt.asc2019-02-01 13:20 833  
    [   ]cmake-3.13.4-win32-x86.msi2019-02-01 13:20 19M 
    [   ]cmake-3.13.4-win32-x86.zip2019-02-01 13:20 25M 
    [   ]cmake-3.13.4-win64-x64.msi2019-02-01 13:20 21M 
    [   ]cmake-3.13.4-win64-x64.zip2019-02-01 13:20 28M 
    [   ]cmake-3.13.4.tar.Z2019-02-01 13:20 13M 
    [   ]cmake-3.13.4.tar.gz2019-02-01 13:20 8.2M 
    [   ]cmake-3.13.4.zip2019-02-01 13:20 13M 
    [   ]cmake-3.13.5-Darwin-x86_64.dmg2019-05-14 12:44 31M 
    [   ]cmake-3.13.5-Darwin-x86_64.tar.gz2019-05-14 12:44 31M 
    [TXT]cmake-3.13.5-Linux-x86_64.sh2019-05-14 12:44 37M 
    [   ]cmake-3.13.5-Linux-x86_64.tar.gz2019-05-14 12:44 37M 
    [TXT]cmake-3.13.5-SHA-256.txt2019-05-14 12:43 1.0K 
    [TXT]cmake-3.13.5-SHA-256.txt.asc2019-05-14 12:43 833  
    [   ]cmake-3.13.5-win32-x86.msi2019-05-14 12:43 19M 
    [   ]cmake-3.13.5-win32-x86.zip2019-05-14 12:43 25M 
    [   ]cmake-3.13.5-win64-x64.msi2019-05-14 12:43 21M 
    [   ]cmake-3.13.5-win64-x64.zip2019-05-14 12:43 28M 
    [   ]cmake-3.13.5.tar.Z2019-05-14 12:43 13M 
    [   ]cmake-3.13.5.tar.gz2019-05-14 12:43 8.2M 
    [   ]cmake-3.13.5.zip2019-05-14 12:43 13M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.14/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.14/index.html new file mode 100644 index 0000000..bec9c14 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.14/index.html @@ -0,0 +1,170 @@ + + + + Index of /files/v3.14 + + +

    Index of /files/v3.14

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.14.0-Darwin-x86_64.dmg2019-03-14 11:37 33M 
    [   ]cmake-3.14.0-Darwin-x86_64.tar.gz2019-03-14 11:37 32M 
    [TXT]cmake-3.14.0-Linux-x86_64.sh2019-03-14 11:37 35M 
    [   ]cmake-3.14.0-Linux-x86_64.tar.gz2019-03-14 11:37 35M 
    [TXT]cmake-3.14.0-SHA-256.txt2019-03-22 11:03 1.0K 
    [TXT]cmake-3.14.0-SHA-256.txt.asc2019-03-22 11:03 833  
    [   ]cmake-3.14.0-rc1-Darwin-x86_64.dmg2019-02-07 10:36 33M 
    [   ]cmake-3.14.0-rc1-Darwin-x86_64.tar.gz2019-02-07 10:36 32M 
    [TXT]cmake-3.14.0-rc1-Linux-x86_64.sh2019-02-07 10:36 35M 
    [   ]cmake-3.14.0-rc1-Linux-x86_64.tar.gz2019-02-07 10:36 35M 
    [TXT]cmake-3.14.0-rc1-SHA-256.txt2019-02-07 10:36 1.0K 
    [TXT]cmake-3.14.0-rc1-SHA-256.txt.asc2019-02-07 10:36 833  
    [   ]cmake-3.14.0-rc1-win32-x86.msi2019-02-07 10:36 19M 
    [   ]cmake-3.14.0-rc1-win32-x86.zip2019-02-07 10:36 26M 
    [   ]cmake-3.14.0-rc1-win64-x64.msi2019-02-07 10:36 22M 
    [   ]cmake-3.14.0-rc1-win64-x64.zip2019-02-07 10:36 29M 
    [   ]cmake-3.14.0-rc1.tar.Z2019-02-07 10:36 14M 
    [   ]cmake-3.14.0-rc1.tar.gz2019-02-07 10:35 8.4M 
    [   ]cmake-3.14.0-rc1.zip2019-02-07 10:35 14M 
    [   ]cmake-3.14.0-rc2-Darwin-x86_64.dmg2019-02-15 10:04 33M 
    [   ]cmake-3.14.0-rc2-Darwin-x86_64.tar.gz2019-02-15 10:04 32M 
    [TXT]cmake-3.14.0-rc2-Linux-x86_64.sh2019-02-15 10:04 35M 
    [   ]cmake-3.14.0-rc2-Linux-x86_64.tar.gz2019-02-15 10:04 35M 
    [TXT]cmake-3.14.0-rc2-SHA-256.txt2019-02-15 10:04 1.0K 
    [TXT]cmake-3.14.0-rc2-SHA-256.txt.asc2019-02-15 10:04 833  
    [   ]cmake-3.14.0-rc2-win32-x86.msi2019-02-15 10:04 19M 
    [   ]cmake-3.14.0-rc2-win32-x86.zip2019-02-15 10:04 26M 
    [   ]cmake-3.14.0-rc2-win64-x64.msi2019-02-15 10:03 22M 
    [   ]cmake-3.14.0-rc2-win64-x64.zip2019-02-15 10:03 29M 
    [   ]cmake-3.14.0-rc2.tar.Z2019-02-15 10:03 14M 
    [   ]cmake-3.14.0-rc2.tar.gz2019-02-15 10:03 8.4M 
    [   ]cmake-3.14.0-rc2.zip2019-02-15 10:03 14M 
    [   ]cmake-3.14.0-rc3-Darwin-x86_64.dmg2019-03-01 11:20 33M 
    [   ]cmake-3.14.0-rc3-Darwin-x86_64.tar.gz2019-03-01 11:20 32M 
    [TXT]cmake-3.14.0-rc3-Linux-x86_64.sh2019-03-01 11:20 35M 
    [   ]cmake-3.14.0-rc3-Linux-x86_64.tar.gz2019-03-01 11:20 35M 
    [TXT]cmake-3.14.0-rc3-SHA-256.txt2019-03-01 11:20 1.0K 
    [TXT]cmake-3.14.0-rc3-SHA-256.txt.asc2019-03-01 11:20 833  
    [   ]cmake-3.14.0-rc3-win32-x86.msi2019-03-01 11:20 19M 
    [   ]cmake-3.14.0-rc3-win32-x86.zip2019-03-01 11:20 26M 
    [   ]cmake-3.14.0-rc3-win64-x64.msi2019-03-01 11:20 22M 
    [   ]cmake-3.14.0-rc3-win64-x64.zip2019-03-01 11:20 29M 
    [   ]cmake-3.14.0-rc3.tar.Z2019-03-01 11:20 14M 
    [   ]cmake-3.14.0-rc3.tar.gz2019-03-01 11:19 8.4M 
    [   ]cmake-3.14.0-rc3.zip2019-03-01 11:19 14M 
    [   ]cmake-3.14.0-rc4-Darwin-x86_64.dmg2019-03-08 11:09 33M 
    [   ]cmake-3.14.0-rc4-Darwin-x86_64.tar.gz2019-03-08 11:09 32M 
    [TXT]cmake-3.14.0-rc4-Linux-x86_64.sh2019-03-08 11:09 35M 
    [   ]cmake-3.14.0-rc4-Linux-x86_64.tar.gz2019-03-08 11:09 35M 
    [TXT]cmake-3.14.0-rc4-SHA-256.txt2019-03-08 11:09 1.0K 
    [TXT]cmake-3.14.0-rc4-SHA-256.txt.asc2019-03-08 11:09 833  
    [   ]cmake-3.14.0-rc4-win32-x86.msi2019-03-08 11:08 20M 
    [   ]cmake-3.14.0-rc4-win32-x86.zip2019-03-08 11:08 26M 
    [   ]cmake-3.14.0-rc4-win64-x64.msi2019-03-08 11:08 22M 
    [   ]cmake-3.14.0-rc4-win64-x64.zip2019-03-08 11:08 30M 
    [   ]cmake-3.14.0-rc4.tar.Z2019-03-08 11:08 14M 
    [   ]cmake-3.14.0-rc4.tar.gz2019-03-08 11:08 8.4M 
    [   ]cmake-3.14.0-rc4.zip2019-03-08 11:08 14M 
    [   ]cmake-3.14.0-win32-x86.msi2019-03-14 11:36 20M 
    [   ]cmake-3.14.0-win32-x86.zip2019-03-14 11:36 26M 
    [   ]cmake-3.14.0-win64-x64.msi2019-03-22 11:03 22M 
    [   ]cmake-3.14.0-win64-x64.zip2019-03-22 11:03 30M 
    [   ]cmake-3.14.0.tar.Z2019-03-14 11:36 14M 
    [   ]cmake-3.14.0.tar.gz2019-03-14 11:36 8.4M 
    [   ]cmake-3.14.0.zip2019-03-14 11:36 14M 
    [   ]cmake-3.14.1-Darwin-x86_64.dmg2019-03-29 12:20 33M 
    [   ]cmake-3.14.1-Darwin-x86_64.tar.gz2019-03-29 12:20 32M 
    [TXT]cmake-3.14.1-Linux-x86_64.sh2019-03-29 12:20 35M 
    [   ]cmake-3.14.1-Linux-x86_64.tar.gz2019-03-29 12:19 35M 
    [TXT]cmake-3.14.1-SHA-256.txt2019-03-29 12:19 1.0K 
    [TXT]cmake-3.14.1-SHA-256.txt.asc2019-03-29 12:19 833  
    [   ]cmake-3.14.1-win32-x86.msi2019-03-29 12:19 20M 
    [   ]cmake-3.14.1-win32-x86.zip2019-03-29 12:19 26M 
    [   ]cmake-3.14.1-win64-x64.msi2019-03-29 12:19 22M 
    [   ]cmake-3.14.1-win64-x64.zip2019-03-29 12:19 30M 
    [   ]cmake-3.14.1.tar.Z2019-03-29 12:19 14M 
    [   ]cmake-3.14.1.tar.gz2019-03-29 12:19 8.4M 
    [   ]cmake-3.14.1.zip2019-03-29 12:19 14M 
    [   ]cmake-3.14.2-Darwin-x86_64.dmg2019-04-12 10:19 33M 
    [   ]cmake-3.14.2-Darwin-x86_64.tar.gz2019-04-12 10:19 32M 
    [TXT]cmake-3.14.2-Linux-x86_64.sh2019-04-12 10:19 35M 
    [   ]cmake-3.14.2-Linux-x86_64.tar.gz2019-04-12 10:19 35M 
    [TXT]cmake-3.14.2-SHA-256.txt2019-04-12 10:19 1.0K 
    [TXT]cmake-3.14.2-SHA-256.txt.asc2019-04-12 10:19 833  
    [   ]cmake-3.14.2-win32-x86.msi2019-04-12 10:19 20M 
    [   ]cmake-3.14.2-win32-x86.zip2019-04-12 10:19 26M 
    [   ]cmake-3.14.2-win64-x64.msi2019-04-12 10:19 22M 
    [   ]cmake-3.14.2-win64-x64.zip2019-04-12 10:19 30M 
    [   ]cmake-3.14.2.tar.Z2019-04-12 10:19 14M 
    [   ]cmake-3.14.2.tar.gz2019-04-12 10:19 8.4M 
    [   ]cmake-3.14.2.zip2019-04-12 10:19 14M 
    [   ]cmake-3.14.3-Darwin-x86_64.dmg2019-04-22 10:40 33M 
    [   ]cmake-3.14.3-Darwin-x86_64.tar.gz2019-04-22 10:39 32M 
    [TXT]cmake-3.14.3-Linux-x86_64.sh2019-04-22 10:39 35M 
    [   ]cmake-3.14.3-Linux-x86_64.tar.gz2019-04-22 10:39 35M 
    [TXT]cmake-3.14.3-SHA-256.txt2019-04-22 10:39 1.0K 
    [TXT]cmake-3.14.3-SHA-256.txt.asc2019-04-22 10:39 833  
    [   ]cmake-3.14.3-win32-x86.msi2019-04-22 10:39 20M 
    [   ]cmake-3.14.3-win32-x86.zip2019-04-22 10:39 26M 
    [   ]cmake-3.14.3-win64-x64.msi2019-04-22 10:39 22M 
    [   ]cmake-3.14.3-win64-x64.zip2019-04-22 10:39 30M 
    [   ]cmake-3.14.3.tar.Z2019-04-22 10:39 14M 
    [   ]cmake-3.14.3.tar.gz2019-04-22 10:39 8.4M 
    [   ]cmake-3.14.3.zip2019-04-22 10:39 14M 
    [   ]cmake-3.14.4-Darwin-x86_64.dmg2019-05-14 14:00 33M 
    [   ]cmake-3.14.4-Darwin-x86_64.tar.gz2019-05-14 14:00 32M 
    [TXT]cmake-3.14.4-Linux-x86_64.sh2019-05-14 14:00 35M 
    [   ]cmake-3.14.4-Linux-x86_64.tar.gz2019-05-14 13:59 35M 
    [TXT]cmake-3.14.4-SHA-256.txt2019-05-14 13:59 1.0K 
    [TXT]cmake-3.14.4-SHA-256.txt.asc2019-05-14 13:59 833  
    [   ]cmake-3.14.4-win32-x86.msi2019-05-14 13:59 20M 
    [   ]cmake-3.14.4-win32-x86.zip2019-05-14 13:59 26M 
    [   ]cmake-3.14.4-win64-x64.msi2019-05-14 13:59 22M 
    [   ]cmake-3.14.4-win64-x64.zip2019-05-14 13:59 30M 
    [   ]cmake-3.14.4.tar.Z2019-05-14 13:59 14M 
    [   ]cmake-3.14.4.tar.gz2019-05-14 13:59 8.4M 
    [   ]cmake-3.14.4.zip2019-05-14 13:59 14M 
    [   ]cmake-3.14.5-Darwin-x86_64.dmg2019-05-31 12:39 33M 
    [   ]cmake-3.14.5-Darwin-x86_64.tar.gz2019-05-31 12:39 32M 
    [TXT]cmake-3.14.5-Linux-x86_64.sh2019-05-31 12:39 35M 
    [   ]cmake-3.14.5-Linux-x86_64.tar.gz2019-05-31 12:39 35M 
    [TXT]cmake-3.14.5-SHA-256.txt2019-05-31 12:39 1.0K 
    [TXT]cmake-3.14.5-SHA-256.txt.asc2019-05-31 12:39 833  
    [   ]cmake-3.14.5-win32-x86.msi2019-05-31 12:39 20M 
    [   ]cmake-3.14.5-win32-x86.zip2019-05-31 12:39 26M 
    [   ]cmake-3.14.5-win64-x64.msi2019-05-31 12:39 22M 
    [   ]cmake-3.14.5-win64-x64.zip2019-05-31 12:39 30M 
    [   ]cmake-3.14.5.tar.Z2019-05-31 12:39 14M 
    [   ]cmake-3.14.5.tar.gz2019-05-31 12:39 8.4M 
    [   ]cmake-3.14.5.zip2019-05-31 12:40 14M 
    [   ]cmake-3.14.6-Darwin-x86_64.dmg2019-07-16 09:33 33M 
    [   ]cmake-3.14.6-Darwin-x86_64.tar.gz2019-07-16 09:33 32M 
    [TXT]cmake-3.14.6-Linux-x86_64.sh2019-07-16 09:33 35M 
    [   ]cmake-3.14.6-Linux-x86_64.tar.gz2019-07-16 09:33 35M 
    [TXT]cmake-3.14.6-SHA-256.txt2019-07-16 09:33 1.0K 
    [TXT]cmake-3.14.6-SHA-256.txt.asc2019-07-16 09:33 833  
    [   ]cmake-3.14.6-win32-x86.msi2019-07-16 09:34 20M 
    [   ]cmake-3.14.6-win32-x86.zip2019-07-16 09:34 26M 
    [   ]cmake-3.14.6-win64-x64.msi2019-07-16 09:34 22M 
    [   ]cmake-3.14.6-win64-x64.zip2019-07-16 09:34 30M 
    [   ]cmake-3.14.6.tar.Z2019-07-16 09:34 14M 
    [   ]cmake-3.14.6.tar.gz2019-07-16 09:34 8.5M 
    [   ]cmake-3.14.6.zip2019-07-16 09:34 14M 
    [   ]cmake-3.14.7-Darwin-x86_64.dmg2019-10-02 10:48 33M 
    [   ]cmake-3.14.7-Darwin-x86_64.tar.gz2019-10-02 10:48 32M 
    [TXT]cmake-3.14.7-Linux-x86_64.sh2019-10-02 10:48 35M 
    [   ]cmake-3.14.7-Linux-x86_64.tar.gz2019-10-02 10:48 35M 
    [TXT]cmake-3.14.7-SHA-256.txt2019-10-02 10:48 1.0K 
    [TXT]cmake-3.14.7-SHA-256.txt.asc2019-10-02 10:48 833  
    [   ]cmake-3.14.7-win32-x86.msi2019-10-02 10:48 20M 
    [   ]cmake-3.14.7-win32-x86.zip2019-10-02 10:48 26M 
    [   ]cmake-3.14.7-win64-x64.msi2019-10-02 10:48 21M 
    [   ]cmake-3.14.7-win64-x64.zip2019-10-02 10:48 29M 
    [   ]cmake-3.14.7.tar.Z2019-10-02 10:48 14M 
    [   ]cmake-3.14.7.tar.gz2019-10-02 10:48 8.5M 
    [   ]cmake-3.14.7.zip2019-10-02 10:48 14M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.15/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.15/index.html new file mode 100644 index 0000000..9272676 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.15/index.html @@ -0,0 +1,157 @@ + + + + Index of /files/v3.15 + + +

    Index of /files/v3.15

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.15.0-Darwin-x86_64.dmg2019-07-17 10:38 33M 
    [   ]cmake-3.15.0-Darwin-x86_64.tar.gz2019-07-17 10:38 33M 
    [TXT]cmake-3.15.0-Linux-x86_64.sh2019-07-17 10:38 37M 
    [   ]cmake-3.15.0-Linux-x86_64.tar.gz2019-07-17 10:38 37M 
    [TXT]cmake-3.15.0-SHA-256.txt2019-07-17 10:38 1.0K 
    [TXT]cmake-3.15.0-SHA-256.txt.asc2019-07-17 10:38 833  
    [   ]cmake-3.15.0-rc1-Darwin-x86_64.dmg2019-06-04 14:22 33M 
    [   ]cmake-3.15.0-rc1-Darwin-x86_64.tar.gz2019-06-04 14:22 33M 
    [TXT]cmake-3.15.0-rc1-Linux-x86_64.sh2019-06-04 14:22 37M 
    [   ]cmake-3.15.0-rc1-Linux-x86_64.tar.gz2019-06-04 14:22 37M 
    [TXT]cmake-3.15.0-rc1-SHA-256.txt2019-06-04 14:22 1.0K 
    [TXT]cmake-3.15.0-rc1-SHA-256.txt.asc2019-06-04 14:22 833  
    [   ]cmake-3.15.0-rc1-win32-x86.msi2019-06-04 14:23 20M 
    [   ]cmake-3.15.0-rc1-win32-x86.zip2019-06-04 14:23 28M 
    [   ]cmake-3.15.0-rc1-win64-x64.msi2019-06-04 14:23 23M 
    [   ]cmake-3.15.0-rc1-win64-x64.zip2019-06-04 14:23 31M 
    [   ]cmake-3.15.0-rc1.tar.Z2019-06-04 14:23 14M 
    [   ]cmake-3.15.0-rc1.tar.gz2019-06-04 14:22 8.8M 
    [   ]cmake-3.15.0-rc1.zip2019-06-04 14:23 15M 
    [   ]cmake-3.15.0-rc2-Darwin-x86_64.dmg2019-06-19 10:04 33M 
    [   ]cmake-3.15.0-rc2-Darwin-x86_64.tar.gz2019-06-19 10:04 33M 
    [TXT]cmake-3.15.0-rc2-Linux-x86_64.sh2019-06-19 10:04 37M 
    [   ]cmake-3.15.0-rc2-Linux-x86_64.tar.gz2019-06-19 10:04 37M 
    [TXT]cmake-3.15.0-rc2-SHA-256.txt2019-06-19 10:04 1.0K 
    [TXT]cmake-3.15.0-rc2-SHA-256.txt.asc2019-06-19 10:04 833  
    [   ]cmake-3.15.0-rc2-win32-x86.msi2019-06-19 10:04 20M 
    [   ]cmake-3.15.0-rc2-win32-x86.zip2019-06-19 10:04 28M 
    [   ]cmake-3.15.0-rc2-win64-x64.msi2019-06-19 10:04 23M 
    [   ]cmake-3.15.0-rc2-win64-x64.zip2019-06-19 10:04 31M 
    [   ]cmake-3.15.0-rc2.tar.Z2019-06-19 10:04 14M 
    [   ]cmake-3.15.0-rc2.tar.gz2019-06-19 10:04 8.8M 
    [   ]cmake-3.15.0-rc2.zip2019-06-19 10:04 15M 
    [   ]cmake-3.15.0-rc3-Darwin-x86_64.dmg2019-06-27 11:33 33M 
    [   ]cmake-3.15.0-rc3-Darwin-x86_64.tar.gz2019-06-27 11:33 33M 
    [TXT]cmake-3.15.0-rc3-Linux-x86_64.sh2019-06-27 11:33 37M 
    [   ]cmake-3.15.0-rc3-Linux-x86_64.tar.gz2019-06-27 11:33 37M 
    [TXT]cmake-3.15.0-rc3-SHA-256.txt2019-06-27 11:33 1.0K 
    [TXT]cmake-3.15.0-rc3-SHA-256.txt.asc2019-06-27 11:33 833  
    [   ]cmake-3.15.0-rc3-win32-x86.msi2019-06-27 11:33 20M 
    [   ]cmake-3.15.0-rc3-win32-x86.zip2019-06-27 11:33 28M 
    [   ]cmake-3.15.0-rc3-win64-x64.msi2019-06-27 11:33 23M 
    [   ]cmake-3.15.0-rc3-win64-x64.zip2019-06-27 11:33 31M 
    [   ]cmake-3.15.0-rc3.tar.Z2019-06-27 11:33 14M 
    [   ]cmake-3.15.0-rc3.tar.gz2019-06-27 11:33 8.8M 
    [   ]cmake-3.15.0-rc3.zip2019-06-27 11:33 15M 
    [   ]cmake-3.15.0-rc4-Darwin-x86_64.dmg2019-07-10 15:06 33M 
    [   ]cmake-3.15.0-rc4-Darwin-x86_64.tar.gz2019-07-10 15:07 33M 
    [TXT]cmake-3.15.0-rc4-Linux-x86_64.sh2019-07-10 15:07 37M 
    [   ]cmake-3.15.0-rc4-Linux-x86_64.tar.gz2019-07-10 15:07 37M 
    [TXT]cmake-3.15.0-rc4-SHA-256.txt2019-07-10 15:07 1.0K 
    [TXT]cmake-3.15.0-rc4-SHA-256.txt.asc2019-07-10 15:07 833  
    [   ]cmake-3.15.0-rc4-win32-x86.msi2019-07-10 15:07 20M 
    [   ]cmake-3.15.0-rc4-win32-x86.zip2019-07-10 15:07 28M 
    [   ]cmake-3.15.0-rc4-win64-x64.msi2019-07-10 15:07 23M 
    [   ]cmake-3.15.0-rc4-win64-x64.zip2019-07-10 15:07 31M 
    [   ]cmake-3.15.0-rc4.tar.Z2019-07-10 15:07 14M 
    [   ]cmake-3.15.0-rc4.tar.gz2019-07-10 15:07 8.8M 
    [   ]cmake-3.15.0-rc4.zip2019-07-10 15:07 15M 
    [   ]cmake-3.15.0-win32-x86.msi2019-07-17 10:38 20M 
    [   ]cmake-3.15.0-win32-x86.zip2019-07-17 10:38 27M 
    [   ]cmake-3.15.0-win64-x64.msi2019-07-17 10:38 23M 
    [   ]cmake-3.15.0-win64-x64.zip2019-07-17 10:38 31M 
    [   ]cmake-3.15.0.tar.Z2019-07-17 10:38 14M 
    [   ]cmake-3.15.0.tar.gz2019-07-17 10:38 8.8M 
    [   ]cmake-3.15.0.zip2019-07-17 10:38 15M 
    [   ]cmake-3.15.1-Darwin-x86_64.dmg2019-07-26 10:14 33M 
    [   ]cmake-3.15.1-Darwin-x86_64.tar.gz2019-07-26 10:14 33M 
    [TXT]cmake-3.15.1-Linux-x86_64.sh2019-07-26 10:14 37M 
    [   ]cmake-3.15.1-Linux-x86_64.tar.gz2019-07-26 10:14 37M 
    [TXT]cmake-3.15.1-SHA-256.txt2019-07-26 10:14 1.0K 
    [TXT]cmake-3.15.1-SHA-256.txt.asc2019-07-26 10:14 833  
    [   ]cmake-3.15.1-win32-x86.msi2019-07-26 10:14 20M 
    [   ]cmake-3.15.1-win32-x86.zip2019-07-26 10:14 27M 
    [   ]cmake-3.15.1-win64-x64.msi2019-07-26 10:14 23M 
    [   ]cmake-3.15.1-win64-x64.zip2019-07-26 10:14 31M 
    [   ]cmake-3.15.1.tar.Z2019-07-26 10:14 14M 
    [   ]cmake-3.15.1.tar.gz2019-07-26 10:14 8.8M 
    [   ]cmake-3.15.1.zip2019-07-26 10:15 15M 
    [   ]cmake-3.15.2-Darwin-x86_64.dmg2019-08-07 15:05 33M 
    [   ]cmake-3.15.2-Darwin-x86_64.tar.gz2019-08-07 15:05 33M 
    [TXT]cmake-3.15.2-Linux-x86_64.sh2019-08-07 15:05 37M 
    [   ]cmake-3.15.2-Linux-x86_64.tar.gz2019-08-07 15:05 37M 
    [TXT]cmake-3.15.2-SHA-256.txt2019-08-07 15:05 1.0K 
    [TXT]cmake-3.15.2-SHA-256.txt.asc2019-08-07 15:05 833  
    [   ]cmake-3.15.2-win32-x86.msi2019-08-07 15:05 20M 
    [   ]cmake-3.15.2-win32-x86.zip2019-08-07 15:05 27M 
    [   ]cmake-3.15.2-win64-x64.msi2019-08-07 15:05 23M 
    [   ]cmake-3.15.2-win64-x64.zip2019-08-07 15:05 31M 
    [   ]cmake-3.15.2.tar.Z2019-08-07 15:05 14M 
    [   ]cmake-3.15.2.tar.gz2019-08-07 15:05 8.8M 
    [   ]cmake-3.15.2.zip2019-08-07 15:05 15M 
    [   ]cmake-3.15.3-Darwin-x86_64.dmg2019-09-04 11:13 33M 
    [   ]cmake-3.15.3-Darwin-x86_64.tar.gz2019-09-04 11:13 33M 
    [TXT]cmake-3.15.3-Linux-x86_64.sh2019-09-04 11:13 37M 
    [   ]cmake-3.15.3-Linux-x86_64.tar.gz2019-09-04 11:13 37M 
    [TXT]cmake-3.15.3-SHA-256.txt2019-09-04 11:13 1.0K 
    [TXT]cmake-3.15.3-SHA-256.txt.asc2019-09-04 11:13 833  
    [   ]cmake-3.15.3-win32-x86.msi2019-09-04 11:13 20M 
    [   ]cmake-3.15.3-win32-x86.zip2019-09-04 11:13 27M 
    [   ]cmake-3.15.3-win64-x64.msi2019-09-04 11:13 23M 
    [   ]cmake-3.15.3-win64-x64.zip2019-09-04 11:13 31M 
    [   ]cmake-3.15.3.tar.Z2019-09-04 11:13 14M 
    [   ]cmake-3.15.3.tar.gz2019-09-04 11:13 8.8M 
    [   ]cmake-3.15.3.zip2019-09-04 11:13 15M 
    [   ]cmake-3.15.4-Darwin-x86_64.dmg2019-10-02 10:45 33M 
    [   ]cmake-3.15.4-Darwin-x86_64.tar.gz2019-10-02 10:45 33M 
    [TXT]cmake-3.15.4-Linux-x86_64.sh2019-10-02 10:45 37M 
    [   ]cmake-3.15.4-Linux-x86_64.tar.gz2019-10-02 10:45 37M 
    [TXT]cmake-3.15.4-SHA-256.txt2019-10-02 10:45 1.0K 
    [TXT]cmake-3.15.4-SHA-256.txt.asc2019-10-02 10:45 833  
    [   ]cmake-3.15.4-win32-x86.msi2019-10-02 10:45 20M 
    [   ]cmake-3.15.4-win32-x86.zip2019-10-02 10:45 27M 
    [   ]cmake-3.15.4-win64-x64.msi2019-10-02 10:45 22M 
    [   ]cmake-3.15.4-win64-x64.zip2019-10-02 10:45 30M 
    [   ]cmake-3.15.4.tar.Z2019-10-02 10:45 14M 
    [   ]cmake-3.15.4.tar.gz2019-10-02 10:45 8.8M 
    [   ]cmake-3.15.4.zip2019-10-02 10:45 15M 
    [   ]cmake-3.15.5-Darwin-x86_64.dmg2019-10-30 10:49 33M 
    [   ]cmake-3.15.5-Darwin-x86_64.tar.gz2019-10-30 10:49 33M 
    [TXT]cmake-3.15.5-Linux-x86_64.sh2019-10-30 10:49 37M 
    [   ]cmake-3.15.5-Linux-x86_64.tar.gz2019-10-30 10:49 37M 
    [TXT]cmake-3.15.5-SHA-256.txt2019-10-30 10:49 1.0K 
    [TXT]cmake-3.15.5-SHA-256.txt.asc2019-10-30 10:49 833  
    [   ]cmake-3.15.5-win32-x86.msi2019-10-30 10:49 20M 
    [   ]cmake-3.15.5-win32-x86.zip2019-10-30 10:49 27M 
    [   ]cmake-3.15.5-win64-x64.msi2019-10-30 10:49 22M 
    [   ]cmake-3.15.5-win64-x64.zip2019-10-30 10:49 30M 
    [   ]cmake-3.15.5.tar.Z2019-10-30 10:49 14M 
    [   ]cmake-3.15.5.tar.gz2019-10-30 10:49 8.8M 
    [   ]cmake-3.15.5.zip2019-10-30 10:49 15M 
    [   ]cmake-3.15.6-Darwin-x86_64.dmg2019-12-16 11:30 34M 
    [   ]cmake-3.15.6-Darwin-x86_64.tar.gz2019-12-16 11:30 33M 
    [TXT]cmake-3.15.6-Linux-x86_64.sh2019-12-16 11:30 37M 
    [   ]cmake-3.15.6-Linux-x86_64.tar.gz2019-12-16 11:30 37M 
    [TXT]cmake-3.15.6-SHA-256.txt2019-12-16 11:30 1.0K 
    [TXT]cmake-3.15.6-SHA-256.txt.asc2019-12-16 11:30 833  
    [   ]cmake-3.15.6-win32-x86.msi2019-12-16 11:30 21M 
    [   ]cmake-3.15.6-win32-x86.zip2019-12-16 11:30 28M 
    [   ]cmake-3.15.6-win64-x64.msi2019-12-16 11:30 22M 
    [   ]cmake-3.15.6-win64-x64.zip2019-12-16 11:30 30M 
    [   ]cmake-3.15.6.tar.Z2019-12-16 11:30 14M 
    [   ]cmake-3.15.6.tar.gz2019-12-16 11:30 8.8M 
    [   ]cmake-3.15.6.zip2019-12-16 11:30 15M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.16/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.16/index.html new file mode 100644 index 0000000..74f9b40 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.16/index.html @@ -0,0 +1,86 @@ + + + + Index of /files/v3.16 + + +

    Index of /files/v3.16

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.16.0-Darwin-x86_64.dmg2019-11-26 10:27 35M 
    [   ]cmake-3.16.0-Darwin-x86_64.tar.gz2019-11-26 10:27 34M 
    [TXT]cmake-3.16.0-Linux-x86_64.sh2019-11-26 10:27 38M 
    [   ]cmake-3.16.0-Linux-x86_64.tar.gz2019-11-26 10:27 38M 
    [TXT]cmake-3.16.0-SHA-256.txt2019-11-26 10:27 932  
    [TXT]cmake-3.16.0-SHA-256.txt.asc2019-11-26 10:27 833  
    [   ]cmake-3.16.0-rc1-Darwin-x86_64.dmg2019-10-10 14:18 34M 
    [   ]cmake-3.16.0-rc1-Darwin-x86_64.tar.gz2019-10-10 14:18 34M 
    [TXT]cmake-3.16.0-rc1-Linux-x86_64.sh2019-10-10 14:18 38M 
    [   ]cmake-3.16.0-rc1-Linux-x86_64.tar.gz2019-10-10 14:18 38M 
    [TXT]cmake-3.16.0-rc1-SHA-256.txt2019-10-10 14:18 972  
    [TXT]cmake-3.16.0-rc1-SHA-256.txt.asc2019-10-10 14:18 833  
    [   ]cmake-3.16.0-rc1-win32-x86.msi2019-10-10 14:18 21M 
    [   ]cmake-3.16.0-rc1-win32-x86.zip2019-10-10 14:18 28M 
    [   ]cmake-3.16.0-rc1-win64-x64.msi2019-10-10 14:18 23M 
    [   ]cmake-3.16.0-rc1-win64-x64.zip2019-10-10 14:18 31M 
    [   ]cmake-3.16.0-rc1.tar.gz2019-10-10 14:18 8.7M 
    [   ]cmake-3.16.0-rc1.zip2019-10-10 14:18 14M 
    [   ]cmake-3.16.0-rc2-Darwin-x86_64.dmg2019-10-18 10:47 34M 
    [   ]cmake-3.16.0-rc2-Darwin-x86_64.tar.gz2019-10-18 10:47 34M 
    [TXT]cmake-3.16.0-rc2-Linux-x86_64.sh2019-10-18 10:47 38M 
    [   ]cmake-3.16.0-rc2-Linux-x86_64.tar.gz2019-10-18 10:47 38M 
    [TXT]cmake-3.16.0-rc2-SHA-256.txt2019-10-18 10:47 972  
    [TXT]cmake-3.16.0-rc2-SHA-256.txt.asc2019-10-18 10:47 833  
    [   ]cmake-3.16.0-rc2-win32-x86.msi2019-10-18 10:47 21M 
    [   ]cmake-3.16.0-rc2-win32-x86.zip2019-10-18 10:47 28M 
    [   ]cmake-3.16.0-rc2-win64-x64.msi2019-10-18 10:47 23M 
    [   ]cmake-3.16.0-rc2-win64-x64.zip2019-10-18 10:47 31M 
    [   ]cmake-3.16.0-rc2.tar.gz2019-10-18 10:47 8.7M 
    [   ]cmake-3.16.0-rc2.zip2019-10-18 10:47 14M 
    [   ]cmake-3.16.0-rc3-Darwin-x86_64.dmg2019-10-31 12:09 34M 
    [   ]cmake-3.16.0-rc3-Darwin-x86_64.tar.gz2019-10-31 12:09 34M 
    [TXT]cmake-3.16.0-rc3-Linux-x86_64.sh2019-10-31 12:09 38M 
    [   ]cmake-3.16.0-rc3-Linux-x86_64.tar.gz2019-10-31 12:10 38M 
    [TXT]cmake-3.16.0-rc3-SHA-256.txt2019-10-31 12:10 972  
    [TXT]cmake-3.16.0-rc3-SHA-256.txt.asc2019-10-31 12:10 833  
    [   ]cmake-3.16.0-rc3-win32-x86.msi2019-10-31 12:10 21M 
    [   ]cmake-3.16.0-rc3-win32-x86.zip2019-10-31 12:10 28M 
    [   ]cmake-3.16.0-rc3-win64-x64.msi2019-10-31 12:10 23M 
    [   ]cmake-3.16.0-rc3-win64-x64.zip2019-10-31 12:10 31M 
    [   ]cmake-3.16.0-rc3.tar.gz2019-10-31 12:10 8.7M 
    [   ]cmake-3.16.0-rc3.zip2019-10-31 12:10 14M 
    [   ]cmake-3.16.0-rc4-Darwin-x86_64.dmg2019-11-18 17:01 35M 
    [   ]cmake-3.16.0-rc4-Darwin-x86_64.tar.gz2019-11-18 17:01 34M 
    [TXT]cmake-3.16.0-rc4-Linux-x86_64.sh2019-11-18 17:01 38M 
    [   ]cmake-3.16.0-rc4-Linux-x86_64.tar.gz2019-11-18 17:01 38M 
    [TXT]cmake-3.16.0-rc4-SHA-256.txt2019-11-18 17:01 972  
    [TXT]cmake-3.16.0-rc4-SHA-256.txt.asc2019-11-18 17:01 833  
    [   ]cmake-3.16.0-rc4-win32-x86.msi2019-11-18 17:01 21M 
    [   ]cmake-3.16.0-rc4-win32-x86.zip2019-11-18 17:01 28M 
    [   ]cmake-3.16.0-rc4-win64-x64.msi2019-11-18 17:01 23M 
    [   ]cmake-3.16.0-rc4-win64-x64.zip2019-11-18 17:01 31M 
    [   ]cmake-3.16.0-rc4.tar.gz2019-11-18 17:01 8.7M 
    [   ]cmake-3.16.0-rc4.zip2019-11-18 17:01 14M 
    [   ]cmake-3.16.0-win32-x86.msi2019-11-26 10:27 21M 
    [   ]cmake-3.16.0-win32-x86.zip2019-11-26 10:27 28M 
    [   ]cmake-3.16.0-win64-x64.msi2019-11-26 10:27 23M 
    [   ]cmake-3.16.0-win64-x64.zip2019-11-26 10:27 31M 
    [   ]cmake-3.16.0.tar.gz2019-11-26 10:27 8.7M 
    [   ]cmake-3.16.0.zip2019-11-26 10:27 14M 
    [   ]cmake-3.16.1-Darwin-x86_64.dmg2019-12-10 10:42 35M 
    [   ]cmake-3.16.1-Darwin-x86_64.tar.gz2019-12-10 10:42 34M 
    [TXT]cmake-3.16.1-Linux-x86_64.sh2019-12-10 10:42 38M 
    [   ]cmake-3.16.1-Linux-x86_64.tar.gz2019-12-10 10:42 38M 
    [TXT]cmake-3.16.1-SHA-256.txt2019-12-10 10:42 932  
    [TXT]cmake-3.16.1-SHA-256.txt.asc2019-12-10 10:42 833  
    [   ]cmake-3.16.1-win32-x86.msi2019-12-10 10:42 21M 
    [   ]cmake-3.16.1-win32-x86.zip2019-12-10 10:42 28M 
    [   ]cmake-3.16.1-win64-x64.msi2019-12-10 10:42 23M 
    [   ]cmake-3.16.1-win64-x64.zip2019-12-10 10:42 31M 
    [   ]cmake-3.16.1.tar.gz2019-12-10 10:42 8.7M 
    [   ]cmake-3.16.1.zip2019-12-10 10:42 14M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.2/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.2/index.html new file mode 100644 index 0000000..a8c6c7f --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.2/index.html @@ -0,0 +1,132 @@ + + + + Index of /files/v3.2 + + +

    Index of /files/v3.2

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.2.0-1-src.tar.bz22015-03-10 09:02 4.9M 
    [   ]cmake-3.2.0-1.tar.bz22015-03-10 09:02 9.4M 
    [   ]cmake-3.2.0-Darwin-universal.dmg2015-03-10 09:02 47M 
    [   ]cmake-3.2.0-Darwin-universal.tar.Z2015-03-10 09:02 66M 
    [   ]cmake-3.2.0-Darwin-universal.tar.gz2015-03-10 09:01 46M 
    [   ]cmake-3.2.0-Darwin-x86_64.dmg2015-03-10 09:01 27M 
    [   ]cmake-3.2.0-Darwin-x86_64.tar.Z2015-03-10 09:01 38M 
    [   ]cmake-3.2.0-Darwin-x86_64.tar.gz2015-03-10 09:01 26M 
    [TXT]cmake-3.2.0-Linux-i386.sh2015-03-10 09:01 25M 
    [   ]cmake-3.2.0-Linux-i386.tar.Z2015-03-10 09:01 36M 
    [   ]cmake-3.2.0-Linux-i386.tar.gz2015-03-10 09:01 25M 
    [TXT]cmake-3.2.0-Linux-x86_64.sh2015-03-10 09:01 26M 
    [   ]cmake-3.2.0-Linux-x86_64.tar.Z2015-03-10 09:01 36M 
    [   ]cmake-3.2.0-Linux-x86_64.tar.gz2015-03-10 09:01 26M 
    [TXT]cmake-3.2.0-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.2.0-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.2.0-rc1-Darwin-universal.dmg2015-02-13 15:03 47M 
    [   ]cmake-3.2.0-rc1-Darwin-universal.tar.Z2015-02-13 15:03 66M 
    [   ]cmake-3.2.0-rc1-Darwin-universal.tar.gz2015-02-13 15:03 46M 
    [   ]cmake-3.2.0-rc1-Darwin-x86_64.dmg2015-02-13 15:03 30M 
    [   ]cmake-3.2.0-rc1-Darwin-x86_64.tar.Z2015-02-13 15:03 42M 
    [   ]cmake-3.2.0-rc1-Darwin-x86_64.tar.gz2015-02-13 15:03 29M 
    [TXT]cmake-3.2.0-rc1-Linux-i386.sh2015-02-13 15:03 25M 
    [   ]cmake-3.2.0-rc1-Linux-i386.tar.Z2015-02-13 15:03 36M 
    [   ]cmake-3.2.0-rc1-Linux-i386.tar.gz2015-02-13 15:03 25M 
    [TXT]cmake-3.2.0-rc1-Linux-x86_64.sh2015-02-13 15:03 26M 
    [   ]cmake-3.2.0-rc1-Linux-x86_64.tar.Z2015-02-13 15:03 36M 
    [   ]cmake-3.2.0-rc1-Linux-x86_64.tar.gz2015-02-13 15:02 26M 
    [TXT]cmake-3.2.0-rc1-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.2.0-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.2.0-rc1-win32-x86.exe2015-02-13 15:02 12M 
    [   ]cmake-3.2.0-rc1-win32-x86.zip2015-02-13 15:02 16M 
    [   ]cmake-3.2.0-rc1.tar.Z2015-02-13 15:02 9.9M 
    [   ]cmake-3.2.0-rc1.tar.gz2015-02-13 15:02 6.1M 
    [   ]cmake-3.2.0-rc1.zip2015-02-13 15:02 9.8M 
    [   ]cmake-3.2.0-rc2-Darwin-universal.dmg2015-02-24 08:51 47M 
    [   ]cmake-3.2.0-rc2-Darwin-universal.tar.Z2015-02-24 08:51 66M 
    [   ]cmake-3.2.0-rc2-Darwin-universal.tar.gz2015-02-24 08:51 46M 
    [   ]cmake-3.2.0-rc2-Darwin-x86_64.dmg2015-02-24 08:51 27M 
    [   ]cmake-3.2.0-rc2-Darwin-x86_64.tar.Z2015-02-24 08:51 38M 
    [   ]cmake-3.2.0-rc2-Darwin-x86_64.tar.gz2015-02-24 08:51 26M 
    [TXT]cmake-3.2.0-rc2-Linux-i386.sh2015-02-24 08:50 25M 
    [   ]cmake-3.2.0-rc2-Linux-i386.tar.Z2015-02-24 08:50 36M 
    [   ]cmake-3.2.0-rc2-Linux-i386.tar.gz2015-02-24 08:50 25M 
    [TXT]cmake-3.2.0-rc2-Linux-x86_64.sh2015-02-24 08:50 26M 
    [   ]cmake-3.2.0-rc2-Linux-x86_64.tar.Z2015-02-24 08:50 36M 
    [   ]cmake-3.2.0-rc2-Linux-x86_64.tar.gz2015-02-24 08:50 26M 
    [TXT]cmake-3.2.0-rc2-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.2.0-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.2.0-rc2-win32-x86.exe2015-02-24 08:50 11M 
    [   ]cmake-3.2.0-rc2-win32-x86.zip2015-02-24 08:50 15M 
    [   ]cmake-3.2.0-rc2.tar.Z2015-02-24 08:50 10M 
    [   ]cmake-3.2.0-rc2.tar.gz2015-02-24 08:50 6.1M 
    [   ]cmake-3.2.0-rc2.zip2015-02-24 08:50 9.8M 
    [   ]cmake-3.2.0-win32-x86.exe2015-03-10 09:01 11M 
    [   ]cmake-3.2.0-win32-x86.zip2015-03-10 09:01 15M 
    [   ]cmake-3.2.0.tar.Z2015-03-10 09:01 9.9M 
    [   ]cmake-3.2.0.tar.gz2015-03-10 09:01 6.1M 
    [   ]cmake-3.2.0.zip2015-03-10 09:01 9.7M 
    [   ]cmake-3.2.1-1-src.tar.bz22015-03-11 09:10 4.9M 
    [   ]cmake-3.2.1-1.tar.bz22015-03-11 09:10 9.5M 
    [   ]cmake-3.2.1-Darwin-universal.dmg2015-03-11 09:10 47M 
    [   ]cmake-3.2.1-Darwin-universal.tar.Z2015-03-11 09:10 66M 
    [   ]cmake-3.2.1-Darwin-universal.tar.gz2015-03-11 09:10 46M 
    [   ]cmake-3.2.1-Darwin-x86_64.dmg2015-03-11 09:10 27M 
    [   ]cmake-3.2.1-Darwin-x86_64.tar.Z2015-03-11 09:10 38M 
    [   ]cmake-3.2.1-Darwin-x86_64.tar.gz2015-03-11 09:10 26M 
    [TXT]cmake-3.2.1-Linux-i386.sh2015-03-11 09:10 25M 
    [   ]cmake-3.2.1-Linux-i386.tar.Z2015-03-11 09:09 36M 
    [   ]cmake-3.2.1-Linux-i386.tar.gz2015-03-11 09:09 25M 
    [TXT]cmake-3.2.1-Linux-x86_64.sh2015-03-11 09:09 26M 
    [   ]cmake-3.2.1-Linux-x86_64.tar.Z2015-03-11 09:09 36M 
    [   ]cmake-3.2.1-Linux-x86_64.tar.gz2015-03-11 09:09 26M 
    [TXT]cmake-3.2.1-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.2.1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.2.1-win32-x86.exe2015-03-11 09:09 11M 
    [   ]cmake-3.2.1-win32-x86.zip2015-03-11 09:09 15M 
    [   ]cmake-3.2.1.tar.Z2015-03-11 09:09 10M 
    [   ]cmake-3.2.1.tar.gz2015-03-11 09:09 6.1M 
    [   ]cmake-3.2.1.zip2015-03-11 09:09 9.7M 
    [   ]cmake-3.2.2-Darwin-universal.dmg2015-04-14 13:45 47M 
    [   ]cmake-3.2.2-Darwin-universal.tar.Z2015-04-14 13:45 66M 
    [   ]cmake-3.2.2-Darwin-universal.tar.gz2015-04-14 13:45 46M 
    [   ]cmake-3.2.2-Darwin-x86_64.dmg2015-04-14 13:45 27M 
    [   ]cmake-3.2.2-Darwin-x86_64.tar.Z2015-04-14 13:45 38M 
    [   ]cmake-3.2.2-Darwin-x86_64.tar.gz2015-04-14 13:45 26M 
    [TXT]cmake-3.2.2-Linux-i386.sh2015-04-14 13:44 25M 
    [   ]cmake-3.2.2-Linux-i386.tar.Z2015-04-14 13:44 36M 
    [   ]cmake-3.2.2-Linux-i386.tar.gz2015-04-14 13:44 25M 
    [TXT]cmake-3.2.2-Linux-x86_64.sh2015-04-14 13:44 26M 
    [   ]cmake-3.2.2-Linux-x86_64.tar.Z2015-04-14 13:44 36M 
    [   ]cmake-3.2.2-Linux-x86_64.tar.gz2015-04-14 13:44 26M 
    [TXT]cmake-3.2.2-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.2.2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.2.2-win32-x86.exe2015-04-14 13:44 11M 
    [   ]cmake-3.2.2-win32-x86.zip2015-04-14 13:44 15M 
    [   ]cmake-3.2.2.tar.Z2015-04-14 13:44 9.9M 
    [   ]cmake-3.2.2.tar.gz2015-04-14 13:44 6.1M 
    [   ]cmake-3.2.2.zip2015-04-14 13:44 9.7M 
    [   ]cmake-3.2.3-Darwin-universal.dmg2015-06-01 17:04 47M 
    [   ]cmake-3.2.3-Darwin-universal.tar.Z2015-06-01 17:04 66M 
    [   ]cmake-3.2.3-Darwin-universal.tar.gz2015-06-01 17:04 46M 
    [   ]cmake-3.2.3-Darwin-x86_64.dmg2015-06-01 17:04 27M 
    [   ]cmake-3.2.3-Darwin-x86_64.tar.Z2015-06-01 17:04 38M 
    [   ]cmake-3.2.3-Darwin-x86_64.tar.gz2015-06-01 17:04 26M 
    [TXT]cmake-3.2.3-Linux-i386.sh2015-06-01 17:04 25M 
    [   ]cmake-3.2.3-Linux-i386.tar.Z2015-06-01 17:03 36M 
    [   ]cmake-3.2.3-Linux-i386.tar.gz2015-06-01 17:03 25M 
    [TXT]cmake-3.2.3-Linux-x86_64.sh2015-06-01 17:03 26M 
    [   ]cmake-3.2.3-Linux-x86_64.tar.Z2015-06-01 17:03 36M 
    [   ]cmake-3.2.3-Linux-x86_64.tar.gz2015-06-01 17:03 26M 
    [TXT]cmake-3.2.3-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.2.3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.2.3-win32-x86.exe2015-06-01 17:03 11M 
    [   ]cmake-3.2.3-win32-x86.zip2015-06-01 17:03 15M 
    [   ]cmake-3.2.3.tar.Z2015-06-01 17:03 9.9M 
    [   ]cmake-3.2.3.tar.gz2015-06-01 17:03 6.1M 
    [   ]cmake-3.2.3.zip2015-06-01 17:03 9.7M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.3/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.3/index.html new file mode 100644 index 0000000..d053736 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.3/index.html @@ -0,0 +1,163 @@ + + + + Index of /files/v3.3 + + +

    Index of /files/v3.3

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.3.0-1-src.tar.bz22015-07-23 16:39 5.0M 
    [   ]cmake-3.3.0-1.tar.bz22015-07-23 16:39 9.8M 
    [   ]cmake-3.3.0-Darwin-universal.dmg2015-07-23 16:39 48M 
    [   ]cmake-3.3.0-Darwin-universal.tar.Z2015-07-23 16:39 68M 
    [   ]cmake-3.3.0-Darwin-universal.tar.gz2015-07-23 16:39 47M 
    [   ]cmake-3.3.0-Darwin-x86_64.dmg2015-07-23 16:39 22M 
    [   ]cmake-3.3.0-Darwin-x86_64.tar.Z2015-07-23 16:39 31M 
    [   ]cmake-3.3.0-Darwin-x86_64.tar.gz2015-07-23 16:38 21M 
    [TXT]cmake-3.3.0-Linux-i386.sh2015-07-23 16:38 26M 
    [   ]cmake-3.3.0-Linux-i386.tar.Z2015-07-23 16:38 37M 
    [   ]cmake-3.3.0-Linux-i386.tar.gz2015-07-23 16:38 26M 
    [TXT]cmake-3.3.0-Linux-x86_64.sh2015-07-23 16:38 27M 
    [   ]cmake-3.3.0-Linux-x86_64.tar.Z2015-07-23 16:38 37M 
    [   ]cmake-3.3.0-Linux-x86_64.tar.gz2015-07-23 16:38 27M 
    [TXT]cmake-3.3.0-SHA-256.txt2015-08-13 14:42 1.6K 
    [TXT]cmake-3.3.0-SHA-256.txt.asc2015-08-13 14:42 819  
    [   ]cmake-3.3.0-rc1-1-src.tar.bz22015-06-05 09:01 9.8M 
    [TXT]cmake-3.3.0-rc1-1.patch2015-06-05 09:01 0  
    [TXT]cmake-3.3.0-rc1-1.sh2015-06-05 09:01 1.5K 
    [   ]cmake-3.3.0-rc1-1.tar.bz22015-06-05 09:01 9.8M 
    [   ]cmake-3.3.0-rc1-Darwin-universal.dmg2015-06-05 09:01 48M 
    [   ]cmake-3.3.0-rc1-Darwin-universal.tar.Z2015-06-05 09:01 68M 
    [   ]cmake-3.3.0-rc1-Darwin-universal.tar.gz2015-06-05 09:01 47M 
    [   ]cmake-3.3.0-rc1-Darwin-x86_64.dmg2015-06-05 09:01 27M 
    [   ]cmake-3.3.0-rc1-Darwin-x86_64.tar.Z2015-06-05 09:01 38M 
    [   ]cmake-3.3.0-rc1-Darwin-x86_64.tar.gz2015-06-05 09:01 27M 
    [TXT]cmake-3.3.0-rc1-Linux-i386.sh2015-06-05 09:00 26M 
    [   ]cmake-3.3.0-rc1-Linux-i386.tar.Z2015-06-05 09:00 36M 
    [   ]cmake-3.3.0-rc1-Linux-i386.tar.gz2015-06-05 09:00 26M 
    [TXT]cmake-3.3.0-rc1-Linux-x86_64.sh2015-06-05 09:00 26M 
    [   ]cmake-3.3.0-rc1-Linux-x86_64.tar.Z2015-06-05 09:00 37M 
    [   ]cmake-3.3.0-rc1-Linux-x86_64.tar.gz2015-06-05 09:00 26M 
    [TXT]cmake-3.3.0-rc1-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.3.0-rc1-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.3.0-rc1-win32-x86.exe2015-06-05 09:00 12M 
    [   ]cmake-3.3.0-rc1-win32-x86.zip2015-06-05 09:00 16M 
    [   ]cmake-3.3.0-rc1.tar.Z2015-06-05 09:00 10M 
    [   ]cmake-3.3.0-rc1.tar.gz2015-06-05 09:00 6.3M 
    [   ]cmake-3.3.0-rc1.zip2015-06-05 09:00 10M 
    [   ]cmake-3.3.0-rc2-1-src.tar.bz22015-06-10 15:27 5.0M 
    [   ]cmake-3.3.0-rc2-1.tar.bz22015-06-10 15:27 9.8M 
    [   ]cmake-3.3.0-rc2-Darwin-universal.dmg2015-06-10 15:27 48M 
    [   ]cmake-3.3.0-rc2-Darwin-universal.tar.Z2015-06-10 15:27 68M 
    [   ]cmake-3.3.0-rc2-Darwin-universal.tar.gz2015-06-10 15:27 47M 
    [   ]cmake-3.3.0-rc2-Darwin-x86_64.dmg2015-06-10 15:27 21M 
    [   ]cmake-3.3.0-rc2-Darwin-x86_64.tar.Z2015-06-10 15:27 31M 
    [   ]cmake-3.3.0-rc2-Darwin-x86_64.tar.gz2015-06-10 15:27 21M 
    [TXT]cmake-3.3.0-rc2-Linux-i386.sh2015-06-10 15:27 26M 
    [   ]cmake-3.3.0-rc2-Linux-i386.tar.Z2015-06-10 15:27 36M 
    [   ]cmake-3.3.0-rc2-Linux-i386.tar.gz2015-06-10 15:27 26M 
    [TXT]cmake-3.3.0-rc2-Linux-x86_64.sh2015-06-10 15:27 26M 
    [   ]cmake-3.3.0-rc2-Linux-x86_64.tar.Z2015-06-10 15:27 37M 
    [   ]cmake-3.3.0-rc2-Linux-x86_64.tar.gz2015-06-10 15:27 26M 
    [TXT]cmake-3.3.0-rc2-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.3.0-rc2-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.3.0-rc2-win32-x86.exe2015-06-10 15:27 12M 
    [   ]cmake-3.3.0-rc2-win32-x86.zip2015-06-10 15:27 16M 
    [   ]cmake-3.3.0-rc2.tar.Z2015-06-10 15:27 10M 
    [   ]cmake-3.3.0-rc2.tar.gz2015-06-10 15:27 6.3M 
    [   ]cmake-3.3.0-rc2.zip2015-06-10 15:27 10M 
    [   ]cmake-3.3.0-rc3-1-src.tar.bz22015-06-26 13:34 5.0M 
    [   ]cmake-3.3.0-rc3-1.tar.bz22015-06-26 13:34 9.8M 
    [   ]cmake-3.3.0-rc3-Darwin-universal.dmg2015-06-26 13:34 48M 
    [   ]cmake-3.3.0-rc3-Darwin-universal.tar.Z2015-06-26 13:34 68M 
    [   ]cmake-3.3.0-rc3-Darwin-universal.tar.gz2015-06-26 13:34 47M 
    [   ]cmake-3.3.0-rc3-Darwin-x86_64.dmg2015-06-26 13:34 22M 
    [   ]cmake-3.3.0-rc3-Darwin-x86_64.tar.Z2015-06-26 13:34 31M 
    [   ]cmake-3.3.0-rc3-Darwin-x86_64.tar.gz2015-06-26 13:34 21M 
    [TXT]cmake-3.3.0-rc3-Linux-i386.sh2015-06-26 13:34 26M 
    [   ]cmake-3.3.0-rc3-Linux-i386.tar.Z2015-06-26 13:34 37M 
    [   ]cmake-3.3.0-rc3-Linux-i386.tar.gz2015-06-26 13:34 26M 
    [TXT]cmake-3.3.0-rc3-Linux-x86_64.sh2015-06-26 13:34 27M 
    [   ]cmake-3.3.0-rc3-Linux-x86_64.tar.Z2015-06-26 13:34 37M 
    [   ]cmake-3.3.0-rc3-Linux-x86_64.tar.gz2015-06-26 13:34 27M 
    [TXT]cmake-3.3.0-rc3-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.3.0-rc3-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.3.0-rc3-win32-x86.exe2015-06-26 13:34 12M 
    [   ]cmake-3.3.0-rc3-win32-x86.zip2015-06-26 13:34 16M 
    [   ]cmake-3.3.0-rc3.tar.Z2015-06-26 13:34 10M 
    [   ]cmake-3.3.0-rc3.tar.gz2015-06-26 13:34 6.3M 
    [   ]cmake-3.3.0-rc3.zip2015-06-26 13:34 10M 
    [   ]cmake-3.3.0-rc4-1-src.tar.bz22015-07-13 15:56 5.0M 
    [   ]cmake-3.3.0-rc4-1.tar.bz22015-07-13 15:56 9.8M 
    [   ]cmake-3.3.0-rc4-Darwin-universal.dmg2015-07-13 15:56 48M 
    [   ]cmake-3.3.0-rc4-Darwin-universal.tar.Z2015-07-13 15:56 68M 
    [   ]cmake-3.3.0-rc4-Darwin-universal.tar.gz2015-07-13 15:55 47M 
    [   ]cmake-3.3.0-rc4-Darwin-x86_64.dmg2015-07-13 15:55 22M 
    [   ]cmake-3.3.0-rc4-Darwin-x86_64.tar.Z2015-07-13 15:55 31M 
    [   ]cmake-3.3.0-rc4-Darwin-x86_64.tar.gz2015-07-13 15:55 21M 
    [TXT]cmake-3.3.0-rc4-Linux-i386.sh2015-07-13 15:55 26M 
    [   ]cmake-3.3.0-rc4-Linux-i386.tar.Z2015-07-13 15:55 37M 
    [   ]cmake-3.3.0-rc4-Linux-i386.tar.gz2015-07-13 15:55 26M 
    [TXT]cmake-3.3.0-rc4-Linux-x86_64.sh2015-07-13 15:55 27M 
    [   ]cmake-3.3.0-rc4-Linux-x86_64.tar.Z2015-07-13 15:55 37M 
    [   ]cmake-3.3.0-rc4-Linux-x86_64.tar.gz2015-07-13 15:55 27M 
    [TXT]cmake-3.3.0-rc4-SHA-256.txt2016-04-13 12:48 1.6K 
    [TXT]cmake-3.3.0-rc4-SHA-256.txt.asc2016-04-13 12:48 819  
    [   ]cmake-3.3.0-rc4-win32-x86.exe2015-07-13 15:55 12M 
    [   ]cmake-3.3.0-rc4-win32-x86.zip2015-07-13 15:55 16M 
    [   ]cmake-3.3.0-rc4.tar.Z2015-07-13 15:55 10M 
    [   ]cmake-3.3.0-rc4.tar.gz2015-07-13 15:55 6.3M 
    [   ]cmake-3.3.0-rc4.zip2015-07-13 15:55 10M 
    [   ]cmake-3.3.0-win32-x86.exe2015-07-23 16:38 12M 
    [   ]cmake-3.3.0-win32-x86.zip2015-07-23 16:38 16M 
    [   ]cmake-3.3.0.tar.Z2015-07-23 16:38 10M 
    [   ]cmake-3.3.0.tar.gz2015-07-23 16:38 6.3M 
    [   ]cmake-3.3.0.zip2015-07-23 16:38 10M 
    [   ]cmake-3.3.1-1-src.tar.bz22015-08-13 15:55 5.0M 
    [   ]cmake-3.3.1-1.tar.bz22015-08-13 15:55 9.8M 
    [   ]cmake-3.3.1-Darwin-universal.dmg2015-08-13 15:55 48M 
    [   ]cmake-3.3.1-Darwin-universal.tar.Z2015-08-13 15:55 68M 
    [   ]cmake-3.3.1-Darwin-universal.tar.gz2015-08-13 15:55 47M 
    [   ]cmake-3.3.1-Darwin-x86_64.dmg2015-08-13 15:55 22M 
    [   ]cmake-3.3.1-Darwin-x86_64.tar.Z2015-08-13 15:55 31M 
    [   ]cmake-3.3.1-Darwin-x86_64.tar.gz2015-08-13 15:55 21M 
    [TXT]cmake-3.3.1-Linux-i386.sh2015-08-13 15:55 26M 
    [   ]cmake-3.3.1-Linux-i386.tar.Z2015-08-13 15:55 37M 
    [   ]cmake-3.3.1-Linux-i386.tar.gz2015-08-13 15:55 26M 
    [TXT]cmake-3.3.1-Linux-x86_64.sh2015-08-13 15:55 27M 
    [   ]cmake-3.3.1-Linux-x86_64.tar.Z2015-08-13 15:55 37M 
    [   ]cmake-3.3.1-Linux-x86_64.tar.gz2015-08-13 15:55 27M 
    [TXT]cmake-3.3.1-SHA-256.txt2015-08-13 15:55 1.3K 
    [TXT]cmake-3.3.1-SHA-256.txt.asc2015-08-13 15:55 819  
    [   ]cmake-3.3.1-win32-x86.exe2015-08-13 15:55 12M 
    [   ]cmake-3.3.1-win32-x86.zip2015-08-13 15:55 16M 
    [   ]cmake-3.3.1.tar.Z2015-08-13 15:54 10M 
    [   ]cmake-3.3.1.tar.gz2015-08-13 15:54 6.3M 
    [   ]cmake-3.3.1.zip2015-08-13 15:54 10M 
    [   ]cmake-3.3.2-1-src.tar.bz22015-09-17 14:36 5.0M 
    [   ]cmake-3.3.2-1.tar.bz22015-09-17 14:36 9.8M 
    [   ]cmake-3.3.2-Darwin-universal.dmg2015-09-17 14:36 48M 
    [   ]cmake-3.3.2-Darwin-universal.tar.Z2015-09-17 14:36 68M 
    [   ]cmake-3.3.2-Darwin-universal.tar.gz2015-09-17 14:36 47M 
    [   ]cmake-3.3.2-Darwin-x86_64.dmg2015-09-17 14:35 22M 
    [   ]cmake-3.3.2-Darwin-x86_64.tar.Z2015-09-17 14:35 31M 
    [   ]cmake-3.3.2-Darwin-x86_64.tar.gz2015-09-17 14:35 21M 
    [TXT]cmake-3.3.2-Linux-i386.sh2015-09-17 14:35 26M 
    [   ]cmake-3.3.2-Linux-i386.tar.Z2015-09-17 14:35 37M 
    [   ]cmake-3.3.2-Linux-i386.tar.gz2015-09-17 14:35 26M 
    [TXT]cmake-3.3.2-Linux-x86_64.sh2015-09-17 14:35 27M 
    [   ]cmake-3.3.2-Linux-x86_64.tar.Z2015-09-17 14:35 37M 
    [   ]cmake-3.3.2-Linux-x86_64.tar.gz2015-09-17 14:35 27M 
    [TXT]cmake-3.3.2-SHA-256.txt2015-09-17 14:35 1.6K 
    [TXT]cmake-3.3.2-SHA-256.txt.asc2015-09-17 14:35 819  
    [   ]cmake-3.3.2-win32-x86.exe2015-09-17 14:35 12M 
    [   ]cmake-3.3.2-win32-x86.zip2015-09-17 14:35 16M 
    [   ]cmake-3.3.2.tar.Z2015-09-17 14:35 10M 
    [   ]cmake-3.3.2.tar.gz2015-09-17 14:35 6.3M 
    [   ]cmake-3.3.2.zip2015-09-17 14:35 10M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.4/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.4/index.html new file mode 100644 index 0000000..e7b56da --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.4/index.html @@ -0,0 +1,127 @@ + + + + Index of /files/v3.4 + + +

    Index of /files/v3.4

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.4.0-Darwin-x86_64.dmg2015-11-12 13:42 22M 
    [   ]cmake-3.4.0-Darwin-x86_64.tar.Z2015-11-12 13:42 31M 
    [   ]cmake-3.4.0-Darwin-x86_64.tar.gz2015-11-12 13:42 22M 
    [TXT]cmake-3.4.0-Linux-i386.sh2015-11-12 13:42 26M 
    [   ]cmake-3.4.0-Linux-i386.tar.Z2015-11-12 13:42 37M 
    [   ]cmake-3.4.0-Linux-i386.tar.gz2015-11-12 13:42 26M 
    [TXT]cmake-3.4.0-Linux-x86_64.sh2015-11-12 13:42 27M 
    [   ]cmake-3.4.0-Linux-x86_64.tar.Z2015-11-12 13:42 38M 
    [   ]cmake-3.4.0-Linux-x86_64.tar.gz2015-11-12 13:42 27M 
    [TXT]cmake-3.4.0-SHA-256.txt2015-11-12 13:42 1.3K 
    [TXT]cmake-3.4.0-SHA-256.txt.asc2015-11-12 13:42 819  
    [   ]cmake-3.4.0-rc1-Darwin-x86_64.dmg2015-10-06 11:02 22M 
    [   ]cmake-3.4.0-rc1-Darwin-x86_64.tar.Z2015-10-06 11:02 31M 
    [   ]cmake-3.4.0-rc1-Darwin-x86_64.tar.gz2015-10-06 11:02 22M 
    [TXT]cmake-3.4.0-rc1-Linux-i386.sh2015-10-06 11:02 26M 
    [   ]cmake-3.4.0-rc1-Linux-i386.tar.Z2015-10-06 11:02 37M 
    [   ]cmake-3.4.0-rc1-Linux-i386.tar.gz2015-10-06 11:01 26M 
    [TXT]cmake-3.4.0-rc1-Linux-x86_64.sh2015-10-06 11:01 27M 
    [   ]cmake-3.4.0-rc1-Linux-x86_64.tar.Z2015-10-06 11:01 38M 
    [   ]cmake-3.4.0-rc1-Linux-x86_64.tar.gz2015-10-06 11:01 27M 
    [TXT]cmake-3.4.0-rc1-SHA-256.txt2015-10-06 11:01 1.3K 
    [TXT]cmake-3.4.0-rc1-SHA-256.txt.asc2015-10-06 11:01 819  
    [   ]cmake-3.4.0-rc1-win32-x86.exe2015-10-06 11:01 13M 
    [   ]cmake-3.4.0-rc1-win32-x86.zip2015-10-06 11:01 16M 
    [   ]cmake-3.4.0-rc1.tar.Z2015-10-06 11:01 10M 
    [   ]cmake-3.4.0-rc1.tar.gz2015-10-06 11:01 6.4M 
    [   ]cmake-3.4.0-rc1.zip2015-10-06 11:01 11M 
    [   ]cmake-3.4.0-rc2-Darwin-x86_64.dmg2015-10-21 16:27 22M 
    [   ]cmake-3.4.0-rc2-Darwin-x86_64.tar.Z2015-10-21 16:27 31M 
    [   ]cmake-3.4.0-rc2-Darwin-x86_64.tar.gz2015-10-21 16:27 22M 
    [TXT]cmake-3.4.0-rc2-Linux-i386.sh2015-10-21 16:27 26M 
    [   ]cmake-3.4.0-rc2-Linux-i386.tar.Z2015-10-21 16:27 37M 
    [   ]cmake-3.4.0-rc2-Linux-i386.tar.gz2015-10-21 16:27 26M 
    [TXT]cmake-3.4.0-rc2-Linux-x86_64.sh2015-10-21 16:27 27M 
    [   ]cmake-3.4.0-rc2-Linux-x86_64.tar.Z2015-10-21 16:27 38M 
    [   ]cmake-3.4.0-rc2-Linux-x86_64.tar.gz2015-10-21 16:27 27M 
    [TXT]cmake-3.4.0-rc2-SHA-256.txt2015-10-21 16:26 1.3K 
    [TXT]cmake-3.4.0-rc2-SHA-256.txt.asc2015-10-21 16:26 819  
    [   ]cmake-3.4.0-rc2-win32-x86.exe2015-10-21 16:26 13M 
    [   ]cmake-3.4.0-rc2-win32-x86.zip2015-10-21 16:26 16M 
    [   ]cmake-3.4.0-rc2.tar.Z2015-10-21 16:26 10M 
    [   ]cmake-3.4.0-rc2.tar.gz2015-10-21 16:26 6.4M 
    [   ]cmake-3.4.0-rc2.zip2015-10-21 16:26 11M 
    [   ]cmake-3.4.0-rc3-Darwin-x86_64.dmg2015-11-03 11:09 22M 
    [   ]cmake-3.4.0-rc3-Darwin-x86_64.tar.Z2015-11-03 11:09 31M 
    [   ]cmake-3.4.0-rc3-Darwin-x86_64.tar.gz2015-11-03 11:09 22M 
    [TXT]cmake-3.4.0-rc3-Linux-i386.sh2015-11-03 11:09 26M 
    [   ]cmake-3.4.0-rc3-Linux-i386.tar.Z2015-11-03 11:09 37M 
    [   ]cmake-3.4.0-rc3-Linux-i386.tar.gz2015-11-03 11:09 26M 
    [TXT]cmake-3.4.0-rc3-Linux-x86_64.sh2015-11-03 11:09 27M 
    [   ]cmake-3.4.0-rc3-Linux-x86_64.tar.Z2015-11-03 11:09 38M 
    [   ]cmake-3.4.0-rc3-Linux-x86_64.tar.gz2015-11-03 11:09 27M 
    [TXT]cmake-3.4.0-rc3-SHA-256.txt2015-11-03 11:09 1.3K 
    [TXT]cmake-3.4.0-rc3-SHA-256.txt.asc2015-11-03 11:09 819  
    [   ]cmake-3.4.0-rc3-win32-x86.exe2015-11-03 11:09 13M 
    [   ]cmake-3.4.0-rc3-win32-x86.zip2015-11-03 11:09 16M 
    [   ]cmake-3.4.0-rc3.tar.Z2015-11-03 11:09 10M 
    [   ]cmake-3.4.0-rc3.tar.gz2015-11-03 11:08 6.4M 
    [   ]cmake-3.4.0-rc3.zip2015-11-03 11:08 11M 
    [   ]cmake-3.4.0-win32-x86.exe2015-11-12 13:42 13M 
    [   ]cmake-3.4.0-win32-x86.zip2015-11-12 13:42 16M 
    [   ]cmake-3.4.0.tar.Z2015-11-12 13:42 10M 
    [   ]cmake-3.4.0.tar.gz2015-11-12 13:42 6.4M 
    [   ]cmake-3.4.0.zip2015-11-12 13:42 10M 
    [   ]cmake-3.4.1-Darwin-x86_64.dmg2015-12-02 14:42 22M 
    [   ]cmake-3.4.1-Darwin-x86_64.tar.Z2015-12-02 14:42 31M 
    [   ]cmake-3.4.1-Darwin-x86_64.tar.gz2015-12-02 14:42 22M 
    [TXT]cmake-3.4.1-Linux-i386.sh2015-12-02 14:42 26M 
    [   ]cmake-3.4.1-Linux-i386.tar.Z2015-12-02 14:42 37M 
    [   ]cmake-3.4.1-Linux-i386.tar.gz2015-12-02 14:42 26M 
    [TXT]cmake-3.4.1-Linux-x86_64.sh2015-12-02 14:42 27M 
    [   ]cmake-3.4.1-Linux-x86_64.tar.Z2015-12-02 14:42 38M 
    [   ]cmake-3.4.1-Linux-x86_64.tar.gz2015-12-02 14:42 27M 
    [TXT]cmake-3.4.1-SHA-256.txt2015-12-02 14:42 1.3K 
    [TXT]cmake-3.4.1-SHA-256.txt.asc2015-12-02 14:42 819  
    [   ]cmake-3.4.1-win32-x86.exe2015-12-02 14:42 13M 
    [   ]cmake-3.4.1-win32-x86.zip2015-12-02 14:42 16M 
    [   ]cmake-3.4.1.tar.Z2015-12-02 14:42 10M 
    [   ]cmake-3.4.1.tar.gz2015-12-02 14:42 6.4M 
    [   ]cmake-3.4.1.zip2015-12-02 14:41 10M 
    [   ]cmake-3.4.2-Darwin-x86_64.dmg2016-01-19 14:58 22M 
    [   ]cmake-3.4.2-Darwin-x86_64.tar.Z2016-01-19 14:58 31M 
    [   ]cmake-3.4.2-Darwin-x86_64.tar.gz2016-01-19 14:58 22M 
    [TXT]cmake-3.4.2-Linux-i386.sh2016-01-19 14:58 26M 
    [   ]cmake-3.4.2-Linux-i386.tar.Z2016-01-19 14:58 37M 
    [   ]cmake-3.4.2-Linux-i386.tar.gz2016-01-19 14:58 26M 
    [TXT]cmake-3.4.2-Linux-x86_64.sh2016-01-19 14:58 27M 
    [   ]cmake-3.4.2-Linux-x86_64.tar.Z2016-01-19 14:58 38M 
    [   ]cmake-3.4.2-Linux-x86_64.tar.gz2016-01-19 14:58 27M 
    [TXT]cmake-3.4.2-SHA-256.txt2016-01-19 14:58 1.3K 
    [TXT]cmake-3.4.2-SHA-256.txt.asc2016-01-19 14:58 819  
    [   ]cmake-3.4.2-win32-x86.exe2016-01-19 14:58 13M 
    [   ]cmake-3.4.2-win32-x86.zip2016-01-19 14:58 16M 
    [   ]cmake-3.4.2.tar.Z2016-01-19 14:58 10M 
    [   ]cmake-3.4.2.tar.gz2016-01-19 14:58 6.4M 
    [   ]cmake-3.4.2.zip2016-01-19 14:58 10M 
    [   ]cmake-3.4.3-Darwin-x86_64.dmg2016-01-25 14:29 22M 
    [   ]cmake-3.4.3-Darwin-x86_64.tar.Z2016-01-25 14:29 31M 
    [   ]cmake-3.4.3-Darwin-x86_64.tar.gz2016-01-25 14:29 22M 
    [TXT]cmake-3.4.3-Linux-i386.sh2016-01-25 14:29 26M 
    [   ]cmake-3.4.3-Linux-i386.tar.Z2016-01-25 14:29 37M 
    [   ]cmake-3.4.3-Linux-i386.tar.gz2016-01-25 14:29 26M 
    [TXT]cmake-3.4.3-Linux-x86_64.sh2016-01-25 14:29 27M 
    [   ]cmake-3.4.3-Linux-x86_64.tar.Z2016-01-25 14:29 38M 
    [   ]cmake-3.4.3-Linux-x86_64.tar.gz2016-01-25 14:29 27M 
    [TXT]cmake-3.4.3-SHA-256.txt2016-01-25 14:29 1.3K 
    [TXT]cmake-3.4.3-SHA-256.txt.asc2016-01-25 14:29 819  
    [   ]cmake-3.4.3-win32-x86.exe2016-01-25 14:29 13M 
    [   ]cmake-3.4.3-win32-x86.zip2016-01-25 14:29 16M 
    [   ]cmake-3.4.3.tar.Z2016-01-25 14:29 10M 
    [   ]cmake-3.4.3.tar.gz2016-01-25 14:29 6.4M 
    [   ]cmake-3.4.3.zip2016-01-25 14:29 10M 
    [DIR]cygwin/2016-01-25 14:34 -  

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.5/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.5/index.html new file mode 100644 index 0000000..03d4f7c --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.5/index.html @@ -0,0 +1,111 @@ + + + + Index of /files/v3.5 + + +

    Index of /files/v3.5

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.5.0-Darwin-x86_64.dmg2016-03-08 11:17 22M 
    [   ]cmake-3.5.0-Darwin-x86_64.tar.Z2016-03-08 11:17 31M 
    [   ]cmake-3.5.0-Darwin-x86_64.tar.gz2016-03-08 11:17 22M 
    [TXT]cmake-3.5.0-Linux-i386.sh2016-03-08 11:17 27M 
    [   ]cmake-3.5.0-Linux-i386.tar.Z2016-03-08 11:17 38M 
    [   ]cmake-3.5.0-Linux-i386.tar.gz2016-03-08 11:17 27M 
    [TXT]cmake-3.5.0-Linux-x86_64.sh2016-03-08 11:17 27M 
    [   ]cmake-3.5.0-Linux-x86_64.tar.Z2016-03-08 11:17 38M 
    [   ]cmake-3.5.0-Linux-x86_64.tar.gz2016-03-08 11:17 27M 
    [TXT]cmake-3.5.0-SHA-256.txt2016-03-08 11:17 1.3K 
    [TXT]cmake-3.5.0-SHA-256.txt.asc2016-03-08 11:16 819  
    [   ]cmake-3.5.0-rc1-Darwin-x86_64.dmg2016-02-02 15:51 22M 
    [   ]cmake-3.5.0-rc1-Darwin-x86_64.tar.Z2016-02-02 15:51 31M 
    [   ]cmake-3.5.0-rc1-Darwin-x86_64.tar.gz2016-02-02 15:51 22M 
    [TXT]cmake-3.5.0-rc1-Linux-i386.sh2016-02-02 15:51 27M 
    [   ]cmake-3.5.0-rc1-Linux-i386.tar.Z2016-02-02 15:51 38M 
    [   ]cmake-3.5.0-rc1-Linux-i386.tar.gz2016-02-02 15:51 27M 
    [TXT]cmake-3.5.0-rc1-Linux-x86_64.sh2016-02-02 15:51 27M 
    [   ]cmake-3.5.0-rc1-Linux-x86_64.tar.Z2016-02-02 15:51 38M 
    [   ]cmake-3.5.0-rc1-Linux-x86_64.tar.gz2016-02-02 15:51 27M 
    [TXT]cmake-3.5.0-rc1-SHA-256.txt2016-02-03 13:29 1.3K 
    [TXT]cmake-3.5.0-rc1-SHA-256.txt.asc2016-02-03 13:29 819  
    [   ]cmake-3.5.0-rc1-win32-x86.msi2016-02-03 13:29 15M 
    [   ]cmake-3.5.0-rc1-win32-x86.zip2016-02-03 13:29 20M 
    [   ]cmake-3.5.0-rc1.tar.Z2016-02-02 15:51 11M 
    [   ]cmake-3.5.0-rc1.tar.gz2016-02-02 15:51 6.5M 
    [   ]cmake-3.5.0-rc1.zip2016-02-02 15:51 11M 
    [   ]cmake-3.5.0-rc2-Darwin-x86_64.dmg2016-02-10 15:03 22M 
    [   ]cmake-3.5.0-rc2-Darwin-x86_64.tar.Z2016-02-10 15:03 31M 
    [   ]cmake-3.5.0-rc2-Darwin-x86_64.tar.gz2016-02-10 15:03 22M 
    [TXT]cmake-3.5.0-rc2-Linux-i386.sh2016-02-10 15:03 27M 
    [   ]cmake-3.5.0-rc2-Linux-i386.tar.Z2016-02-10 15:03 38M 
    [   ]cmake-3.5.0-rc2-Linux-i386.tar.gz2016-02-10 15:03 27M 
    [TXT]cmake-3.5.0-rc2-Linux-x86_64.sh2016-02-10 15:03 27M 
    [   ]cmake-3.5.0-rc2-Linux-x86_64.tar.Z2016-02-10 15:03 38M 
    [   ]cmake-3.5.0-rc2-Linux-x86_64.tar.gz2016-02-10 15:03 27M 
    [TXT]cmake-3.5.0-rc2-SHA-256.txt2016-02-10 15:03 1.3K 
    [TXT]cmake-3.5.0-rc2-SHA-256.txt.asc2016-02-10 15:03 819  
    [   ]cmake-3.5.0-rc2-win32-x86.msi2016-02-10 15:03 15M 
    [   ]cmake-3.5.0-rc2-win32-x86.zip2016-02-10 15:03 20M 
    [   ]cmake-3.5.0-rc2.tar.Z2016-02-10 15:02 11M 
    [   ]cmake-3.5.0-rc2.tar.gz2016-02-10 15:02 6.5M 
    [   ]cmake-3.5.0-rc2.zip2016-02-10 15:02 11M 
    [   ]cmake-3.5.0-rc3-Darwin-x86_64.dmg2016-02-18 15:41 22M 
    [   ]cmake-3.5.0-rc3-Darwin-x86_64.tar.Z2016-02-18 15:41 31M 
    [   ]cmake-3.5.0-rc3-Darwin-x86_64.tar.gz2016-02-18 15:41 22M 
    [TXT]cmake-3.5.0-rc3-Linux-i386.sh2016-02-18 15:41 27M 
    [   ]cmake-3.5.0-rc3-Linux-i386.tar.Z2016-02-18 15:41 38M 
    [   ]cmake-3.5.0-rc3-Linux-i386.tar.gz2016-02-18 15:41 27M 
    [TXT]cmake-3.5.0-rc3-Linux-x86_64.sh2016-02-18 15:41 27M 
    [   ]cmake-3.5.0-rc3-Linux-x86_64.tar.Z2016-02-18 15:41 38M 
    [   ]cmake-3.5.0-rc3-Linux-x86_64.tar.gz2016-02-18 15:41 27M 
    [TXT]cmake-3.5.0-rc3-SHA-256.txt2016-02-18 15:41 1.3K 
    [TXT]cmake-3.5.0-rc3-SHA-256.txt.asc2016-02-18 15:41 819  
    [   ]cmake-3.5.0-rc3-win32-x86.msi2016-02-18 15:41 15M 
    [   ]cmake-3.5.0-rc3-win32-x86.zip2016-02-18 15:41 20M 
    [   ]cmake-3.5.0-rc3.tar.Z2016-02-18 15:41 11M 
    [   ]cmake-3.5.0-rc3.tar.gz2016-02-18 15:40 6.5M 
    [   ]cmake-3.5.0-rc3.zip2016-02-18 15:40 11M 
    [   ]cmake-3.5.0-win32-x86.msi2016-03-08 11:16 15M 
    [   ]cmake-3.5.0-win32-x86.zip2016-03-08 11:16 20M 
    [   ]cmake-3.5.0.tar.Z2016-03-08 11:16 11M 
    [   ]cmake-3.5.0.tar.gz2016-03-08 11:16 6.5M 
    [   ]cmake-3.5.0.zip2016-03-08 11:16 11M 
    [   ]cmake-3.5.1-Darwin-x86_64.dmg2016-03-24 16:00 22M 
    [   ]cmake-3.5.1-Darwin-x86_64.tar.Z2016-03-24 16:00 31M 
    [   ]cmake-3.5.1-Darwin-x86_64.tar.gz2016-03-24 16:00 22M 
    [TXT]cmake-3.5.1-Linux-i386.sh2016-03-24 16:00 27M 
    [   ]cmake-3.5.1-Linux-i386.tar.Z2016-03-24 16:00 38M 
    [   ]cmake-3.5.1-Linux-i386.tar.gz2016-03-24 16:00 27M 
    [TXT]cmake-3.5.1-Linux-x86_64.sh2016-03-24 16:00 27M 
    [   ]cmake-3.5.1-Linux-x86_64.tar.Z2016-03-24 16:00 38M 
    [   ]cmake-3.5.1-Linux-x86_64.tar.gz2016-03-24 16:00 27M 
    [TXT]cmake-3.5.1-SHA-256.txt2016-03-24 16:00 1.3K 
    [TXT]cmake-3.5.1-SHA-256.txt.asc2016-03-24 16:00 819  
    [   ]cmake-3.5.1-win32-x86.msi2016-03-24 16:00 15M 
    [   ]cmake-3.5.1-win32-x86.zip2016-03-24 16:00 20M 
    [   ]cmake-3.5.1.tar.Z2016-03-24 16:00 11M 
    [   ]cmake-3.5.1.tar.gz2016-03-24 16:00 6.5M 
    [   ]cmake-3.5.1.zip2016-03-24 16:00 11M 
    [   ]cmake-3.5.2-Darwin-x86_64.dmg2016-04-15 13:40 22M 
    [   ]cmake-3.5.2-Darwin-x86_64.tar.Z2016-04-15 13:40 31M 
    [   ]cmake-3.5.2-Darwin-x86_64.tar.gz2016-04-15 13:40 22M 
    [TXT]cmake-3.5.2-Linux-i386.sh2016-04-15 13:40 27M 
    [   ]cmake-3.5.2-Linux-i386.tar.Z2016-04-15 13:40 38M 
    [   ]cmake-3.5.2-Linux-i386.tar.gz2016-04-15 13:40 27M 
    [TXT]cmake-3.5.2-Linux-x86_64.sh2016-04-15 13:40 27M 
    [   ]cmake-3.5.2-Linux-x86_64.tar.Z2016-04-15 13:40 38M 
    [   ]cmake-3.5.2-Linux-x86_64.tar.gz2016-04-15 13:40 27M 
    [TXT]cmake-3.5.2-SHA-256.txt2016-04-15 13:40 1.3K 
    [TXT]cmake-3.5.2-SHA-256.txt.asc2016-04-15 13:40 819  
    [   ]cmake-3.5.2-win32-x86.msi2016-04-15 13:40 15M 
    [   ]cmake-3.5.2-win32-x86.zip2016-04-15 13:40 20M 
    [   ]cmake-3.5.2.tar.Z2016-04-15 13:40 11M 
    [   ]cmake-3.5.2.tar.gz2016-04-15 13:40 6.5M 
    [   ]cmake-3.5.2.zip2016-04-15 13:40 11M 
    [DIR]cygwin/2016-04-15 13:42 -  

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.6/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.6/index.html new file mode 100644 index 0000000..4fca3a5 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.6/index.html @@ -0,0 +1,159 @@ + + + + Index of /files/v3.6 + + +

    Index of /files/v3.6

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.6.0-Darwin-x86_64.dmg2016-07-07 13:05 25M 
    [   ]cmake-3.6.0-Darwin-x86_64.tar.Z2016-07-07 13:05 36M 
    [   ]cmake-3.6.0-Darwin-x86_64.tar.gz2016-07-07 13:05 25M 
    [TXT]cmake-3.6.0-Linux-i386.sh2016-07-07 13:05 27M 
    [   ]cmake-3.6.0-Linux-i386.tar.Z2016-07-07 13:05 38M 
    [   ]cmake-3.6.0-Linux-i386.tar.gz2016-07-07 13:05 27M 
    [TXT]cmake-3.6.0-Linux-x86_64.sh2016-07-07 13:05 27M 
    [   ]cmake-3.6.0-Linux-x86_64.tar.Z2016-07-07 13:05 38M 
    [   ]cmake-3.6.0-Linux-x86_64.tar.gz2016-07-07 13:05 27M 
    [TXT]cmake-3.6.0-SHA-256.txt2016-07-07 13:05 1.4K 
    [TXT]cmake-3.6.0-SHA-256.txt.asc2016-07-07 13:05 819  
    [   ]cmake-3.6.0-rc1-Darwin-x86_64.dmg2016-06-03 14:50 25M 
    [   ]cmake-3.6.0-rc1-Darwin-x86_64.tar.Z2016-06-03 14:50 36M 
    [   ]cmake-3.6.0-rc1-Darwin-x86_64.tar.gz2016-06-03 14:50 25M 
    [TXT]cmake-3.6.0-rc1-Linux-i386.sh2016-06-03 14:50 27M 
    [   ]cmake-3.6.0-rc1-Linux-i386.tar.Z2016-06-03 14:50 38M 
    [   ]cmake-3.6.0-rc1-Linux-i386.tar.gz2016-06-03 14:50 27M 
    [TXT]cmake-3.6.0-rc1-Linux-x86_64.sh2016-06-03 14:50 27M 
    [   ]cmake-3.6.0-rc1-Linux-x86_64.tar.Z2016-06-03 14:50 38M 
    [   ]cmake-3.6.0-rc1-Linux-x86_64.tar.gz2016-06-03 14:49 27M 
    [TXT]cmake-3.6.0-rc1-SHA-256.txt2016-06-03 14:49 1.5K 
    [TXT]cmake-3.6.0-rc1-SHA-256.txt.asc2016-06-03 14:49 819  
    [   ]cmake-3.6.0-rc1-win32-x86.msi2016-06-03 14:49 15M 
    [   ]cmake-3.6.0-rc1-win32-x86.zip2016-06-03 14:49 21M 
    [   ]cmake-3.6.0-rc1-win64-x64.msi2016-06-03 14:49 15M 
    [   ]cmake-3.6.0-rc1-win64-x64.zip2016-06-03 14:49 19M 
    [   ]cmake-3.6.0-rc1.tar.Z2016-06-03 14:49 11M 
    [   ]cmake-3.6.0-rc1.tar.gz2016-06-03 14:49 6.6M 
    [   ]cmake-3.6.0-rc1.zip2016-06-03 14:49 11M 
    [   ]cmake-3.6.0-rc2-Darwin-x86_64.dmg2016-06-13 14:29 25M 
    [   ]cmake-3.6.0-rc2-Darwin-x86_64.tar.Z2016-06-13 14:29 36M 
    [   ]cmake-3.6.0-rc2-Darwin-x86_64.tar.gz2016-06-13 14:29 25M 
    [TXT]cmake-3.6.0-rc2-Linux-i386.sh2016-06-13 14:29 27M 
    [   ]cmake-3.6.0-rc2-Linux-i386.tar.Z2016-06-13 14:29 38M 
    [   ]cmake-3.6.0-rc2-Linux-i386.tar.gz2016-06-13 14:29 27M 
    [TXT]cmake-3.6.0-rc2-Linux-x86_64.sh2016-06-13 14:29 27M 
    [   ]cmake-3.6.0-rc2-Linux-x86_64.tar.Z2016-06-13 14:29 38M 
    [   ]cmake-3.6.0-rc2-Linux-x86_64.tar.gz2016-06-13 14:29 27M 
    [TXT]cmake-3.6.0-rc2-SHA-256.txt2016-06-13 14:29 1.5K 
    [TXT]cmake-3.6.0-rc2-SHA-256.txt.asc2016-06-13 14:29 819  
    [   ]cmake-3.6.0-rc2-win32-x86.msi2016-06-13 14:29 15M 
    [   ]cmake-3.6.0-rc2-win32-x86.zip2016-06-13 14:29 21M 
    [   ]cmake-3.6.0-rc2-win64-x64.msi2016-06-13 14:29 15M 
    [   ]cmake-3.6.0-rc2-win64-x64.zip2016-06-13 14:29 19M 
    [   ]cmake-3.6.0-rc2.tar.Z2016-06-13 14:29 11M 
    [   ]cmake-3.6.0-rc2.tar.gz2016-06-13 14:28 6.6M 
    [   ]cmake-3.6.0-rc2.zip2016-06-13 14:28 11M 
    [   ]cmake-3.6.0-rc3-Darwin-x86_64.dmg2016-06-22 13:58 25M 
    [   ]cmake-3.6.0-rc3-Darwin-x86_64.tar.Z2016-06-22 13:58 36M 
    [   ]cmake-3.6.0-rc3-Darwin-x86_64.tar.gz2016-06-22 13:57 25M 
    [TXT]cmake-3.6.0-rc3-Linux-i386.sh2016-06-22 13:57 27M 
    [   ]cmake-3.6.0-rc3-Linux-i386.tar.Z2016-06-22 13:57 38M 
    [   ]cmake-3.6.0-rc3-Linux-i386.tar.gz2016-06-22 13:57 27M 
    [TXT]cmake-3.6.0-rc3-Linux-x86_64.sh2016-06-22 13:57 27M 
    [   ]cmake-3.6.0-rc3-Linux-x86_64.tar.Z2016-06-22 13:57 38M 
    [   ]cmake-3.6.0-rc3-Linux-x86_64.tar.gz2016-06-22 13:57 27M 
    [TXT]cmake-3.6.0-rc3-SHA-256.txt2016-06-22 13:57 1.5K 
    [TXT]cmake-3.6.0-rc3-SHA-256.txt.asc2016-06-22 13:57 819  
    [   ]cmake-3.6.0-rc3-win32-x86.msi2016-06-22 13:57 15M 
    [   ]cmake-3.6.0-rc3-win32-x86.zip2016-06-22 13:57 21M 
    [   ]cmake-3.6.0-rc3-win64-x64.msi2016-06-22 13:57 15M 
    [   ]cmake-3.6.0-rc3-win64-x64.zip2016-06-22 13:57 19M 
    [   ]cmake-3.6.0-rc3.tar.Z2016-06-22 13:57 11M 
    [   ]cmake-3.6.0-rc3.tar.gz2016-06-22 13:57 6.6M 
    [   ]cmake-3.6.0-rc3.zip2016-06-22 13:57 11M 
    [   ]cmake-3.6.0-rc4-Darwin-x86_64.dmg2016-06-29 14:50 25M 
    [   ]cmake-3.6.0-rc4-Darwin-x86_64.tar.Z2016-06-29 14:50 36M 
    [   ]cmake-3.6.0-rc4-Darwin-x86_64.tar.gz2016-06-29 14:50 25M 
    [TXT]cmake-3.6.0-rc4-Linux-i386.sh2016-06-29 14:50 27M 
    [   ]cmake-3.6.0-rc4-Linux-i386.tar.Z2016-06-29 14:50 38M 
    [   ]cmake-3.6.0-rc4-Linux-i386.tar.gz2016-06-29 14:50 27M 
    [TXT]cmake-3.6.0-rc4-Linux-x86_64.sh2016-06-29 14:50 27M 
    [   ]cmake-3.6.0-rc4-Linux-x86_64.tar.Z2016-06-29 14:49 38M 
    [   ]cmake-3.6.0-rc4-Linux-x86_64.tar.gz2016-06-29 14:49 27M 
    [TXT]cmake-3.6.0-rc4-SHA-256.txt2016-06-29 14:49 1.5K 
    [TXT]cmake-3.6.0-rc4-SHA-256.txt.asc2016-06-29 14:49 819  
    [   ]cmake-3.6.0-rc4-win32-x86.msi2016-06-29 14:49 15M 
    [   ]cmake-3.6.0-rc4-win32-x86.zip2016-06-29 14:49 21M 
    [   ]cmake-3.6.0-rc4-win64-x64.msi2016-06-29 14:49 15M 
    [   ]cmake-3.6.0-rc4-win64-x64.zip2016-06-29 14:49 19M 
    [   ]cmake-3.6.0-rc4.tar.Z2016-06-29 14:49 11M 
    [   ]cmake-3.6.0-rc4.tar.gz2016-06-29 14:49 6.6M 
    [   ]cmake-3.6.0-rc4.zip2016-06-29 14:49 11M 
    [   ]cmake-3.6.0-win32-x86.msi2016-07-07 13:04 15M 
    [   ]cmake-3.6.0-win32-x86.zip2016-07-07 13:04 20M 
    [   ]cmake-3.6.0-win64-x64.msi2016-07-07 13:04 15M 
    [   ]cmake-3.6.0-win64-x64.zip2016-07-07 13:04 19M 
    [   ]cmake-3.6.0.tar.Z2016-07-07 13:04 11M 
    [   ]cmake-3.6.0.tar.gz2016-07-07 13:04 6.6M 
    [   ]cmake-3.6.0.zip2016-07-07 13:04 11M 
    [   ]cmake-3.6.1-Darwin-x86_64.dmg2016-07-22 10:58 25M 
    [   ]cmake-3.6.1-Darwin-x86_64.tar.Z2016-07-22 10:58 36M 
    [   ]cmake-3.6.1-Darwin-x86_64.tar.gz2016-07-22 10:58 25M 
    [TXT]cmake-3.6.1-Linux-i386.sh2016-07-22 10:58 27M 
    [   ]cmake-3.6.1-Linux-i386.tar.Z2016-07-22 10:58 38M 
    [   ]cmake-3.6.1-Linux-i386.tar.gz2016-07-22 10:58 27M 
    [TXT]cmake-3.6.1-Linux-x86_64.sh2016-07-22 10:58 27M 
    [   ]cmake-3.6.1-Linux-x86_64.tar.Z2016-07-22 10:58 38M 
    [   ]cmake-3.6.1-Linux-x86_64.tar.gz2016-07-22 10:58 27M 
    [TXT]cmake-3.6.1-SHA-256.txt2016-07-22 10:58 1.4K 
    [TXT]cmake-3.6.1-SHA-256.txt.asc2016-07-22 10:58 819  
    [   ]cmake-3.6.1-win32-x86.msi2016-07-22 10:58 15M 
    [   ]cmake-3.6.1-win32-x86.zip2016-07-22 10:58 20M 
    [   ]cmake-3.6.1-win64-x64.msi2016-07-22 10:58 15M 
    [   ]cmake-3.6.1-win64-x64.zip2016-07-22 10:57 19M 
    [   ]cmake-3.6.1.tar.Z2016-07-22 10:57 11M 
    [   ]cmake-3.6.1.tar.gz2016-07-22 10:57 6.6M 
    [   ]cmake-3.6.1.zip2016-07-22 10:57 11M 
    [   ]cmake-3.6.2-Darwin-x86_64.dmg2016-09-07 14:29 25M 
    [   ]cmake-3.6.2-Darwin-x86_64.tar.Z2016-09-07 14:29 36M 
    [   ]cmake-3.6.2-Darwin-x86_64.tar.gz2016-09-07 14:29 25M 
    [TXT]cmake-3.6.2-Linux-i386.sh2016-09-07 14:29 27M 
    [   ]cmake-3.6.2-Linux-i386.tar.Z2016-09-07 14:29 38M 
    [   ]cmake-3.6.2-Linux-i386.tar.gz2016-09-07 14:28 27M 
    [TXT]cmake-3.6.2-Linux-x86_64.sh2016-09-07 14:28 27M 
    [   ]cmake-3.6.2-Linux-x86_64.tar.Z2016-09-07 14:28 38M 
    [   ]cmake-3.6.2-Linux-x86_64.tar.gz2016-09-07 14:28 27M 
    [TXT]cmake-3.6.2-SHA-256.txt2016-09-07 14:28 1.4K 
    [TXT]cmake-3.6.2-SHA-256.txt.asc2016-09-07 14:28 819  
    [   ]cmake-3.6.2-win32-x86.msi2016-09-07 14:28 15M 
    [   ]cmake-3.6.2-win32-x86.zip2016-09-07 14:28 20M 
    [   ]cmake-3.6.2-win64-x64.msi2016-09-07 14:28 15M 
    [   ]cmake-3.6.2-win64-x64.zip2016-09-07 14:28 19M 
    [   ]cmake-3.6.2.tar.Z2016-09-07 14:28 11M 
    [   ]cmake-3.6.2.tar.gz2016-09-07 14:28 6.6M 
    [   ]cmake-3.6.2.zip2016-09-07 14:28 11M 
    [   ]cmake-3.6.3-Darwin-x86_64.dmg2016-11-03 12:13 25M 
    [   ]cmake-3.6.3-Darwin-x86_64.tar.Z2016-11-03 12:13 36M 
    [   ]cmake-3.6.3-Darwin-x86_64.tar.gz2016-11-03 12:13 25M 
    [TXT]cmake-3.6.3-Linux-i386.sh2016-11-03 12:13 27M 
    [   ]cmake-3.6.3-Linux-i386.tar.Z2016-11-03 12:13 38M 
    [   ]cmake-3.6.3-Linux-i386.tar.gz2016-11-03 12:13 27M 
    [TXT]cmake-3.6.3-Linux-x86_64.sh2016-11-03 12:13 27M 
    [   ]cmake-3.6.3-Linux-x86_64.tar.Z2016-11-03 12:13 38M 
    [   ]cmake-3.6.3-Linux-x86_64.tar.gz2016-11-03 12:13 27M 
    [TXT]cmake-3.6.3-SHA-256.txt2016-11-03 12:13 1.4K 
    [TXT]cmake-3.6.3-SHA-256.txt.asc2016-11-03 12:13 801  
    [   ]cmake-3.6.3-win32-x86.msi2016-11-03 12:13 15M 
    [   ]cmake-3.6.3-win32-x86.zip2016-11-03 12:13 20M 
    [   ]cmake-3.6.3-win64-x64.msi2016-11-03 12:12 17M 
    [   ]cmake-3.6.3-win64-x64.zip2016-11-03 12:12 23M 
    [   ]cmake-3.6.3.tar.Z2016-11-03 12:12 11M 
    [   ]cmake-3.6.3.tar.gz2016-11-03 12:12 6.6M 
    [   ]cmake-3.6.3.zip2016-11-03 12:12 11M 
    [DIR]cygwin/2016-09-07 14:44 -  

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.7/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.7/index.html new file mode 100644 index 0000000..4812f93 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.7/index.html @@ -0,0 +1,92 @@ + + + + Index of /files/v3.7 + + +

    Index of /files/v3.7

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.7.0-Darwin-x86_64.dmg2016-11-11 14:01 26M 
    [   ]cmake-3.7.0-Darwin-x86_64.tar.gz2016-11-11 14:01 25M 
    [TXT]cmake-3.7.0-Linux-x86_64.sh2016-11-11 14:01 29M 
    [   ]cmake-3.7.0-Linux-x86_64.tar.gz2016-11-11 14:01 29M 
    [TXT]cmake-3.7.0-SHA-256.txt2016-11-11 14:01 1.0K 
    [TXT]cmake-3.7.0-SHA-256.txt.asc2016-11-11 14:01 801  
    [   ]cmake-3.7.0-rc1-Darwin-x86_64.dmg2016-10-04 15:23 26M 
    [   ]cmake-3.7.0-rc1-Darwin-x86_64.tar.gz2016-10-04 15:23 25M 
    [TXT]cmake-3.7.0-rc1-Linux-x86_64.sh2016-10-04 15:23 29M 
    [   ]cmake-3.7.0-rc1-Linux-x86_64.tar.gz2016-10-04 15:23 29M 
    [TXT]cmake-3.7.0-rc1-SHA-256.txt2016-10-04 15:23 1.0K 
    [TXT]cmake-3.7.0-rc1-SHA-256.txt.asc2016-10-04 15:23 801  
    [   ]cmake-3.7.0-rc1-win32-x86.msi2016-10-04 15:23 15M 
    [   ]cmake-3.7.0-rc1-win32-x86.zip2016-10-04 15:23 21M 
    [   ]cmake-3.7.0-rc1-win64-x64.msi2016-10-04 15:23 17M 
    [   ]cmake-3.7.0-rc1-win64-x64.zip2016-10-04 15:23 24M 
    [   ]cmake-3.7.0-rc1.tar.Z2016-10-04 15:23 11M 
    [   ]cmake-3.7.0-rc1.tar.gz2016-10-04 15:23 7.0M 
    [   ]cmake-3.7.0-rc1.zip2016-10-04 15:23 12M 
    [   ]cmake-3.7.0-rc2-Darwin-x86_64.dmg2016-10-19 15:24 26M 
    [   ]cmake-3.7.0-rc2-Darwin-x86_64.tar.gz2016-10-19 15:24 25M 
    [TXT]cmake-3.7.0-rc2-Linux-x86_64.sh2016-10-19 15:24 29M 
    [   ]cmake-3.7.0-rc2-Linux-x86_64.tar.gz2016-10-19 15:24 29M 
    [TXT]cmake-3.7.0-rc2-SHA-256.txt2016-10-19 15:24 1.0K 
    [TXT]cmake-3.7.0-rc2-SHA-256.txt.asc2016-10-19 15:24 801  
    [   ]cmake-3.7.0-rc2-win32-x86.msi2016-10-19 15:23 15M 
    [   ]cmake-3.7.0-rc2-win32-x86.zip2016-10-19 15:23 21M 
    [   ]cmake-3.7.0-rc2-win64-x64.msi2016-10-19 15:23 17M 
    [   ]cmake-3.7.0-rc2-win64-x64.zip2016-10-19 15:23 24M 
    [   ]cmake-3.7.0-rc2.tar.Z2016-10-19 15:23 11M 
    [   ]cmake-3.7.0-rc2.tar.gz2016-10-19 15:23 7.0M 
    [   ]cmake-3.7.0-rc2.zip2016-10-19 15:23 12M 
    [   ]cmake-3.7.0-rc3-Darwin-x86_64.dmg2016-11-04 15:26 26M 
    [   ]cmake-3.7.0-rc3-Darwin-x86_64.tar.gz2016-11-04 15:26 25M 
    [TXT]cmake-3.7.0-rc3-Linux-x86_64.sh2016-11-04 15:26 29M 
    [   ]cmake-3.7.0-rc3-Linux-x86_64.tar.gz2016-11-04 15:26 29M 
    [TXT]cmake-3.7.0-rc3-SHA-256.txt2016-11-04 15:26 1.0K 
    [TXT]cmake-3.7.0-rc3-SHA-256.txt.asc2016-11-04 15:26 801  
    [   ]cmake-3.7.0-rc3-win32-x86.msi2016-11-04 15:26 15M 
    [   ]cmake-3.7.0-rc3-win32-x86.zip2016-11-04 15:26 21M 
    [   ]cmake-3.7.0-rc3-win64-x64.msi2016-11-04 15:26 17M 
    [   ]cmake-3.7.0-rc3-win64-x64.zip2016-11-04 15:26 24M 
    [   ]cmake-3.7.0-rc3.tar.Z2016-11-04 15:26 11M 
    [   ]cmake-3.7.0-rc3.tar.gz2016-11-04 15:26 7.0M 
    [   ]cmake-3.7.0-rc3.zip2016-11-04 15:26 12M 
    [   ]cmake-3.7.0-win32-x86.msi2016-11-11 14:01 15M 
    [   ]cmake-3.7.0-win32-x86.zip2016-11-11 14:01 21M 
    [   ]cmake-3.7.0-win64-x64.msi2016-11-11 14:01 17M 
    [   ]cmake-3.7.0-win64-x64.zip2016-11-11 14:00 24M 
    [   ]cmake-3.7.0.tar.Z2016-11-11 14:00 11M 
    [   ]cmake-3.7.0.tar.gz2016-11-11 14:00 7.0M 
    [   ]cmake-3.7.0.zip2016-11-11 14:00 11M 
    [   ]cmake-3.7.1-Darwin-x86_64.dmg2016-11-30 14:25 26M 
    [   ]cmake-3.7.1-Darwin-x86_64.tar.gz2016-11-30 14:25 25M 
    [TXT]cmake-3.7.1-Linux-x86_64.sh2016-11-30 14:25 29M 
    [   ]cmake-3.7.1-Linux-x86_64.tar.gz2016-11-30 14:25 29M 
    [TXT]cmake-3.7.1-SHA-256.txt2016-11-30 14:25 1.0K 
    [TXT]cmake-3.7.1-SHA-256.txt.asc2016-11-30 14:25 833  
    [   ]cmake-3.7.1-win32-x86.msi2016-11-30 14:25 15M 
    [   ]cmake-3.7.1-win32-x86.zip2016-11-30 14:25 21M 
    [   ]cmake-3.7.1-win64-x64.msi2016-11-30 14:24 17M 
    [   ]cmake-3.7.1-win64-x64.zip2016-11-30 14:24 24M 
    [   ]cmake-3.7.1.tar.Z2016-11-30 14:24 11M 
    [   ]cmake-3.7.1.tar.gz2016-11-30 14:24 7.0M 
    [   ]cmake-3.7.1.zip2016-11-30 14:24 11M 
    [   ]cmake-3.7.2-Darwin-x86_64.dmg2017-01-13 14:13 26M 
    [   ]cmake-3.7.2-Darwin-x86_64.tar.gz2017-01-13 14:13 25M 
    [TXT]cmake-3.7.2-Linux-x86_64.sh2017-01-13 14:13 29M 
    [   ]cmake-3.7.2-Linux-x86_64.tar.gz2017-01-13 14:13 29M 
    [TXT]cmake-3.7.2-SHA-256.txt2017-01-13 14:13 1.0K 
    [TXT]cmake-3.7.2-SHA-256.txt.asc2017-01-13 14:13 833  
    [   ]cmake-3.7.2-win32-x86.msi2017-01-13 14:13 15M 
    [   ]cmake-3.7.2-win32-x86.zip2017-01-13 14:12 21M 
    [   ]cmake-3.7.2-win64-x64.msi2017-01-13 14:12 17M 
    [   ]cmake-3.7.2-win64-x64.zip2017-01-13 14:12 24M 
    [   ]cmake-3.7.2.tar.Z2017-01-13 14:12 11M 
    [   ]cmake-3.7.2.tar.gz2017-01-13 14:12 7.0M 
    [   ]cmake-3.7.2.zip2017-01-13 14:12 11M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.8/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.8/index.html new file mode 100644 index 0000000..5fc8caa --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.8/index.html @@ -0,0 +1,105 @@ + + + + Index of /files/v3.8 + + +

    Index of /files/v3.8

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.8.0-Darwin-x86_64.dmg2017-04-10 13:39 26M 
    [   ]cmake-3.8.0-Darwin-x86_64.tar.gz2017-04-10 13:39 26M 
    [TXT]cmake-3.8.0-Linux-x86_64.sh2017-04-10 13:39 31M 
    [   ]cmake-3.8.0-Linux-x86_64.tar.gz2017-04-10 13:39 31M 
    [TXT]cmake-3.8.0-SHA-256.txt2017-04-10 13:39 1.0K 
    [TXT]cmake-3.8.0-SHA-256.txt.asc2017-04-10 13:39 833  
    [   ]cmake-3.8.0-rc1-Darwin-x86_64.dmg2017-02-07 12:54 26M 
    [   ]cmake-3.8.0-rc1-Darwin-x86_64.tar.gz2017-02-07 12:54 26M 
    [TXT]cmake-3.8.0-rc1-Linux-x86_64.sh2017-02-07 12:54 31M 
    [   ]cmake-3.8.0-rc1-Linux-x86_64.tar.gz2017-02-07 12:54 31M 
    [TXT]cmake-3.8.0-rc1-SHA-256.txt2017-02-07 12:54 1.0K 
    [TXT]cmake-3.8.0-rc1-SHA-256.txt.asc2017-02-07 12:54 833  
    [   ]cmake-3.8.0-rc1-win32-x86.msi2017-02-07 12:54 15M 
    [   ]cmake-3.8.0-rc1-win32-x86.zip2017-02-07 12:54 21M 
    [   ]cmake-3.8.0-rc1-win64-x64.msi2017-02-07 12:54 18M 
    [   ]cmake-3.8.0-rc1-win64-x64.zip2017-02-07 12:54 24M 
    [   ]cmake-3.8.0-rc1.tar.Z2017-02-07 12:54 12M 
    [   ]cmake-3.8.0-rc1.tar.gz2017-02-07 12:54 7.1M 
    [   ]cmake-3.8.0-rc1.zip2017-02-07 12:54 12M 
    [   ]cmake-3.8.0-rc2-Darwin-x86_64.dmg2017-03-03 10:00 26M 
    [   ]cmake-3.8.0-rc2-Darwin-x86_64.tar.gz2017-03-03 10:00 26M 
    [TXT]cmake-3.8.0-rc2-Linux-x86_64.sh2017-03-03 10:00 31M 
    [   ]cmake-3.8.0-rc2-Linux-x86_64.tar.gz2017-03-03 09:59 31M 
    [TXT]cmake-3.8.0-rc2-SHA-256.txt2017-03-03 09:59 1.0K 
    [TXT]cmake-3.8.0-rc2-SHA-256.txt.asc2017-03-03 09:59 833  
    [   ]cmake-3.8.0-rc2-win32-x86.msi2017-03-03 09:59 16M 
    [   ]cmake-3.8.0-rc2-win32-x86.zip2017-03-03 09:59 22M 
    [   ]cmake-3.8.0-rc2-win64-x64.msi2017-03-03 09:59 18M 
    [   ]cmake-3.8.0-rc2-win64-x64.zip2017-03-03 09:59 24M 
    [   ]cmake-3.8.0-rc2.tar.Z2017-03-03 09:59 12M 
    [   ]cmake-3.8.0-rc2.tar.gz2017-03-03 09:59 7.2M 
    [   ]cmake-3.8.0-rc2.zip2017-03-03 09:59 12M 
    [   ]cmake-3.8.0-rc3-Darwin-x86_64.dmg2017-03-24 13:52 26M 
    [   ]cmake-3.8.0-rc3-Darwin-x86_64.tar.gz2017-03-24 13:52 26M 
    [TXT]cmake-3.8.0-rc3-Linux-x86_64.sh2017-03-24 13:52 31M 
    [   ]cmake-3.8.0-rc3-Linux-x86_64.tar.gz2017-03-24 13:52 31M 
    [TXT]cmake-3.8.0-rc3-SHA-256.txt2017-03-24 13:52 1.0K 
    [TXT]cmake-3.8.0-rc3-SHA-256.txt.asc2017-03-24 13:52 833  
    [   ]cmake-3.8.0-rc3-win32-x86.msi2017-03-24 13:52 16M 
    [   ]cmake-3.8.0-rc3-win32-x86.zip2017-03-24 13:52 22M 
    [   ]cmake-3.8.0-rc3-win64-x64.msi2017-03-24 13:52 18M 
    [   ]cmake-3.8.0-rc3-win64-x64.zip2017-03-24 13:52 24M 
    [   ]cmake-3.8.0-rc3.tar.Z2017-03-24 13:52 12M 
    [   ]cmake-3.8.0-rc3.tar.gz2017-03-24 13:52 7.2M 
    [   ]cmake-3.8.0-rc3.zip2017-03-24 13:52 12M 
    [   ]cmake-3.8.0-rc4-Darwin-x86_64.dmg2017-03-30 11:38 26M 
    [   ]cmake-3.8.0-rc4-Darwin-x86_64.tar.gz2017-03-30 11:38 26M 
    [TXT]cmake-3.8.0-rc4-Linux-x86_64.sh2017-03-30 11:38 31M 
    [   ]cmake-3.8.0-rc4-Linux-x86_64.tar.gz2017-03-30 11:38 31M 
    [TXT]cmake-3.8.0-rc4-SHA-256.txt2017-03-30 11:38 1.0K 
    [TXT]cmake-3.8.0-rc4-SHA-256.txt.asc2017-03-30 11:38 833  
    [   ]cmake-3.8.0-rc4-win32-x86.msi2017-03-30 11:38 16M 
    [   ]cmake-3.8.0-rc4-win32-x86.zip2017-03-30 11:38 22M 
    [   ]cmake-3.8.0-rc4-win64-x64.msi2017-03-30 11:38 18M 
    [   ]cmake-3.8.0-rc4-win64-x64.zip2017-03-30 11:38 24M 
    [   ]cmake-3.8.0-rc4.tar.Z2017-03-30 11:38 12M 
    [   ]cmake-3.8.0-rc4.tar.gz2017-03-30 11:38 7.2M 
    [   ]cmake-3.8.0-rc4.zip2017-03-30 11:38 12M 
    [   ]cmake-3.8.0-win32-x86.msi2017-04-10 13:39 16M 
    [   ]cmake-3.8.0-win32-x86.zip2017-04-10 13:39 22M 
    [   ]cmake-3.8.0-win64-x64.msi2017-04-10 13:39 18M 
    [   ]cmake-3.8.0-win64-x64.zip2017-04-10 13:38 24M 
    [   ]cmake-3.8.0.tar.Z2017-04-10 13:38 12M 
    [   ]cmake-3.8.0.tar.gz2017-04-10 13:38 7.2M 
    [   ]cmake-3.8.0.zip2017-04-10 13:38 12M 
    [   ]cmake-3.8.1-Darwin-x86_64.dmg2017-05-02 11:06 26M 
    [   ]cmake-3.8.1-Darwin-x86_64.tar.gz2017-05-02 11:06 26M 
    [TXT]cmake-3.8.1-Linux-x86_64.sh2017-05-02 11:06 31M 
    [   ]cmake-3.8.1-Linux-x86_64.tar.gz2017-05-02 11:05 31M 
    [TXT]cmake-3.8.1-SHA-256.txt2017-05-02 11:05 1.0K 
    [TXT]cmake-3.8.1-SHA-256.txt.asc2017-05-02 11:05 833  
    [   ]cmake-3.8.1-win32-x86.msi2017-05-02 11:05 16M 
    [   ]cmake-3.8.1-win32-x86.zip2017-05-02 11:05 22M 
    [   ]cmake-3.8.1-win64-x64.msi2017-05-02 11:05 18M 
    [   ]cmake-3.8.1-win64-x64.zip2017-05-02 11:05 24M 
    [   ]cmake-3.8.1.tar.Z2017-05-02 11:05 12M 
    [   ]cmake-3.8.1.tar.gz2017-05-02 11:05 7.2M 
    [   ]cmake-3.8.1.zip2017-05-02 11:05 12M 
    [   ]cmake-3.8.2-Darwin-x86_64.dmg2017-05-31 12:26 26M 
    [   ]cmake-3.8.2-Darwin-x86_64.tar.gz2017-05-31 12:26 25M 
    [TXT]cmake-3.8.2-Linux-x86_64.sh2017-05-31 12:26 31M 
    [   ]cmake-3.8.2-Linux-x86_64.tar.gz2017-05-31 12:26 31M 
    [TXT]cmake-3.8.2-SHA-256.txt2017-05-31 12:26 1.0K 
    [TXT]cmake-3.8.2-SHA-256.txt.asc2017-05-31 12:26 833  
    [   ]cmake-3.8.2-win32-x86.msi2017-05-31 12:26 16M 
    [   ]cmake-3.8.2-win32-x86.zip2017-05-31 12:26 22M 
    [   ]cmake-3.8.2-win64-x64.msi2017-05-31 12:25 18M 
    [   ]cmake-3.8.2-win64-x64.zip2017-05-31 12:25 24M 
    [   ]cmake-3.8.2.tar.Z2017-05-31 12:25 12M 
    [   ]cmake-3.8.2.tar.gz2017-05-31 12:25 7.2M 
    [   ]cmake-3.8.2.zip2017-05-31 12:25 12M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.9/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.9/index.html new file mode 100644 index 0000000..54182af --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/files/v3.9/index.html @@ -0,0 +1,183 @@ + + + + Index of /files/v3.9 + + +

    Index of /files/v3.9

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]cmake-3.9.0-Darwin-x86_64.dmg2017-07-18 13:32 26M 
    [   ]cmake-3.9.0-Darwin-x86_64.tar.gz2017-07-18 13:32 25M 
    [TXT]cmake-3.9.0-Linux-x86_64.sh2017-07-18 13:32 31M 
    [   ]cmake-3.9.0-Linux-x86_64.tar.gz2017-07-18 13:32 31M 
    [TXT]cmake-3.9.0-SHA-256.txt2017-07-18 13:32 1.0K 
    [TXT]cmake-3.9.0-SHA-256.txt.asc2017-07-18 13:32 833  
    [   ]cmake-3.9.0-rc1-Darwin-x86_64.dmg2017-06-05 14:48 26M 
    [   ]cmake-3.9.0-rc1-Darwin-x86_64.tar.gz2017-06-05 14:48 25M 
    [TXT]cmake-3.9.0-rc1-Linux-x86_64.sh2017-06-05 14:48 31M 
    [   ]cmake-3.9.0-rc1-Linux-x86_64.tar.gz2017-06-05 14:48 31M 
    [TXT]cmake-3.9.0-rc1-SHA-256.txt2017-06-05 14:48 1.0K 
    [TXT]cmake-3.9.0-rc1-SHA-256.txt.asc2017-06-05 14:47 833  
    [   ]cmake-3.9.0-rc1-win32-x86.msi2017-06-05 14:47 16M 
    [   ]cmake-3.9.0-rc1-win32-x86.zip2017-06-05 14:47 22M 
    [   ]cmake-3.9.0-rc1-win64-x64.msi2017-06-05 14:47 18M 
    [   ]cmake-3.9.0-rc1-win64-x64.zip2017-06-05 14:47 25M 
    [   ]cmake-3.9.0-rc1.tar.Z2017-06-05 14:47 12M 
    [   ]cmake-3.9.0-rc1.tar.gz2017-06-05 14:47 7.3M 
    [   ]cmake-3.9.0-rc1.zip2017-06-05 14:47 12M 
    [   ]cmake-3.9.0-rc2-Darwin-x86_64.dmg2017-06-07 14:46 26M 
    [   ]cmake-3.9.0-rc2-Darwin-x86_64.tar.gz2017-06-07 14:46 25M 
    [TXT]cmake-3.9.0-rc2-Linux-x86_64.sh2017-06-07 14:46 31M 
    [   ]cmake-3.9.0-rc2-Linux-x86_64.tar.gz2017-06-07 14:46 31M 
    [TXT]cmake-3.9.0-rc2-SHA-256.txt2017-06-07 14:46 1.0K 
    [TXT]cmake-3.9.0-rc2-SHA-256.txt.asc2017-06-07 14:46 833  
    [   ]cmake-3.9.0-rc2-win32-x86.msi2017-06-07 14:46 16M 
    [   ]cmake-3.9.0-rc2-win32-x86.zip2017-06-07 14:46 22M 
    [   ]cmake-3.9.0-rc2-win64-x64.msi2017-06-07 14:46 18M 
    [   ]cmake-3.9.0-rc2-win64-x64.zip2017-06-07 14:46 25M 
    [   ]cmake-3.9.0-rc2.tar.Z2017-06-07 14:46 12M 
    [   ]cmake-3.9.0-rc2.tar.gz2017-06-07 14:46 7.3M 
    [   ]cmake-3.9.0-rc2.zip2017-06-07 14:46 12M 
    [   ]cmake-3.9.0-rc3-Darwin-x86_64.dmg2017-06-13 14:02 26M 
    [   ]cmake-3.9.0-rc3-Darwin-x86_64.tar.gz2017-06-13 14:02 25M 
    [TXT]cmake-3.9.0-rc3-Linux-x86_64.sh2017-06-13 14:02 31M 
    [   ]cmake-3.9.0-rc3-Linux-x86_64.tar.gz2017-06-13 14:02 31M 
    [TXT]cmake-3.9.0-rc3-SHA-256.txt2017-06-13 14:02 1.0K 
    [TXT]cmake-3.9.0-rc3-SHA-256.txt.asc2017-06-13 14:02 833  
    [   ]cmake-3.9.0-rc3-win32-x86.msi2017-06-13 14:02 16M 
    [   ]cmake-3.9.0-rc3-win32-x86.zip2017-06-13 14:02 22M 
    [   ]cmake-3.9.0-rc3-win64-x64.msi2017-06-13 14:01 18M 
    [   ]cmake-3.9.0-rc3-win64-x64.zip2017-06-13 14:01 25M 
    [   ]cmake-3.9.0-rc3.tar.Z2017-06-13 14:01 12M 
    [   ]cmake-3.9.0-rc3.tar.gz2017-06-13 14:01 7.3M 
    [   ]cmake-3.9.0-rc3.zip2017-06-13 14:01 12M 
    [   ]cmake-3.9.0-rc4-Darwin-x86_64.dmg2017-06-22 13:27 26M 
    [   ]cmake-3.9.0-rc4-Darwin-x86_64.tar.gz2017-06-22 13:27 25M 
    [TXT]cmake-3.9.0-rc4-Linux-x86_64.sh2017-06-22 13:27 31M 
    [   ]cmake-3.9.0-rc4-Linux-x86_64.tar.gz2017-06-22 13:27 31M 
    [TXT]cmake-3.9.0-rc4-SHA-256.txt2017-06-22 13:27 1.0K 
    [TXT]cmake-3.9.0-rc4-SHA-256.txt.asc2017-06-22 13:26 833  
    [   ]cmake-3.9.0-rc4-win32-x86.msi2017-06-22 13:26 16M 
    [   ]cmake-3.9.0-rc4-win32-x86.zip2017-06-22 13:26 22M 
    [   ]cmake-3.9.0-rc4-win64-x64.msi2017-06-22 13:26 18M 
    [   ]cmake-3.9.0-rc4-win64-x64.zip2017-06-22 13:26 25M 
    [   ]cmake-3.9.0-rc4.tar.Z2017-06-22 13:26 12M 
    [   ]cmake-3.9.0-rc4.tar.gz2017-06-22 13:26 7.3M 
    [   ]cmake-3.9.0-rc4.zip2017-06-22 13:26 12M 
    [   ]cmake-3.9.0-rc5-Darwin-x86_64.dmg2017-06-27 13:56 26M 
    [   ]cmake-3.9.0-rc5-Darwin-x86_64.tar.gz2017-06-27 13:56 25M 
    [TXT]cmake-3.9.0-rc5-Linux-x86_64.sh2017-06-27 13:56 31M 
    [   ]cmake-3.9.0-rc5-Linux-x86_64.tar.gz2017-06-27 13:56 31M 
    [TXT]cmake-3.9.0-rc5-SHA-256.txt2017-06-27 13:56 1.0K 
    [TXT]cmake-3.9.0-rc5-SHA-256.txt.asc2017-06-27 13:56 833  
    [   ]cmake-3.9.0-rc5-win32-x86.msi2017-06-27 13:56 16M 
    [   ]cmake-3.9.0-rc5-win32-x86.zip2017-06-27 13:56 22M 
    [   ]cmake-3.9.0-rc5-win64-x64.msi2017-06-27 13:56 18M 
    [   ]cmake-3.9.0-rc5-win64-x64.zip2017-06-27 13:56 25M 
    [   ]cmake-3.9.0-rc5.tar.Z2017-06-27 13:55 12M 
    [   ]cmake-3.9.0-rc5.tar.gz2017-06-27 13:55 7.3M 
    [   ]cmake-3.9.0-rc5.zip2017-06-27 13:55 12M 
    [   ]cmake-3.9.0-rc6-Darwin-x86_64.dmg2017-07-12 11:46 26M 
    [   ]cmake-3.9.0-rc6-Darwin-x86_64.tar.gz2017-07-12 11:46 25M 
    [TXT]cmake-3.9.0-rc6-Linux-x86_64.sh2017-07-12 11:46 31M 
    [   ]cmake-3.9.0-rc6-Linux-x86_64.tar.gz2017-07-12 11:46 31M 
    [TXT]cmake-3.9.0-rc6-SHA-256.txt2017-07-12 11:46 1.0K 
    [TXT]cmake-3.9.0-rc6-SHA-256.txt.asc2017-07-12 11:46 833  
    [   ]cmake-3.9.0-rc6-win32-x86.msi2017-07-12 11:46 16M 
    [   ]cmake-3.9.0-rc6-win32-x86.zip2017-07-12 11:45 22M 
    [   ]cmake-3.9.0-rc6-win64-x64.msi2017-07-12 11:45 18M 
    [   ]cmake-3.9.0-rc6-win64-x64.zip2017-07-12 11:45 25M 
    [   ]cmake-3.9.0-rc6.tar.Z2017-07-12 11:45 12M 
    [   ]cmake-3.9.0-rc6.tar.gz2017-07-12 11:45 7.3M 
    [   ]cmake-3.9.0-rc6.zip2017-07-12 11:45 12M 
    [   ]cmake-3.9.0-win32-x86.msi2017-07-18 13:32 16M 
    [   ]cmake-3.9.0-win32-x86.zip2017-07-18 13:32 22M 
    [   ]cmake-3.9.0-win64-x64.msi2017-07-18 13:32 18M 
    [   ]cmake-3.9.0-win64-x64.zip2017-07-18 13:31 25M 
    [   ]cmake-3.9.0.tar.Z2017-07-18 13:31 12M 
    [   ]cmake-3.9.0.tar.gz2017-07-18 13:31 7.3M 
    [   ]cmake-3.9.0.zip2017-07-18 13:31 12M 
    [   ]cmake-3.9.1-Darwin-x86_64.dmg2017-08-10 11:49 26M 
    [   ]cmake-3.9.1-Darwin-x86_64.tar.gz2017-08-10 11:49 25M 
    [TXT]cmake-3.9.1-Linux-x86_64.sh2017-08-10 11:49 31M 
    [   ]cmake-3.9.1-Linux-x86_64.tar.gz2017-08-10 11:49 31M 
    [TXT]cmake-3.9.1-SHA-256.txt2017-08-10 11:49 1.0K 
    [TXT]cmake-3.9.1-SHA-256.txt.asc2017-08-10 11:49 833  
    [   ]cmake-3.9.1-win32-x86.msi2017-08-10 11:49 16M 
    [   ]cmake-3.9.1-win32-x86.zip2017-08-10 11:49 22M 
    [   ]cmake-3.9.1-win64-x64.msi2017-08-10 11:49 18M 
    [   ]cmake-3.9.1-win64-x64.zip2017-08-10 11:49 25M 
    [   ]cmake-3.9.1.tar.Z2017-08-10 11:49 12M 
    [   ]cmake-3.9.1.tar.gz2017-08-10 11:49 7.3M 
    [   ]cmake-3.9.1.zip2017-08-10 11:49 12M 
    [   ]cmake-3.9.2-Darwin-x86_64.dmg2017-09-07 15:55 26M 
    [   ]cmake-3.9.2-Darwin-x86_64.tar.gz2017-09-07 15:54 25M 
    [TXT]cmake-3.9.2-Linux-x86_64.sh2017-09-07 15:54 31M 
    [   ]cmake-3.9.2-Linux-x86_64.tar.gz2017-09-07 15:54 31M 
    [TXT]cmake-3.9.2-SHA-256.txt2017-09-07 15:54 1.0K 
    [TXT]cmake-3.9.2-SHA-256.txt.asc2017-09-07 15:54 833  
    [   ]cmake-3.9.2-win32-x86.msi2017-09-07 15:54 16M 
    [   ]cmake-3.9.2-win32-x86.zip2017-09-07 15:54 22M 
    [   ]cmake-3.9.2-win64-x64.msi2017-09-07 15:54 18M 
    [   ]cmake-3.9.2-win64-x64.zip2017-09-07 15:54 25M 
    [   ]cmake-3.9.2.tar.Z2017-09-07 15:54 12M 
    [   ]cmake-3.9.2.tar.gz2017-09-07 15:54 7.3M 
    [   ]cmake-3.9.2.zip2017-09-07 15:54 12M 
    [   ]cmake-3.9.3-Darwin-x86_64.dmg2017-09-20 11:59 26M 
    [   ]cmake-3.9.3-Darwin-x86_64.tar.gz2017-09-20 11:59 25M 
    [TXT]cmake-3.9.3-Linux-x86_64.sh2017-09-20 11:59 31M 
    [   ]cmake-3.9.3-Linux-x86_64.tar.gz2017-09-20 11:59 31M 
    [TXT]cmake-3.9.3-SHA-256.txt2017-09-20 11:59 1.0K 
    [TXT]cmake-3.9.3-SHA-256.txt.asc2017-09-20 11:59 833  
    [   ]cmake-3.9.3-win32-x86.msi2017-09-20 11:59 16M 
    [   ]cmake-3.9.3-win32-x86.zip2017-09-20 11:59 22M 
    [   ]cmake-3.9.3-win64-x64.msi2017-09-20 11:59 18M 
    [   ]cmake-3.9.3-win64-x64.zip2017-09-20 11:59 25M 
    [   ]cmake-3.9.3.tar.Z2017-09-20 11:59 12M 
    [   ]cmake-3.9.3.tar.gz2017-09-20 11:59 7.3M 
    [   ]cmake-3.9.3.zip2017-09-20 11:59 12M 
    [   ]cmake-3.9.4-Darwin-x86_64.dmg2017-10-04 09:43 26M 
    [   ]cmake-3.9.4-Darwin-x86_64.tar.gz2017-10-04 09:43 25M 
    [TXT]cmake-3.9.4-Linux-x86_64.sh2017-10-04 09:43 31M 
    [   ]cmake-3.9.4-Linux-x86_64.tar.gz2017-10-04 09:43 31M 
    [TXT]cmake-3.9.4-SHA-256.txt2017-10-04 09:43 1.0K 
    [TXT]cmake-3.9.4-SHA-256.txt.asc2017-10-04 09:42 833  
    [   ]cmake-3.9.4-win32-x86.msi2017-10-04 09:42 16M 
    [   ]cmake-3.9.4-win32-x86.zip2017-10-04 09:42 22M 
    [   ]cmake-3.9.4-win64-x64.msi2017-10-04 09:42 18M 
    [   ]cmake-3.9.4-win64-x64.zip2017-10-04 09:42 25M 
    [   ]cmake-3.9.4.tar.Z2017-10-04 09:42 12M 
    [   ]cmake-3.9.4.tar.gz2017-10-04 09:42 7.3M 
    [   ]cmake-3.9.4.zip2017-10-04 09:42 12M 
    [   ]cmake-3.9.5-Darwin-x86_64.dmg2017-11-03 10:26 26M 
    [   ]cmake-3.9.5-Darwin-x86_64.tar.gz2017-11-03 10:26 25M 
    [TXT]cmake-3.9.5-Linux-x86_64.sh2017-11-03 10:26 31M 
    [   ]cmake-3.9.5-Linux-x86_64.tar.gz2017-11-03 10:26 31M 
    [TXT]cmake-3.9.5-SHA-256.txt2017-11-03 10:26 1.0K 
    [TXT]cmake-3.9.5-SHA-256.txt.asc2017-11-03 10:26 833  
    [   ]cmake-3.9.5-win32-x86.msi2017-11-03 10:26 16M 
    [   ]cmake-3.9.5-win32-x86.zip2017-11-03 10:26 22M 
    [   ]cmake-3.9.5-win64-x64.msi2017-11-03 10:26 18M 
    [   ]cmake-3.9.5-win64-x64.zip2017-11-03 10:26 25M 
    [   ]cmake-3.9.5.tar.Z2017-11-03 10:26 12M 
    [   ]cmake-3.9.5.tar.gz2017-11-03 10:26 7.3M 
    [   ]cmake-3.9.5.zip2017-11-03 10:26 12M 
    [   ]cmake-3.9.6-Darwin-x86_64.dmg2017-11-10 09:22 26M 
    [   ]cmake-3.9.6-Darwin-x86_64.tar.gz2017-11-10 09:21 25M 
    [TXT]cmake-3.9.6-Linux-x86_64.sh2017-11-10 09:21 31M 
    [   ]cmake-3.9.6-Linux-x86_64.tar.gz2017-11-10 09:21 31M 
    [TXT]cmake-3.9.6-SHA-256.txt2017-11-10 09:21 1.0K 
    [TXT]cmake-3.9.6-SHA-256.txt.asc2017-11-10 09:21 833  
    [   ]cmake-3.9.6-win32-x86.msi2017-11-10 09:21 16M 
    [   ]cmake-3.9.6-win32-x86.zip2017-11-10 09:21 22M 
    [   ]cmake-3.9.6-win64-x64.msi2017-11-10 09:21 18M 
    [   ]cmake-3.9.6-win64-x64.zip2017-11-10 09:21 25M 
    [   ]cmake-3.9.6.tar.Z2017-11-10 09:21 12M 
    [   ]cmake-3.9.6.tar.gz2017-11-10 09:21 7.3M 
    [   ]cmake-3.9.6.zip2017-11-10 09:21 12M 

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.23/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.23/index.html new file mode 100644 index 0000000..b3d9244 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.23/index.html @@ -0,0 +1,45 @@ + +Index of /pub/linux/utils/util-linux/v2.23/ + +

    Index of /pub/linux/utils/util-linux/v2.23/


    ../
    +libblkid-docs/                                     31-Jul-2013 12:35       -
    +libmount-docs/                                     31-Jul-2013 12:39       -
    +sha256sums.asc                                     12-May-2017 10:53    2942
    +util-linux-2.23-rc1.tar.bz2                        22-Mar-2013 12:48      5M
    +util-linux-2.23-rc1.tar.gz                         22-Mar-2013 12:48      7M
    +util-linux-2.23-rc1.tar.sign                       22-Mar-2013 12:48     836
    +util-linux-2.23-rc1.tar.xz                         22-Mar-2013 12:48      3M
    +util-linux-2.23-rc2.tar.bz2                        10-Apr-2013 22:14      5M
    +util-linux-2.23-rc2.tar.gz                         10-Apr-2013 22:14      7M
    +util-linux-2.23-rc2.tar.sign                       10-Apr-2013 22:14     836
    +util-linux-2.23-rc2.tar.xz                         10-Apr-2013 22:14      3M
    +util-linux-2.23.1.tar.bz2                          28-May-2013 09:57      5M
    +util-linux-2.23.1.tar.gz                           28-May-2013 09:57      7M
    +util-linux-2.23.1.tar.sign                         28-May-2013 09:57     836
    +util-linux-2.23.1.tar.xz                           28-May-2013 09:57      3M
    +util-linux-2.23.2.tar.bz2                          31-Jul-2013 12:40      5M
    +util-linux-2.23.2.tar.gz                           31-Jul-2013 12:40      7M
    +util-linux-2.23.2.tar.sign                         31-Jul-2013 12:40     836
    +util-linux-2.23.2.tar.xz                           31-Jul-2013 12:40      3M
    +util-linux-2.23.tar.bz2                            25-Apr-2013 10:48      5M
    +util-linux-2.23.tar.gz                             25-Apr-2013 10:48      7M
    +util-linux-2.23.tar.sign                           25-Apr-2013 10:48     836
    +util-linux-2.23.tar.xz                             25-Apr-2013 10:48      3M
    +v2.23-ChangeLog                                    25-Apr-2013 10:48     19K
    +v2.23-ChangeLog.sign                               25-Apr-2013 10:48     836
    +v2.23-ReleaseNotes                                 25-Apr-2013 10:48     53K
    +v2.23-ReleaseNotes.sign                            25-Apr-2013 10:48     836
    +v2.23-rc1-ChangeLog                                22-Mar-2013 12:48    361K
    +v2.23-rc1-ChangeLog.sign                           22-Mar-2013 12:48     836
    +v2.23-rc2-ChangeLog                                10-Apr-2013 22:14     80K
    +v2.23-rc2-ChangeLog.sign                           10-Apr-2013 22:14     836
    +v2.23.1-ChangeLog                                  28-May-2013 09:57     13K
    +v2.23.1-ChangeLog.sign                             28-May-2013 09:57     836
    +v2.23.1-ReleaseNotes                               28-May-2013 09:58    1448
    +v2.23.1-ReleaseNotes.sign                          28-May-2013 09:58     836
    +v2.23.2-ChangeLog                                  31-Jul-2013 12:40     23K
    +v2.23.2-ChangeLog.sign                             31-Jul-2013 12:40     836
    +v2.23.2-ReleaseNotes                               31-Jul-2013 12:40    2582
    +v2.23.2-ReleaseNotes.sign                          31-Jul-2013 12:40     836
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.24/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.24/index.html new file mode 100644 index 0000000..4afb462 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.24/index.html @@ -0,0 +1,43 @@ + +Index of /pub/linux/utils/util-linux/v2.24/ + +

    Index of /pub/linux/utils/util-linux/v2.24/


    ../
    +libblkid-docs/                                     24-Apr-2014 10:15       -
    +libmount-docs/                                     24-Apr-2014 10:17       -
    +sha256sums.asc                                     12-May-2017 10:53    2758
    +util-linux-2.24-rc1.tar.bz2                        27-Sep-2013 12:54      5M
    +util-linux-2.24-rc1.tar.gz                         27-Sep-2013 12:54      7M
    +util-linux-2.24-rc1.tar.sign                       27-Sep-2013 12:54     836
    +util-linux-2.24-rc1.tar.xz                         27-Sep-2013 12:54      3M
    +util-linux-2.24-rc2.tar.bz2                        11-Oct-2013 11:37      5M
    +util-linux-2.24-rc2.tar.gz                         11-Oct-2013 11:37      7M
    +util-linux-2.24-rc2.tar.sign                       11-Oct-2013 11:37     836
    +util-linux-2.24-rc2.tar.xz                         11-Oct-2013 11:37      3M
    +util-linux-2.24.1.tar.gz                           20-Jan-2014 13:33      7M
    +util-linux-2.24.1.tar.sign                         20-Jan-2014 13:33     819
    +util-linux-2.24.1.tar.xz                           20-Jan-2014 13:33      3M
    +util-linux-2.24.2.tar.gz                           24-Apr-2014 10:17      7M
    +util-linux-2.24.2.tar.sign                         24-Apr-2014 10:17     819
    +util-linux-2.24.2.tar.xz                           24-Apr-2014 10:17      3M
    +util-linux-2.24.tar.bz2                            21-Oct-2013 13:49      5M
    +util-linux-2.24.tar.gz                             21-Oct-2013 13:49      7M
    +util-linux-2.24.tar.sign                           21-Oct-2013 13:49     836
    +util-linux-2.24.tar.xz                             21-Oct-2013 13:49      3M
    +v2.24-ChangeLog                                    21-Oct-2013 13:49     22K
    +v2.24-ChangeLog.sign                               21-Oct-2013 13:49     836
    +v2.24-ReleaseNotes                                 21-Oct-2013 13:49     44K
    +v2.24-ReleaseNotes.sign                            21-Oct-2013 13:49     836
    +v2.24-rc1-ChangeLog                                27-Sep-2013 12:54    292K
    +v2.24-rc1-ChangeLog.sign                           27-Sep-2013 12:54     836
    +v2.24-rc2-ChangeLog                                11-Oct-2013 11:37     42K
    +v2.24-rc2-ChangeLog.sign                           11-Oct-2013 11:37     836
    +v2.24.1-ChangeLog                                  20-Jan-2014 13:33     38K
    +v2.24.1-ChangeLog.sign                             20-Jan-2014 13:33     819
    +v2.24.1-ReleaseNotes                               20-Jan-2014 13:33    4449
    +v2.24.1-ReleaseNotes.sign                          20-Jan-2014 13:33     819
    +v2.24.2-ChangeLog                                  24-Apr-2014 10:17     47K
    +v2.24.2-ChangeLog.sign                             24-Apr-2014 10:17     819
    +v2.24.2-ReleaseNotes                               24-Apr-2014 10:18    5748
    +v2.24.2-ReleaseNotes.sign                          24-Apr-2014 10:18     819
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.25/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.25/index.html new file mode 100644 index 0000000..9516c3b --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.25/index.html @@ -0,0 +1,46 @@ + +Index of /pub/linux/utils/util-linux/v2.25/ + +

    Index of /pub/linux/utils/util-linux/v2.25/


    ../
    +libblkid-docs/                                     24-Oct-2014 13:05       -
    +libmount-docs/                                     24-Oct-2014 13:06       -
    +libsmartcols-docs/                                 24-Oct-2014 13:08       -
    +sha256sums.asc                                     12-May-2017 10:53    2758
    +util-linux-2.25-rc1.tar.gz                         18-Jun-2014 13:33      7M
    +util-linux-2.25-rc1.tar.sign                       18-Jun-2014 13:33     819
    +util-linux-2.25-rc1.tar.xz                         18-Jun-2014 13:33      3M
    +util-linux-2.25-rc2.tar.gz                         02-Jul-2014 10:02      7M
    +util-linux-2.25-rc2.tar.sign                       02-Jul-2014 10:02     819
    +util-linux-2.25-rc2.tar.xz                         02-Jul-2014 10:02      3M
    +util-linux-2.25.1-rc1.tar.gz                       27-Aug-2014 13:18      8M
    +util-linux-2.25.1-rc1.tar.sign                     27-Aug-2014 13:18     819
    +util-linux-2.25.1-rc1.tar.xz                       27-Aug-2014 13:18      4M
    +util-linux-2.25.1.tar.gz                           03-Sep-2014 10:41      8M
    +util-linux-2.25.1.tar.sign                         03-Sep-2014 10:41     819
    +util-linux-2.25.1.tar.xz                           03-Sep-2014 10:41      4M
    +util-linux-2.25.2.tar.gz                           24-Oct-2014 13:08      8M
    +util-linux-2.25.2.tar.sign                         24-Oct-2014 13:08     819
    +util-linux-2.25.2.tar.xz                           24-Oct-2014 13:08      4M
    +util-linux-2.25.tar.gz                             22-Jul-2014 09:50      8M
    +util-linux-2.25.tar.sign                           22-Jul-2014 09:50     819
    +util-linux-2.25.tar.xz                             22-Jul-2014 09:50      4M
    +v2.25-ChangeLog                                    22-Jul-2014 09:50     41K
    +v2.25-ChangeLog.sign                               22-Jul-2014 09:50     819
    +v2.25-ReleaseNotes                                 22-Jul-2014 09:50     61K
    +v2.25-ReleaseNotes.sign                            22-Jul-2014 09:50     819
    +v2.25-rc1-ChangeLog                                18-Jun-2014 13:33    489K
    +v2.25-rc1-ChangeLog.sign                           18-Jun-2014 13:33     819
    +v2.25-rc2-ChangeLog                                02-Jul-2014 10:02     27K
    +v2.25-rc2-ChangeLog.sign                           02-Jul-2014 10:02     819
    +v2.25.1-ChangeLog                                  03-Sep-2014 10:41    5816
    +v2.25.1-ChangeLog.sign                             03-Sep-2014 10:41     819
    +v2.25.1-ReleaseNotes                               03-Sep-2014 10:52    3220
    +v2.25.1-ReleaseNotes.sign                          03-Sep-2014 10:52     819
    +v2.25.1-rc1-ChangeLog                              27-Aug-2014 13:18     22K
    +v2.25.1-rc1-ChangeLog.sign                         27-Aug-2014 13:18     819
    +v2.25.2-ChangeLog                                  24-Oct-2014 13:08     26K
    +v2.25.2-ChangeLog.sign                             24-Oct-2014 13:08     819
    +v2.25.2-ReleaseNotes                               24-Oct-2014 13:08    3016
    +v2.25.2-ReleaseNotes.sign                          24-Oct-2014 13:08     819
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.26/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.26/index.html new file mode 100644 index 0000000..b991489 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.26/index.html @@ -0,0 +1,42 @@ + +Index of /pub/linux/utils/util-linux/v2.26/ + +

    Index of /pub/linux/utils/util-linux/v2.26/


    ../
    +libblkid-docs/                                     30-Apr-2015 10:38       -
    +libfdisk-docs/                                     30-Apr-2015 10:40       -
    +libmount-docs/                                     30-Apr-2015 10:42       -
    +libsmartcols-docs/                                 30-Apr-2015 10:43       -
    +sha256sums.asc                                     12-May-2017 10:54    2480
    +util-linux-2.26-rc1.tar.gz                         14-Jan-2015 13:14      8M
    +util-linux-2.26-rc1.tar.sign                       14-Jan-2015 13:14     819
    +util-linux-2.26-rc1.tar.xz                         14-Jan-2015 13:14      4M
    +util-linux-2.26-rc2.tar.gz                         04-Feb-2015 11:49      8M
    +util-linux-2.26-rc2.tar.sign                       04-Feb-2015 11:49     819
    +util-linux-2.26-rc2.tar.xz                         04-Feb-2015 11:49      4M
    +util-linux-2.26.1.tar.gz                           13-Mar-2015 14:23      8M
    +util-linux-2.26.1.tar.sign                         13-Mar-2015 14:23     819
    +util-linux-2.26.1.tar.xz                           13-Mar-2015 14:23      4M
    +util-linux-2.26.2.tar.gz                           30-Apr-2015 10:44      8M
    +util-linux-2.26.2.tar.sign                         30-Apr-2015 10:44     819
    +util-linux-2.26.2.tar.xz                           30-Apr-2015 10:44      4M
    +util-linux-2.26.tar.gz                             19-Feb-2015 12:47      8M
    +util-linux-2.26.tar.sign                           19-Feb-2015 12:47     819
    +util-linux-2.26.tar.xz                             19-Feb-2015 12:47      4M
    +v2.26-ChangeLog                                    19-Feb-2015 12:47     30K
    +v2.26-ChangeLog.sign                               19-Feb-2015 12:47     819
    +v2.26-ReleaseNotes                                 19-Feb-2015 12:47     51K
    +v2.26-ReleaseNotes.sign                            19-Feb-2015 12:47     819
    +v2.26-rc1-ChangeLog                                14-Jan-2015 13:14    360K
    +v2.26-rc1-ChangeLog.sign                           14-Jan-2015 13:14     819
    +v2.26-rc2-ChangeLog                                04-Feb-2015 11:50     51K
    +v2.26-rc2-ChangeLog.sign                           04-Feb-2015 11:50     819
    +v2.26.1-ChangeLog                                  13-Mar-2015 14:23     32K
    +v2.26.1-ChangeLog.sign                             13-Mar-2015 14:23     819
    +v2.26.1-ReleaseNotes                               13-Mar-2015 14:23    2944
    +v2.26.1-ReleaseNotes.sign                          13-Mar-2015 14:23     819
    +v2.26.2-ChangeLog                                  30-Apr-2015 10:44     58K
    +v2.26.2-ChangeLog.sign                             30-Apr-2015 10:44     819
    +v2.26.2-ReleaseNotes                               30-Apr-2015 10:44    5834
    +v2.26.2-ReleaseNotes.sign                          30-Apr-2015 10:44     819
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.27/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.27/index.html new file mode 100644 index 0000000..14eb368 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.27/index.html @@ -0,0 +1,35 @@ + +Index of /pub/linux/utils/util-linux/v2.27/ + +

    Index of /pub/linux/utils/util-linux/v2.27/


    ../
    +libblkid-docs/                                     02-Nov-2015 11:01       -
    +libfdisk-docs/                                     02-Nov-2015 11:03       -
    +libmount-docs/                                     02-Nov-2015 11:04       -
    +libsmartcols-docs/                                 02-Nov-2015 11:06       -
    +sha256sums.asc                                     12-May-2017 10:54    2127
    +util-linux-2.27-rc1.tar.gz                         31-Jul-2015 11:01      8M
    +util-linux-2.27-rc1.tar.sign                       31-Jul-2015 11:01     819
    +util-linux-2.27-rc1.tar.xz                         31-Jul-2015 11:01      4M
    +util-linux-2.27-rc2.tar.gz                         24-Aug-2015 11:04      8M
    +util-linux-2.27-rc2.tar.sign                       24-Aug-2015 11:04     819
    +util-linux-2.27-rc2.tar.xz                         24-Aug-2015 11:04      4M
    +util-linux-2.27.1.tar.gz                           02-Nov-2015 11:06      8M
    +util-linux-2.27.1.tar.sign                         02-Nov-2015 11:06     819
    +util-linux-2.27.1.tar.xz                           02-Nov-2015 11:06      4M
    +util-linux-2.27.tar.gz                             07-Sep-2015 08:17      8M
    +util-linux-2.27.tar.sign                           07-Sep-2015 08:17     819
    +util-linux-2.27.tar.xz                             07-Sep-2015 08:17      4M
    +v2.27-ChangeLog                                    07-Sep-2015 08:17     21K
    +v2.27-ChangeLog.sign                               07-Sep-2015 08:17     819
    +v2.27-ReleaseNotes                                 07-Sep-2015 08:17     35K
    +v2.27-ReleaseNotes.sign                            07-Sep-2015 08:17     819
    +v2.27-rc1-ChangeLog                                31-Jul-2015 11:01    263K
    +v2.27-rc1-ChangeLog.sign                           31-Jul-2015 11:01     819
    +v2.27-rc2-ChangeLog                                24-Aug-2015 11:04     38K
    +v2.27-rc2-ChangeLog.sign                           24-Aug-2015 11:04     819
    +v2.27.1-ChangeLog                                  02-Nov-2015 11:06     18K
    +v2.27.1-ChangeLog.sign                             02-Nov-2015 11:06     819
    +v2.27.1-ReleaseNotes                               02-Nov-2015 11:06    2107
    +v2.27.1-ReleaseNotes.sign                          02-Nov-2015 11:06     819
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.28/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.28/index.html new file mode 100644 index 0000000..4bba6b4 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.28/index.html @@ -0,0 +1,42 @@ + +Index of /pub/linux/utils/util-linux/v2.28/ + +

    Index of /pub/linux/utils/util-linux/v2.28/


    ../
    +libblkid-docs/                                     07-Sep-2016 12:00       -
    +libfdisk-docs/                                     07-Sep-2016 12:02       -
    +libmount-docs/                                     07-Sep-2016 12:04       -
    +libsmartcols-docs/                                 07-Sep-2016 12:06       -
    +sha256sums.asc                                     12-May-2017 10:55    2480
    +util-linux-2.28-rc1.tar.gz                         11-Mar-2016 11:45      8M
    +util-linux-2.28-rc1.tar.sign                       11-Mar-2016 11:45     819
    +util-linux-2.28-rc1.tar.xz                         11-Mar-2016 11:45      4M
    +util-linux-2.28-rc2.tar.gz                         29-Mar-2016 09:04      8M
    +util-linux-2.28-rc2.tar.sign                       29-Mar-2016 09:04     819
    +util-linux-2.28-rc2.tar.xz                         29-Mar-2016 09:04      4M
    +util-linux-2.28.1.tar.gz                           11-Aug-2016 10:09      9M
    +util-linux-2.28.1.tar.sign                         11-Aug-2016 10:09     819
    +util-linux-2.28.1.tar.xz                           11-Aug-2016 10:09      4M
    +util-linux-2.28.2.tar.gz                           07-Sep-2016 12:06      9M
    +util-linux-2.28.2.tar.sign                         07-Sep-2016 12:06     819
    +util-linux-2.28.2.tar.xz                           07-Sep-2016 12:06      4M
    +util-linux-2.28.tar.gz                             12-Apr-2016 11:26      8M
    +util-linux-2.28.tar.sign                           12-Apr-2016 11:26     819
    +util-linux-2.28.tar.xz                             12-Apr-2016 11:26      4M
    +v2.28-ChangeLog                                    12-Apr-2016 11:26     13K
    +v2.28-ChangeLog.sign                               12-Apr-2016 11:26     819
    +v2.28-ReleaseNotes                                 12-Apr-2016 11:26     33K
    +v2.28-ReleaseNotes.sign                            12-Apr-2016 11:26     819
    +v2.28-rc1-ChangeLog                                11-Mar-2016 11:45    269K
    +v2.28-rc1-ChangeLog.sign                           11-Mar-2016 11:45     819
    +v2.28-rc2-ChangeLog                                29-Mar-2016 09:04     52K
    +v2.28-rc2-ChangeLog.sign                           29-Mar-2016 09:04     819
    +v2.28.1-ChangeLog                                  11-Aug-2016 10:09     37K
    +v2.28.1-ChangeLog.sign                             11-Aug-2016 10:09     819
    +v2.28.1-ReleaseNotes                               11-Aug-2016 10:09    3748
    +v2.28.1-ReleaseNotes.sign                          11-Aug-2016 10:09     819
    +v2.28.2-ChangeLog                                  07-Sep-2016 12:06    8900
    +v2.28.2-ChangeLog.sign                             07-Sep-2016 12:06     819
    +v2.28.2-ReleaseNotes                               07-Sep-2016 12:06    1161
    +v2.28.2-ReleaseNotes.sign                          07-Sep-2016 12:06     819
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.29/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.29/index.html new file mode 100644 index 0000000..916a255 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.29/index.html @@ -0,0 +1,42 @@ + +Index of /pub/linux/utils/util-linux/v2.29/ + +

    Index of /pub/linux/utils/util-linux/v2.29/


    ../
    +libblkid-docs/                                     22-Feb-2017 15:20       -
    +libfdisk-docs/                                     22-Feb-2017 15:22       -
    +libmount-docs/                                     22-Feb-2017 15:24       -
    +libsmartcols-docs/                                 22-Feb-2017 15:26       -
    +sha256sums.asc                                     12-May-2017 10:55    2480
    +util-linux-2.29-rc1.tar.gz                         30-Sep-2016 09:55      9M
    +util-linux-2.29-rc1.tar.sign                       30-Sep-2016 09:55     819
    +util-linux-2.29-rc1.tar.xz                         30-Sep-2016 09:55      4M
    +util-linux-2.29-rc2.tar.gz                         19-Oct-2016 13:13      9M
    +util-linux-2.29-rc2.tar.sign                       19-Oct-2016 13:13     819
    +util-linux-2.29-rc2.tar.xz                         19-Oct-2016 13:13      4M
    +util-linux-2.29.1.tar.gz                           20-Jan-2017 14:02      9M
    +util-linux-2.29.1.tar.sign                         20-Jan-2017 14:02     819
    +util-linux-2.29.1.tar.xz                           20-Jan-2017 14:02      4M
    +util-linux-2.29.2.tar.gz                           22-Feb-2017 15:26      9M
    +util-linux-2.29.2.tar.sign                         22-Feb-2017 15:26     819
    +util-linux-2.29.2.tar.xz                           22-Feb-2017 15:26      4M
    +util-linux-2.29.tar.gz                             08-Nov-2016 11:23      9M
    +util-linux-2.29.tar.sign                           08-Nov-2016 11:23     819
    +util-linux-2.29.tar.xz                             08-Nov-2016 11:23      4M
    +v2.29-ChangeLog                                    08-Nov-2016 11:23     28K
    +v2.29-ChangeLog.sign                               08-Nov-2016 11:23     819
    +v2.29-ReleaseNotes                                 08-Nov-2016 11:24     26K
    +v2.29-ReleaseNotes.sign                            08-Nov-2016 11:24     819
    +v2.29-rc1-ChangeLog                                30-Sep-2016 09:55    219K
    +v2.29-rc1-ChangeLog.sign                           30-Sep-2016 09:55     819
    +v2.29-rc2-ChangeLog                                19-Oct-2016 13:13     19K
    +v2.29-rc2-ChangeLog.sign                           19-Oct-2016 13:13     819
    +v2.29.1-ChangeLog                                  20-Jan-2017 14:02     47K
    +v2.29.1-ChangeLog.sign                             20-Jan-2017 14:02     819
    +v2.29.1-ReleaseNotes                               20-Jan-2017 14:02    5067
    +v2.29.1-ReleaseNotes.sign                          20-Jan-2017 14:02     819
    +v2.29.2-ChangeLog                                  22-Feb-2017 15:26     14K
    +v2.29.2-ChangeLog.sign                             22-Feb-2017 15:26     819
    +v2.29.2-ReleaseNotes                               22-Feb-2017 15:26    2012
    +v2.29.2-ReleaseNotes.sign                          22-Feb-2017 15:26     819
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.30/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.30/index.html new file mode 100644 index 0000000..0441bc0 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.30/index.html @@ -0,0 +1,42 @@ + +Index of /pub/linux/utils/util-linux/v2.30/ + +

    Index of /pub/linux/utils/util-linux/v2.30/


    ../
    +libblkid-docs/                                     21-Sep-2017 09:49       -
    +libfdisk-docs/                                     21-Sep-2017 09:50       -
    +libmount-docs/                                     21-Sep-2017 09:50       -
    +libsmartcols-docs/                                 21-Sep-2017 09:51       -
    +sha256sums.asc                                     21-Sep-2017 09:52    2480
    +util-linux-2.30-rc1.tar.gz                         12-May-2017 12:02      9M
    +util-linux-2.30-rc1.tar.sign                       12-May-2017 12:02     819
    +util-linux-2.30-rc1.tar.xz                         12-May-2017 12:02      4M
    +util-linux-2.30-rc2.tar.gz                         23-May-2017 10:42      9M
    +util-linux-2.30-rc2.tar.sign                       23-May-2017 10:42     819
    +util-linux-2.30-rc2.tar.xz                         23-May-2017 10:42      4M
    +util-linux-2.30.1.tar.gz                           20-Jul-2017 09:33      9M
    +util-linux-2.30.1.tar.sign                         20-Jul-2017 09:33     819
    +util-linux-2.30.1.tar.xz                           20-Jul-2017 09:33      4M
    +util-linux-2.30.2.tar.gz                           21-Sep-2017 09:51      9M
    +util-linux-2.30.2.tar.sign                         21-Sep-2017 09:51     833
    +util-linux-2.30.2.tar.xz                           21-Sep-2017 09:51      4M
    +util-linux-2.30.tar.gz                             02-Jun-2017 10:44      9M
    +util-linux-2.30.tar.sign                           02-Jun-2017 10:44     819
    +util-linux-2.30.tar.xz                             02-Jun-2017 10:44      4M
    +v2.30-ChangeLog                                    02-Jun-2017 10:44     28K
    +v2.30-ChangeLog.sign                               02-Jun-2017 10:44     819
    +v2.30-ReleaseNotes                                 02-Jun-2017 10:44     34K
    +v2.30-ReleaseNotes.sign                            02-Jun-2017 10:44     819
    +v2.30-rc1-ChangeLog                                23-May-2017 10:42    318K
    +v2.30-rc1-ChangeLog.sign                           23-May-2017 10:42     819
    +v2.30-rc2-ChangeLog                                23-May-2017 10:42     19K
    +v2.30-rc2-ChangeLog.sign                           23-May-2017 10:42     819
    +v2.30.1-ChangeLog                                  20-Jul-2017 09:33     20K
    +v2.30.1-ChangeLog.sign                             20-Jul-2017 09:33     819
    +v2.30.1-ReleaseNotes                               20-Jul-2017 09:33    1901
    +v2.30.1-ReleaseNotes.sign                          20-Jul-2017 09:33     819
    +v2.30.2-ChangeLog                                  21-Sep-2017 09:51     13K
    +v2.30.2-ChangeLog.sign                             21-Sep-2017 09:51     833
    +v2.30.2-ReleaseNotes                               21-Sep-2017 09:51    1604
    +v2.30.2-ReleaseNotes.sign                          21-Sep-2017 09:51     833
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.31/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.31/index.html new file mode 100644 index 0000000..097e4e0 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.31/index.html @@ -0,0 +1,35 @@ + +Index of /pub/linux/utils/util-linux/v2.31/ + +

    Index of /pub/linux/utils/util-linux/v2.31/


    ../
    +libblkid-docs/                                     19-Dec-2017 15:16       -
    +libfdisk-docs/                                     19-Dec-2017 15:17       -
    +libmount-docs/                                     19-Dec-2017 15:17       -
    +libsmartcols-docs/                                 19-Dec-2017 15:17       -
    +sha256sums.asc                                     19-Dec-2017 15:20    2127
    +util-linux-2.31-rc1.tar.gz                         22-Sep-2017 10:39      9M
    +util-linux-2.31-rc1.tar.sign                       22-Sep-2017 10:39     833
    +util-linux-2.31-rc1.tar.xz                         22-Sep-2017 10:39      4M
    +util-linux-2.31-rc2.tar.gz                         03-Oct-2017 16:03      9M
    +util-linux-2.31-rc2.tar.sign                       03-Oct-2017 16:03     833
    +util-linux-2.31-rc2.tar.xz                         03-Oct-2017 16:03      4M
    +util-linux-2.31.1.tar.gz                           19-Dec-2017 15:18      9M
    +util-linux-2.31.1.tar.sign                         19-Dec-2017 15:18     833
    +util-linux-2.31.1.tar.xz                           19-Dec-2017 15:18      4M
    +util-linux-2.31.tar.gz                             19-Oct-2017 11:27      9M
    +util-linux-2.31.tar.sign                           19-Oct-2017 11:27     833
    +util-linux-2.31.tar.xz                             19-Oct-2017 11:27      4M
    +v2.31-ChangeLog                                    19-Oct-2017 11:27     15K
    +v2.31-ChangeLog.sign                               19-Oct-2017 11:27     833
    +v2.31-ReleaseNotes                                 19-Oct-2017 11:27     31K
    +v2.31-ReleaseNotes.sign                            19-Oct-2017 11:27     833
    +v2.31-rc1-ChangeLog                                22-Sep-2017 10:39    290K
    +v2.31-rc1-ChangeLog.sign                           22-Sep-2017 10:39     833
    +v2.31-rc2-ChangeLog                                03-Oct-2017 16:03     12K
    +v2.31-rc2-ChangeLog.sign                           03-Oct-2017 16:03     833
    +v2.31.1-ChangeLog                                  19-Dec-2017 15:18     27K
    +v2.31.1-ChangeLog.sign                             19-Dec-2017 15:18     833
    +v2.31.1-ReleaseNotes                               19-Dec-2017 15:18    3175
    +v2.31.1-ReleaseNotes.sign                          19-Dec-2017 15:18     833
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.32/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.32/index.html new file mode 100644 index 0000000..d373e98 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.32/index.html @@ -0,0 +1,35 @@ + +Index of /pub/linux/utils/util-linux/v2.32/ + +

    Index of /pub/linux/utils/util-linux/v2.32/


    ../
    +libblkid-docs/                                     16-Jul-2018 11:27       -
    +libfdisk-docs/                                     16-Jul-2018 11:28       -
    +libmount-docs/                                     16-Jul-2018 11:28       -
    +libsmartcols-docs/                                 16-Jul-2018 11:28       -
    +sha256sums.asc                                     16-Jul-2018 11:30    2127
    +util-linux-2.32-rc1.tar.gz                         13-Feb-2018 12:25      9M
    +util-linux-2.32-rc1.tar.sign                       13-Feb-2018 12:25     833
    +util-linux-2.32-rc1.tar.xz                         13-Feb-2018 12:25      4M
    +util-linux-2.32-rc2.tar.gz                         01-Mar-2018 13:38      9M
    +util-linux-2.32-rc2.tar.sign                       01-Mar-2018 13:38     833
    +util-linux-2.32-rc2.tar.xz                         01-Mar-2018 13:38      4M
    +util-linux-2.32.1.tar.gz                           16-Jul-2018 11:29      9M
    +util-linux-2.32.1.tar.sign                         16-Jul-2018 11:29     833
    +util-linux-2.32.1.tar.xz                           16-Jul-2018 11:29      4M
    +util-linux-2.32.tar.gz                             21-Mar-2018 14:49      9M
    +util-linux-2.32.tar.sign                           21-Mar-2018 14:49     833
    +util-linux-2.32.tar.xz                             21-Mar-2018 14:49      4M
    +v2.32-ChangeLog                                    21-Mar-2018 14:49     36K
    +v2.32-ChangeLog.sign                               21-Mar-2018 14:49     833
    +v2.32-ReleaseNotes                                 21-Mar-2018 14:49     21K
    +v2.32-ReleaseNotes.sign                            21-Mar-2018 14:49     833
    +v2.32-rc1-ChangeLog                                13-Feb-2018 12:25    174K
    +v2.32-rc1-ChangeLog.sign                           13-Feb-2018 12:25     833
    +v2.32-rc2-ChangeLog                                01-Mar-2018 13:38     21K
    +v2.32-rc2-ChangeLog.sign                           01-Mar-2018 13:38     833
    +v2.32.1-ChangeLog                                  16-Jul-2018 11:29     31K
    +v2.32.1-ChangeLog.sign                             16-Jul-2018 11:29     833
    +v2.32.1-ReleaseNotes                               16-Jul-2018 11:29    3425
    +v2.32.1-ReleaseNotes.sign                          16-Jul-2018 11:29     833
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.33/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.33/index.html new file mode 100644 index 0000000..5495305 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.33/index.html @@ -0,0 +1,42 @@ + +Index of /pub/linux/utils/util-linux/v2.33/ + +

    Index of /pub/linux/utils/util-linux/v2.33/


    ../
    +libblkid-docs/                                     09-Apr-2019 13:55       -
    +libfdisk-docs/                                     09-Apr-2019 13:56       -
    +libmount-docs/                                     09-Apr-2019 13:56       -
    +libsmartcols-docs/                                 09-Apr-2019 13:56       -
    +sha256sums.asc                                     09-Apr-2019 14:01    2480
    +util-linux-2.33-rc1.tar.gz                         25-Sep-2018 10:34      9M
    +util-linux-2.33-rc1.tar.sign                       25-Sep-2018 10:34     833
    +util-linux-2.33-rc1.tar.xz                         25-Sep-2018 10:34      4M
    +util-linux-2.33-rc2.tar.gz                         19-Oct-2018 11:44      9M
    +util-linux-2.33-rc2.tar.sign                       19-Oct-2018 11:44     833
    +util-linux-2.33-rc2.tar.xz                         19-Oct-2018 11:44      4M
    +util-linux-2.33.1.tar.gz                           09-Jan-2019 10:28      9M
    +util-linux-2.33.1.tar.sign                         09-Jan-2019 10:28     833
    +util-linux-2.33.1.tar.xz                           09-Jan-2019 10:28      4M
    +util-linux-2.33.2.tar.gz                           09-Apr-2019 13:57     10M
    +util-linux-2.33.2.tar.sign                         09-Apr-2019 13:57     833
    +util-linux-2.33.2.tar.xz                           09-Apr-2019 13:57      4M
    +util-linux-2.33.tar.gz                             06-Nov-2018 11:25      9M
    +util-linux-2.33.tar.sign                           06-Nov-2018 11:25     833
    +util-linux-2.33.tar.xz                             06-Nov-2018 11:25      4M
    +v2.33-ChangeLog                                    06-Nov-2018 11:25    7977
    +v2.33-ChangeLog.sign                               06-Nov-2018 11:25     833
    +v2.33-ReleaseNotes                                 06-Nov-2018 11:25     27K
    +v2.33-ReleaseNotes.sign                            06-Nov-2018 11:25     833
    +v2.33-rc1-ChangeLog                                25-Sep-2018 10:34    210K
    +v2.33-rc1-ChangeLog.sign                           25-Sep-2018 10:34     833
    +v2.33-rc2-ChangeLog                                19-Oct-2018 11:44     18K
    +v2.33-rc2-ChangeLog.sign                           19-Oct-2018 11:44     833
    +v2.33.1-ChangeLog                                  09-Jan-2019 10:28     17K
    +v2.33.1-ChangeLog.sign                             09-Jan-2019 10:28     833
    +v2.33.1-ReleaseNotes                               09-Jan-2019 10:28    1899
    +v2.33.1-ReleaseNotes.sign                          09-Jan-2019 10:28     833
    +v2.33.2-ChangeLog                                  09-Apr-2019 13:57     21K
    +v2.33.2-ChangeLog.sign                             09-Apr-2019 13:57     833
    +v2.33.2-ReleaseNotes                               09-Apr-2019 13:57    2566
    +v2.33.2-ReleaseNotes.sign                          09-Apr-2019 13:57     833
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.34/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.34/index.html new file mode 100644 index 0000000..bd9d9c8 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.34/index.html @@ -0,0 +1,28 @@ + +Index of /pub/linux/utils/util-linux/v2.34/ + +

    Index of /pub/linux/utils/util-linux/v2.34/


    ../
    +libblkid-docs/                                     14-Jun-2019 10:45       -
    +libfdisk-docs/                                     14-Jun-2019 10:45       -
    +libmount-docs/                                     14-Jun-2019 10:45       -
    +libsmartcols-docs/                                 14-Jun-2019 10:46       -
    +sha256sums.asc                                     14-Jun-2019 10:51    1774
    +util-linux-2.34-rc1.tar.gz                         30-Apr-2019 10:24     10M
    +util-linux-2.34-rc1.tar.sign                       30-Apr-2019 10:24     833
    +util-linux-2.34-rc1.tar.xz                         30-Apr-2019 10:24      5M
    +util-linux-2.34-rc2.tar.gz                         30-May-2019 10:24     10M
    +util-linux-2.34-rc2.tar.sign                       30-May-2019 10:24     833
    +util-linux-2.34-rc2.tar.xz                         30-May-2019 10:24      5M
    +util-linux-2.34.tar.gz                             14-Jun-2019 10:46     10M
    +util-linux-2.34.tar.sign                           14-Jun-2019 10:46     833
    +util-linux-2.34.tar.xz                             14-Jun-2019 10:46      5M
    +v2.34-ChangeLog                                    14-Jun-2019 10:46     14K
    +v2.34-ChangeLog.sign                               14-Jun-2019 10:46     833
    +v2.34-ReleaseNotes                                 14-Jun-2019 10:46     27K
    +v2.34-ReleaseNotes.sign                            14-Jun-2019 10:46     833
    +v2.34-rc1-ChangeLog                                30-Apr-2019 10:24    167K
    +v2.34-rc1-ChangeLog.sign                           30-Apr-2019 10:24     833
    +v2.34-rc2-ChangeLog                                30-May-2019 10:24     57K
    +v2.34-rc2-ChangeLog.sign                           30-May-2019 10:24     833
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.35/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.35/index.html new file mode 100644 index 0000000..aa714d3 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.35/index.html @@ -0,0 +1,18 @@ + +Index of /pub/linux/utils/util-linux/v2.35/ + +

    Index of /pub/linux/utils/util-linux/v2.35/


    ../
    +libblkid-docs/                                     11-Dec-2019 10:04       -
    +libfdisk-docs/                                     11-Dec-2019 10:05       -
    +libmount-docs/                                     11-Dec-2019 10:05       -
    +libsmartcols-docs/                                 11-Dec-2019 10:05       -
    +sha256sums.asc                                     11-Dec-2019 10:11    1242
    +util-linux-2.35-rc1.tar.gz                         11-Dec-2019 10:06     10M
    +util-linux-2.35-rc1.tar.sign                       11-Dec-2019 10:06     833
    +util-linux-2.35-rc1.tar.xz                         11-Dec-2019 10:06      5M
    +v2.35-ReleaseNotes                                 11-Dec-2019 10:06     21K
    +v2.35-ReleaseNotes.sign                            11-Dec-2019 10:06     833
    +v2.35-rc1-ChangeLog                                11-Dec-2019 10:06    228K
    +v2.35-rc1-ChangeLog.sign                           11-Dec-2019 10:06     833
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/releases/eglibc/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/releases/eglibc/index.html new file mode 100644 index 0000000..b267940 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/releases/eglibc/index.html @@ -0,0 +1,21 @@ + +Index of /releases/eglibc/ + +

    Index of /releases/eglibc/


    ../
    +eglibc-2.16-svnr21224.tar.bz2                      17-Oct-2012 18:01            17310656
    +eglibc-2.16-svnr21224.tar.bz2.md5                  17-Oct-2012 21:53                  64
    +eglibc-2.16-svnr21224.tar.bz2.sha1                 17-Oct-2012 21:53                  72
    +eglibc-2.17-svnr22064.tar.bz2                      04-Jan-2013 05:44            17565519
    +eglibc-2.17-svnr22064.tar.bz2.asc                  04-Jan-2013 05:45                 302
    +eglibc-2.17-svnr22064.tar.bz2.md5                  04-Jan-2013 05:44                  64
    +eglibc-2.17-svnr22064.tar.bz2.sha1                 04-Jan-2013 05:44                  72
    +eglibc-2.18-svnr23787.tar.bz2                      21-Aug-2013 05:36            17862773
    +eglibc-2.18-svnr23787.tar.bz2.asc                  21-Aug-2013 05:36                 302
    +eglibc-2.18-svnr23787.tar.bz2.md5                  21-Aug-2013 05:36                  64
    +eglibc-2.18-svnr23787.tar.bz2.sha1                 21-Aug-2013 05:36                  72
    +eglibc-2.19-svnr25243.tar.bz2                      08-Feb-2014 10:06            18873620
    +eglibc-2.19-svnr25243.tar.bz2.asc                  08-Feb-2014 10:06                 285
    +eglibc-2.19-svnr25243.tar.bz2.md5                  08-Feb-2014 10:06                  64
    +eglibc-2.19-svnr25243.tar.bz2.sha1                 08-Feb-2014 10:06                  72
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/releases/gnu-config/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/releases/gnu-config/index.html new file mode 100644 index 0000000..051aa48 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/releases/gnu-config/index.html @@ -0,0 +1,9 @@ + +Index of /releases/gnu-config/ + +

    Index of /releases/gnu-config/


    ../
    +SHA256SUM                                          03-Oct-2012 17:23                 190
    +gnu-config-20120814.tar.bz2                        18-Sep-2012 09:28               43026
    +gnu-config-yocto-20111111.tgz                      08-May-2012 21:11               48762
    +

    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/index.html new file mode 100644 index 0000000..72e0d65 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/index.html @@ -0,0 +1,609 @@ + + + + Index of /releases/individual/xserver + + +

    Index of /releases/individual/xserver

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [   ]xorg-server-1.0.1.tar.bz22006-01-18 23:51 5.7M 
    [   ]xorg-server-1.0.1.tar.gz2006-01-18 23:51 7.7M 
    [   ]xorg-server-1.0.2.tar.bz22006-03-20 14:01 5.7M 
    [   ]xorg-server-1.0.2.tar.gz2006-03-20 14:02 7.6M 
    [   ]xorg-server-1.0.99.2.tar.bz22006-04-02 00:47 6.1M 
    [   ]xorg-server-1.0.99.2.tar.gz2006-04-02 00:48 8.3M 
    [   ]xorg-server-1.0.99.901.tar.bz22006-04-07 22:51 6.0M 
    [   ]xorg-server-1.0.99.901.tar.gz2006-04-07 22:51 8.2M 
    [   ]xorg-server-1.0.99.902.tar.bz22006-04-28 23:17 6.0M 
    [   ]xorg-server-1.0.99.902.tar.gz2006-04-28 23:16 8.2M 
    [   ]xorg-server-1.0.99.903.tar.bz22006-05-12 20:54 6.0M 
    [   ]xorg-server-1.0.99.903.tar.gz2006-05-12 20:52 8.3M 
    [   ]xorg-server-1.1.0.tar.bz22006-05-22 23:31 6.0M 
    [   ]xorg-server-1.1.0.tar.gz2006-05-22 23:29 8.3M 
    [   ]xorg-server-1.1.1.tar.bz22006-07-08 00:57 6.0M 
    [   ]xorg-server-1.1.1.tar.gz2006-07-08 00:59 8.0M 
    [   ]xorg-server-1.1.99.901.tar.bz22006-10-13 23:06 6.0M 
    [   ]xorg-server-1.1.99.901.tar.gz2006-10-13 23:08 8.1M 
    [   ]xorg-server-1.1.99.902.tar.bz22006-11-13 22:04 5.8M 
    [   ]xorg-server-1.1.99.902.tar.gz2006-11-13 22:06 7.8M 
    [   ]xorg-server-1.1.99.903.tar.bz22006-12-02 00:14 5.7M 
    [   ]xorg-server-1.1.99.903.tar.gz2006-12-02 00:17 7.7M 
    [   ]xorg-server-1.2.0.tar.bz22007-01-23 06:15 5.7M 
    [   ]xorg-server-1.2.0.tar.gz2007-01-23 06:17 7.7M 
    [   ]xorg-server-1.2.99.0.tar.bz22006-11-02 03:15 5.9M 
    [   ]xorg-server-1.2.99.0.tar.gz2006-11-02 03:17 7.9M 
    [   ]xorg-server-1.2.99.901.tar.bz22007-03-05 05:11 5.7M 
    [   ]xorg-server-1.2.99.901.tar.gz2007-03-05 05:14 7.6M 
    [   ]xorg-server-1.2.99.902.tar.bz22007-03-14 19:38 5.7M 
    [   ]xorg-server-1.2.99.902.tar.gz2007-03-14 19:43 7.6M 
    [   ]xorg-server-1.2.99.903.tar.bz22007-03-27 05:01 5.7M 
    [   ]xorg-server-1.2.99.903.tar.gz2007-03-27 05:05 7.6M 
    [   ]xorg-server-1.2.99.904.tar.bz22007-04-06 06:31 4.2M 
    [   ]xorg-server-1.2.99.904.tar.gz2007-04-06 06:28 7.6M 
    [   ]xorg-server-1.2.99.905.tar.bz22007-04-06 07:01 5.7M 
    [   ]xorg-server-1.2.99.905.tar.gz2007-04-06 06:57 7.6M 
    [   ]xorg-server-1.3.0.0.tar.bz22007-04-20 02:45 5.7M 
    [   ]xorg-server-1.3.0.0.tar.gz2007-04-20 02:42 7.6M 
    [   ]xorg-server-1.3.99.0.tar.bz22007-08-01 05:38 6.0M 
    [   ]xorg-server-1.3.99.0.tar.gz2007-08-01 05:36 8.0M 
    [   ]xorg-server-1.3.99.2.tar.bz22007-09-01 03:12 5.9M 
    [   ]xorg-server-1.3.99.2.tar.gz2007-09-01 03:10 7.8M 
    [   ]xorg-server-1.4.0.90.tar.bz22007-12-12 20:44 6.0M 
    [   ]xorg-server-1.4.0.90.tar.gz2007-12-12 20:43 8.0M 
    [   ]xorg-server-1.4.1.tar.bz22008-06-10 15:57 6.0M 
    [   ]xorg-server-1.4.1.tar.gz2008-06-10 15:56 8.1M 
    [   ]xorg-server-1.4.2.tar.bz22008-06-11 15:08 5.9M 
    [   ]xorg-server-1.4.2.tar.gz2008-06-11 15:08 7.9M 
    [   ]xorg-server-1.4.99.901.tar.bz22008-03-06 05:25 5.3M 
    [   ]xorg-server-1.4.99.901.tar.gz2008-03-06 05:23 7.1M 
    [   ]xorg-server-1.4.99.902.tar.bz22008-05-22 19:16 5.3M 
    [   ]xorg-server-1.4.99.902.tar.gz2008-05-22 19:16 7.1M 
    [   ]xorg-server-1.4.99.904.tar.bz22008-06-30 15:42 5.4M 
    [   ]xorg-server-1.4.99.904.tar.gz2008-06-30 15:42 7.3M 
    [   ]xorg-server-1.4.99.905.tar.bz22008-06-30 20:31 5.4M 
    [   ]xorg-server-1.4.99.905.tar.gz2008-06-30 20:31 7.3M 
    [   ]xorg-server-1.4.99.906.tar.bz22008-07-23 18:55 5.4M 
    [   ]xorg-server-1.4.99.906.tar.gz2008-07-23 18:55 7.3M 
    [   ]xorg-server-1.4.tar.bz22007-09-06 09:23 5.9M 
    [   ]xorg-server-1.4.tar.gz2007-09-06 09:22 7.8M 
    [   ]xorg-server-1.5.0.tar.bz22008-09-03 23:16 5.4M 
    [   ]xorg-server-1.5.0.tar.gz2008-09-03 23:16 7.3M 
    [   ]xorg-server-1.5.1.tar.bz22008-09-23 19:15 5.4M 
    [   ]xorg-server-1.5.1.tar.gz2008-09-23 19:15 7.3M 
    [   ]xorg-server-1.5.2.tar.bz22008-10-10 19:27 5.4M 
    [   ]xorg-server-1.5.2.tar.gz2008-10-10 19:27 7.3M 
    [   ]xorg-server-1.5.3.tar.bz22008-11-05 20:49 5.4M 
    [   ]xorg-server-1.5.3.tar.gz2008-11-05 20:49 7.3M 
    [   ]xorg-server-1.5.99.1.tar.bz22008-11-26 07:29 4.4M 
    [   ]xorg-server-1.5.99.1.tar.gz2008-11-26 07:26 5.9M 
    [   ]xorg-server-1.5.99.2.tar.bz22008-12-03 08:16 4.4M 
    [   ]xorg-server-1.5.99.2.tar.gz2008-12-03 08:09 5.9M 
    [   ]xorg-server-1.5.99.3.tar.bz22008-12-10 06:28 4.4M 
    [   ]xorg-server-1.5.99.3.tar.gz2008-12-10 06:25 5.9M 
    [   ]xorg-server-1.5.99.901.tar.bz22009-01-12 21:12 4.4M 
    [   ]xorg-server-1.5.99.901.tar.gz2009-01-12 21:12 6.0M 
    [   ]xorg-server-1.5.99.902.tar.bz22009-01-31 05:27 4.4M 
    [   ]xorg-server-1.5.99.902.tar.gz2009-01-31 05:24 6.0M 
    [   ]xorg-server-1.5.99.903.tar.bz22009-02-18 06:35 4.4M 
    [   ]xorg-server-1.5.99.903.tar.gz2009-02-18 06:32 6.0M 
    [   ]xorg-server-1.6.0.tar.bz22009-02-25 20:25 4.4M 
    [   ]xorg-server-1.6.0.tar.gz2009-02-25 20:19 6.0M 
    [   ]xorg-server-1.6.1.901.tar.bz22009-05-09 05:46 4.4M 
    [   ]xorg-server-1.6.1.901.tar.gz2009-05-09 05:42 5.8M 
    [   ]xorg-server-1.6.1.902.tar.bz22009-06-29 23:05 4.4M 
    [   ]xorg-server-1.6.1.902.tar.gz2009-06-29 23:02 5.9M 
    [   ]xorg-server-1.6.1.tar.bz22009-04-14 20:09 4.4M 
    [   ]xorg-server-1.6.1.tar.gz2009-04-14 20:09 5.8M 
    [   ]xorg-server-1.6.2.901.tar.bz22009-07-26 21:42 4.4M 
    [   ]xorg-server-1.6.2.901.tar.gz2009-07-26 21:41 5.9M 
    [   ]xorg-server-1.6.2.tar.bz22009-07-07 23:40 4.4M 
    [   ]xorg-server-1.6.2.tar.gz2009-07-07 23:39 5.9M 
    [   ]xorg-server-1.6.3.901.tar.bz22009-08-26 05:55 4.5M 
    [   ]xorg-server-1.6.3.901.tar.gz2009-08-26 05:54 5.9M 
    [   ]xorg-server-1.6.3.tar.bz22009-08-01 06:45 4.4M 
    [   ]xorg-server-1.6.3.tar.gz2009-08-01 06:42 5.9M 
    [   ]xorg-server-1.6.4.901.tar.bz22009-10-03 07:40 4.5M 
    [   ]xorg-server-1.6.4.901.tar.gz2009-10-03 07:44 5.9M 
    [   ]xorg-server-1.6.4.tar.bz22009-09-28 02:47 4.5M 
    [   ]xorg-server-1.6.4.tar.gz2009-09-28 02:45 5.9M 
    [   ]xorg-server-1.6.5.tar.bz22009-10-12 05:27 4.5M 
    [   ]xorg-server-1.6.5.tar.gz2009-10-12 05:26 5.9M 
    [   ]xorg-server-1.6.99.900.tar.bz22009-09-04 07:02 4.7M 
    [   ]xorg-server-1.6.99.900.tar.gz2009-09-04 07:02 6.2M 
    [   ]xorg-server-1.6.99.901.tar.bz22009-09-14 10:26 4.7M 
    [   ]xorg-server-1.6.99.901.tar.gz2009-09-14 10:23 6.2M 
    [   ]xorg-server-1.6.99.902.tar.bz22009-09-22 04:53 4.7M 
    [   ]xorg-server-1.6.99.902.tar.gz2009-09-22 04:50 6.2M 
    [   ]xorg-server-1.6.99.903.tar.bz22009-09-28 11:25 4.7M 
    [   ]xorg-server-1.6.99.903.tar.gz2009-09-28 11:22 6.2M 
    [   ]xorg-server-1.7.0.901.tar.bz22009-10-12 04:40 4.7M 
    [   ]xorg-server-1.7.0.901.tar.gz2009-10-12 04:39 6.3M 
    [   ]xorg-server-1.7.0.902.tar.bz22009-10-19 02:10 4.7M 
    [   ]xorg-server-1.7.0.902.tar.gz2009-10-19 02:10 6.3M 
    [   ]xorg-server-1.7.0.tar.bz22009-10-02 06:17 4.7M 
    [   ]xorg-server-1.7.0.tar.gz2009-10-02 06:16 6.3M 
    [   ]xorg-server-1.7.1.901.tar.bz22009-11-06 05:11 4.7M 
    [   ]xorg-server-1.7.1.901.tar.gz2009-11-06 05:11 6.3M 
    [   ]xorg-server-1.7.1.902.tar.bz22009-11-20 05:52 4.7M 
    [   ]xorg-server-1.7.1.902.tar.gz2009-11-20 05:51 6.3M 
    [   ]xorg-server-1.7.1.tar.bz22009-10-23 05:40 4.7M 
    [   ]xorg-server-1.7.1.tar.gz2009-10-23 05:39 6.3M 
    [   ]xorg-server-1.7.2.tar.bz22009-11-27 05:46 4.7M 
    [   ]xorg-server-1.7.2.tar.gz2009-11-27 05:45 6.3M 
    [   ]xorg-server-1.7.3.901.tar.bz22009-12-11 06:40 4.7M 
    [   ]xorg-server-1.7.3.901.tar.gz2009-12-11 06:40 6.3M 
    [   ]xorg-server-1.7.3.902.tar.bz22009-12-26 01:08 4.7M 
    [   ]xorg-server-1.7.3.902.tar.gz2009-12-26 01:05 6.3M 
    [   ]xorg-server-1.7.3.tar.bz22009-12-03 03:38 4.7M 
    [   ]xorg-server-1.7.3.tar.gz2009-12-03 03:37 6.3M 
    [   ]xorg-server-1.7.4.901.tar.bz22010-01-23 00:16 4.7M 
    [   ]xorg-server-1.7.4.901.tar.gz2010-01-23 00:16 6.3M 
    [   ]xorg-server-1.7.4.902.tar.bz22010-02-05 08:37 4.7M 
    [   ]xorg-server-1.7.4.902.tar.gz2010-02-05 08:32 6.3M 
    [   ]xorg-server-1.7.4.tar.bz22010-01-08 01:09 4.7M 
    [   ]xorg-server-1.7.4.tar.gz2010-01-08 01:09 6.3M 
    [   ]xorg-server-1.7.5.901.tar.bz22010-03-05 00:26 4.7M 
    [   ]xorg-server-1.7.5.901.tar.gz2010-03-05 00:23 6.3M 
    [   ]xorg-server-1.7.5.902.tar.bz22010-03-12 07:07 4.7M 
    [   ]xorg-server-1.7.5.902.tar.gz2010-03-12 07:02 6.3M 
    [   ]xorg-server-1.7.5.tar.bz22010-02-16 03:54 4.7M 
    [   ]xorg-server-1.7.5.tar.gz2010-02-16 03:50 6.3M 
    [   ]xorg-server-1.7.6.901.tar.bz22010-04-12 02:12 4.7M 
    [   ]xorg-server-1.7.6.901.tar.gz2010-04-12 02:12 6.3M 
    [   ]xorg-server-1.7.6.902.tar.bz22010-04-21 00:25 4.7M 
    [   ]xorg-server-1.7.6.902.tar.gz2010-04-21 00:25 6.3M 
    [   ]xorg-server-1.7.6.tar.bz22010-03-17 01:56 4.7M 
    [   ]xorg-server-1.7.6.tar.gz2010-03-17 01:56 6.3M 
    [   ]xorg-server-1.7.7.tar.bz22010-05-04 07:51 4.7M 
    [   ]xorg-server-1.7.7.tar.gz2010-05-04 07:48 6.3M 
    [   ]xorg-server-1.7.99.1.tar.bz22009-10-21 16:15 4.8M 
    [   ]xorg-server-1.7.99.1.tar.gz2009-10-21 16:15 6.5M 
    [   ]xorg-server-1.7.99.2.tar.bz22009-12-20 03:50 4.8M 
    [   ]xorg-server-1.7.99.2.tar.gz2009-12-20 03:48 6.5M 
    [   ]xorg-server-1.7.99.901.tar.bz22010-02-12 22:00 4.9M 
    [   ]xorg-server-1.7.99.901.tar.gz2010-02-12 21:59 6.5M 
    [   ]xorg-server-1.7.99.902.tar.bz22010-03-22 05:42 4.9M 
    [   ]xorg-server-1.7.99.902.tar.gz2010-03-22 05:41 6.5M 
    [   ]xorg-server-1.8.0.901.tar.bz22010-04-27 05:08 4.9M 
    [   ]xorg-server-1.8.0.901.tar.gz2010-04-27 05:05 6.6M 
    [   ]xorg-server-1.8.0.902.tar.bz22010-05-04 00:39 4.9M 
    [   ]xorg-server-1.8.0.902.tar.gz2010-05-04 00:36 6.6M 
    [   ]xorg-server-1.8.0.tar.bz22010-04-02 07:30 4.9M 
    [   ]xorg-server-1.8.0.tar.gz2010-04-02 07:28 6.5M 
    [   ]xorg-server-1.8.1.901.tar.bz22010-06-02 00:07 5.0M 
    [   ]xorg-server-1.8.1.901.tar.gz2010-06-02 00:07 6.6M 
    [   ]xorg-server-1.8.1.902.tar.bz22010-06-21 02:07 5.0M 
    [   ]xorg-server-1.8.1.902.tar.gz2010-06-21 02:07 6.6M 
    [   ]xorg-server-1.8.1.tar.bz22010-05-11 21:52 5.0M 
    [   ]xorg-server-1.8.1.tar.gz2010-05-11 21:52 6.6M 
    [   ]xorg-server-1.8.2.tar.bz22010-07-01 05:29 5.0M 
    [   ]xorg-server-1.8.2.tar.gz2010-07-01 05:29 6.6M 
    [   ]xorg-server-1.8.99.901.tar.bz22010-06-15 21:19 5.1M 
    [   ]xorg-server-1.8.99.901.tar.gz2010-06-15 21:18 6.8M 
    [   ]xorg-server-1.8.99.902.tar.bz22010-06-22 19:05 5.1M 
    [   ]xorg-server-1.8.99.902.tar.gz2010-06-22 19:04 6.8M 
    [   ]xorg-server-1.8.99.903.tar.bz22010-06-22 19:33 5.1M 
    [   ]xorg-server-1.8.99.903.tar.gz2010-06-22 19:32 6.8M 
    [   ]xorg-server-1.8.99.904.tar.bz22010-07-01 13:46 5.1M 
    [   ]xorg-server-1.8.99.904.tar.gz2010-07-01 13:39 6.8M 
    [   ]xorg-server-1.8.99.905.tar.bz22010-07-14 19:58 5.1M 
    [   ]xorg-server-1.8.99.905.tar.gz2010-07-14 19:58 6.8M 
    [   ]xorg-server-1.8.99.906.tar.bz22010-08-13 06:22 5.1M 
    [   ]xorg-server-1.8.99.906.tar.gz2010-08-13 06:20 6.8M 
    [   ]xorg-server-1.9.0.901.tar.bz22010-10-01 21:22 5.0M 
    [   ]xorg-server-1.9.0.901.tar.gz2010-10-01 21:21 6.7M 
    [   ]xorg-server-1.9.0.902.tar.bz22010-10-15 18:34 5.0M 
    [   ]xorg-server-1.9.0.902.tar.gz2010-10-15 18:33 6.7M 
    [   ]xorg-server-1.9.0.tar.bz22010-08-21 00:46 5.1M 
    [   ]xorg-server-1.9.0.tar.gz2010-08-21 00:45 6.8M 
    [   ]xorg-server-1.9.1.tar.bz22010-10-24 03:22 5.0M 
    [   ]xorg-server-1.9.1.tar.gz2010-10-24 03:22 6.7M 
    [   ]xorg-server-1.9.2.901.tar.bz22010-11-14 00:12 5.0M 
    [   ]xorg-server-1.9.2.901.tar.gz2010-11-14 00:12 6.8M 
    [   ]xorg-server-1.9.2.902.tar.bz22010-12-04 19:25 5.0M 
    [   ]xorg-server-1.9.2.902.tar.gz2010-12-04 19:25 6.8M 
    [   ]xorg-server-1.9.2.tar.bz22010-10-31 23:15 5.0M 
    [   ]xorg-server-1.9.2.tar.gz2010-10-31 23:15 6.8M 
    [   ]xorg-server-1.9.3.901.tar.bz22011-01-08 21:37 5.0M 
    [   ]xorg-server-1.9.3.901.tar.gz2011-01-08 21:37 6.8M 
    [   ]xorg-server-1.9.3.902.tar.bz22011-01-31 01:16 5.0M 
    [   ]xorg-server-1.9.3.902.tar.gz2011-01-31 01:16 6.7M 
    [   ]xorg-server-1.9.3.tar.bz22010-12-13 20:05 5.0M 
    [   ]xorg-server-1.9.3.tar.gz2010-12-13 20:05 6.8M 
    [   ]xorg-server-1.9.4.901.tar.bz22011-03-04 23:21 4.9M 
    [   ]xorg-server-1.9.4.901.tar.gz2011-03-04 23:21 6.7M 
    [   ]xorg-server-1.9.4.tar.bz22011-02-04 20:03 5.0M 
    [   ]xorg-server-1.9.4.tar.gz2011-02-04 20:02 6.7M 
    [   ]xorg-server-1.9.5.tar.bz22011-03-17 21:49 4.9M 
    [   ]xorg-server-1.9.5.tar.gz2011-03-17 21:49 6.7M 
    [   ]xorg-server-1.9.99.901.tar.bz22010-12-07 04:57 5.1M 
    [   ]xorg-server-1.9.99.901.tar.gz2010-12-07 04:56 6.8M 
    [   ]xorg-server-1.9.99.902.tar.bz22011-02-18 22:50 5.1M 
    [   ]xorg-server-1.9.99.902.tar.gz2011-02-18 22:49 6.8M 
    [   ]xorg-server-1.9.99.903.tar.bz22011-02-25 06:46 5.0M 
    [   ]xorg-server-1.9.99.903.tar.gz2011-02-25 06:44 6.8M 
    [   ]xorg-server-1.10.0.901.tar.bz22011-03-29 07:36 5.1M 
    [   ]xorg-server-1.10.0.901.tar.gz2011-03-29 07:36 6.9M 
    [   ]xorg-server-1.10.0.902.tar.bz22011-04-08 23:49 5.1M 
    [   ]xorg-server-1.10.0.902.tar.gz2011-04-08 23:48 6.9M 
    [   ]xorg-server-1.10.0.tar.bz22011-02-26 05:49 5.1M 
    [   ]xorg-server-1.10.0.tar.gz2011-02-26 05:48 6.9M 
    [   ]xorg-server-1.10.1.901.tar.bz22011-05-06 22:59 5.1M 
    [   ]xorg-server-1.10.1.901.tar.gz2011-05-06 22:59 6.9M 
    [   ]xorg-server-1.10.1.902.tar.bz22011-05-21 06:13 5.1M 
    [   ]xorg-server-1.10.1.902.tar.gz2011-05-21 06:13 6.9M 
    [   ]xorg-server-1.10.1.tar.bz22011-04-16 01:13 5.1M 
    [   ]xorg-server-1.10.1.tar.gz2011-04-16 01:13 6.9M 
    [   ]xorg-server-1.10.2.901.tar.bz22011-06-17 17:30 5.1M 
    [   ]xorg-server-1.10.2.901.tar.gz2011-06-17 17:30 6.9M 
    [   ]xorg-server-1.10.2.902.tar.bz22011-07-02 03:55 5.1M 
    [   ]xorg-server-1.10.2.902.tar.gz2011-07-02 03:55 6.9M 
    [   ]xorg-server-1.10.2.tar.bz22011-05-29 00:20 5.1M 
    [   ]xorg-server-1.10.2.tar.gz2011-05-29 00:20 6.9M 
    [   ]xorg-server-1.10.3.901.tar.bz22011-07-29 18:39 5.1M 
    [   ]xorg-server-1.10.3.901.tar.gz2011-07-29 18:39 7.0M 
    [   ]xorg-server-1.10.3.902.tar.bz22011-08-12 22:30 5.1M 
    [   ]xorg-server-1.10.3.902.tar.gz2011-08-12 22:30 7.0M 
    [   ]xorg-server-1.10.3.tar.bz22011-07-08 20:04 5.1M 
    [   ]xorg-server-1.10.3.tar.gz2011-07-08 20:04 6.9M 
    [   ]xorg-server-1.10.4.tar.bz22011-08-19 07:13 5.1M 
    [   ]xorg-server-1.10.4.tar.gz2011-08-19 07:12 7.0M 
    [   ]xorg-server-1.10.6.tar.bz22012-02-11 01:11 5.2M 
    [   ]xorg-server-1.10.6.tar.gz2012-02-11 01:11 7.0M 
    [   ]xorg-server-1.10.99.901.tar.bz22011-06-01 18:34 4.7M 
    [   ]xorg-server-1.10.99.901.tar.gz2011-06-01 18:33 6.3M 
    [   ]xorg-server-1.10.99.902.tar.bz22011-08-04 04:10 4.8M 
    [   ]xorg-server-1.10.99.902.tar.gz2011-08-04 04:09 6.4M 
    [   ]xorg-server-1.11.0.tar.bz22011-08-27 01:02 4.8M 
    [   ]xorg-server-1.11.0.tar.gz2011-08-27 01:01 6.4M 
    [   ]xorg-server-1.11.1.901.tar.bz22011-10-14 23:41 4.7M 
    [   ]xorg-server-1.11.1.901.tar.gz2011-10-14 23:40 6.3M 
    [   ]xorg-server-1.11.1.902.tar.bz22011-10-29 01:44 4.7M 
    [   ]xorg-server-1.11.1.902.tar.gz2011-10-29 01:44 6.3M 
    [   ]xorg-server-1.11.1.tar.bz22011-09-24 07:19 4.7M 
    [   ]xorg-server-1.11.1.tar.gz2011-09-24 07:19 6.3M 
    [   ]xorg-server-1.11.2.901.tar.bz22011-11-28 08:17 4.7M 
    [   ]xorg-server-1.11.2.901.tar.gz2011-11-28 08:16 6.3M 
    [   ]xorg-server-1.11.2.902.tar.bz22011-12-09 21:10 4.7M 
    [   ]xorg-server-1.11.2.902.tar.gz2011-12-09 21:10 6.3M 
    [   ]xorg-server-1.11.2.tar.bz22011-11-04 17:38 4.7M 
    [   ]xorg-server-1.11.2.tar.gz2011-11-04 17:38 6.3M 
    [   ]xorg-server-1.11.3.901.tar.bz22012-01-07 07:34 4.7M 
    [   ]xorg-server-1.11.3.901.tar.gz2012-01-07 07:34 6.3M 
    [   ]xorg-server-1.11.3.902.tar.bz22012-01-21 08:29 4.7M 
    [   ]xorg-server-1.11.3.902.tar.gz2012-01-21 08:29 6.3M 
    [   ]xorg-server-1.11.3.tar.bz22011-12-17 02:03 4.7M 
    [   ]xorg-server-1.11.3.tar.gz2011-12-17 02:03 6.3M 
    [   ]xorg-server-1.11.4.tar.bz22012-01-28 05:20 4.7M 
    [   ]xorg-server-1.11.4.tar.gz2012-01-28 05:20 6.3M 
    [   ]xorg-server-1.11.99.1.tar.bz22011-11-20 23:05 4.8M 
    [   ]xorg-server-1.11.99.1.tar.gz2011-11-20 23:04 6.5M 
    [   ]xorg-server-1.11.99.2.tar.bz22011-12-18 01:30 4.8M 
    [   ]xorg-server-1.11.99.2.tar.gz2011-12-18 01:29 6.5M 
    [   ]xorg-server-1.11.99.901.tar.bz22011-12-27 22:19 4.9M 
    [   ]xorg-server-1.11.99.901.tar.gz2011-12-27 22:18 6.6M 
    [   ]xorg-server-1.11.99.902.tar.bz22012-01-28 06:48 4.9M 
    [   ]xorg-server-1.11.99.902.tar.gz2012-01-28 06:47 6.6M 
    [   ]xorg-server-1.11.99.903.tar.bz22012-02-11 03:18 5.3M 
    [   ]xorg-server-1.11.99.903.tar.gz2012-02-11 03:16 7.2M 
    [   ]xorg-server-1.12.0.901.tar.bz22012-03-31 03:15 5.1M 
    [   ]xorg-server-1.12.0.901.tar.gz2012-03-31 03:15 7.0M 
    [   ]xorg-server-1.12.0.902.tar.bz22012-04-10 02:48 5.1M 
    [   ]xorg-server-1.12.0.902.tar.gz2012-04-10 02:48 7.0M 
    [   ]xorg-server-1.12.0.tar.bz22012-03-05 05:12 5.3M 
    [   ]xorg-server-1.12.0.tar.gz2012-03-05 05:11 7.2M 
    [   ]xorg-server-1.12.1.901.tar.bz22012-05-07 07:10 5.2M 
    [   ]xorg-server-1.12.1.901.tar.gz2012-05-07 07:10 7.2M 
    [   ]xorg-server-1.12.1.902.tar.bz22012-05-20 05:17 5.2M 
    [   ]xorg-server-1.12.1.902.tar.gz2012-05-20 05:17 7.2M 
    [   ]xorg-server-1.12.1.tar.bz22012-04-13 22:52 5.1M 
    [   ]xorg-server-1.12.1.tar.gz2012-04-13 22:52 7.0M 
    [   ]xorg-server-1.12.2.901.tar.bz22012-06-15 03:15 5.2M 
    [   ]xorg-server-1.12.2.901.tar.gz2012-06-15 03:14 7.2M 
    [   ]xorg-server-1.12.2.902.tar.bz22012-07-02 00:34 5.2M 
    [   ]xorg-server-1.12.2.902.tar.gz2012-07-02 00:34 7.2M 
    [   ]xorg-server-1.12.2.tar.bz22012-05-29 20:11 5.2M 
    [   ]xorg-server-1.12.2.tar.gz2012-05-29 20:11 7.2M 
    [   ]xorg-server-1.12.3.901.tar.bz22012-08-03 17:26 5.2M 
    [   ]xorg-server-1.12.3.901.tar.gz2012-08-03 17:26 7.2M 
    [   ]xorg-server-1.12.3.902.tar.bz22012-08-19 16:11 5.2M 
    [   ]xorg-server-1.12.3.902.tar.gz2012-08-19 16:11 7.2M 
    [   ]xorg-server-1.12.3.tar.bz22012-07-09 01:21 5.2M 
    [   ]xorg-server-1.12.3.tar.gz2012-07-09 01:21 7.2M 
    [   ]xorg-server-1.12.4.tar.bz22012-08-27 05:15 5.2M 
    [   ]xorg-server-1.12.4.tar.gz2012-08-27 05:15 7.2M 
    [   ]xorg-server-1.12.99.901.tar.bz22012-07-10 08:35 5.2M 
    [   ]xorg-server-1.12.99.901.tar.gz2012-07-10 08:34 7.2M 
    [   ]xorg-server-1.12.99.902.tar.bz22012-07-17 22:50 5.2M 
    [   ]xorg-server-1.12.99.902.tar.gz2012-07-17 22:49 7.2M 
    [   ]xorg-server-1.12.99.903.tar.bz22012-07-26 05:50 5.2M 
    [   ]xorg-server-1.12.99.903.tar.gz2012-07-26 05:49 7.2M 
    [   ]xorg-server-1.12.99.904.tar.bz22012-08-08 00:57 5.2M 
    [   ]xorg-server-1.12.99.904.tar.gz2012-08-08 00:56 7.2M 
    [   ]xorg-server-1.12.99.905.tar.bz22012-08-21 21:53 5.2M 
    [   ]xorg-server-1.12.99.905.tar.gz2012-08-21 21:52 7.2M 
    [   ]xorg-server-1.13.0.901.tar.bz22012-11-23 05:10 5.2M 
    [   ]xorg-server-1.13.0.901.tar.gz2012-11-23 05:09 7.2M 
    [   ]xorg-server-1.13.0.902.tar.bz22012-12-07 06:09 5.2M 
    [   ]xorg-server-1.13.0.902.tar.gz2012-12-07 06:08 7.2M 
    [   ]xorg-server-1.13.0.tar.bz22012-09-05 21:48 5.2M 
    [   ]xorg-server-1.13.0.tar.gz2012-09-05 21:47 7.2M 
    [   ]xorg-server-1.13.1.901.tar.bz22013-01-04 06:51 5.2M 
    [   ]xorg-server-1.13.1.901.tar.gz2013-01-04 06:50 7.2M 
    [   ]xorg-server-1.13.1.tar.bz22012-12-14 21:47 5.2M 
    [   ]xorg-server-1.13.1.tar.bz2.old2012-12-14 04:43 5.2M 
    [   ]xorg-server-1.13.1.tar.gz2012-12-14 21:49 7.2M 
    [   ]xorg-server-1.13.1.tar.gz.old2012-12-14 04:42 7.2M 
    [   ]xorg-server-1.13.2.901.tar.bz22013-02-16 07:14 5.2M 
    [   ]xorg-server-1.13.2.901.tar.gz2013-02-16 07:14 7.2M 
    [   ]xorg-server-1.13.2.902.tar.bz22013-03-01 07:31 5.2M 
    [   ]xorg-server-1.13.2.902.tar.gz2013-03-01 07:31 7.2M 
    [   ]xorg-server-1.13.2.tar.bz22013-01-25 06:01 5.2M 
    [   ]xorg-server-1.13.2.tar.gz2013-01-25 06:00 7.2M 
    [   ]xorg-server-1.13.3.tar.bz22013-03-08 06:19 5.2M 
    [   ]xorg-server-1.13.3.tar.gz2013-03-08 06:19 7.2M 
    [   ]xorg-server-1.13.4.tar.bz22013-04-17 06:00 5.3M 
    [   ]xorg-server-1.13.4.tar.gz2013-04-17 05:59 7.2M 
    [   ]xorg-server-1.13.99.901.tar.bz22012-12-19 20:50 5.2M 
    [   ]xorg-server-1.13.99.901.tar.gz2012-12-19 20:50 7.2M 
    [   ]xorg-server-1.13.99.902.tar.bz22013-02-14 05:44 5.3M 
    [   ]xorg-server-1.13.99.902.tar.gz2013-02-14 05:43 7.3M 
    [   ]xorg-server-1.14.0.tar.bz22013-03-06 06:35 5.3M 
    [   ]xorg-server-1.14.0.tar.gz2013-03-06 06:34 7.3M 
    [   ]xorg-server-1.14.1.901.tar.bz22013-05-31 06:09 5.2M 
    [   ]xorg-server-1.14.1.901.tar.gz2013-05-31 06:09 7.2M 
    [   ]xorg-server-1.14.1.902.tar.bz22013-06-13 22:28 5.2M 
    [   ]xorg-server-1.14.1.902.tar.gz2013-06-13 22:28 7.2M 
    [   ]xorg-server-1.14.1.tar.bz22013-04-17 07:37 5.3M 
    [   ]xorg-server-1.14.1.tar.gz2013-04-17 07:36 7.3M 
    [   ]xorg-server-1.14.2-rc1.tar.bz22013-05-31 04:38 5.2M 
    [   ]xorg-server-1.14.2-rc1.tar.gz2013-05-31 04:38 7.2M 
    [   ]xorg-server-1.14.2.901.tar.bz22013-07-26 05:47 5.2M 
    [   ]xorg-server-1.14.2.901.tar.bz2.old2013-07-26 04:27 5.2M 
    [   ]xorg-server-1.14.2.901.tar.gz2013-07-26 05:47 7.2M 
    [   ]xorg-server-1.14.2.901.tar.gz.old2013-07-26 04:27 7.2M 
    [   ]xorg-server-1.14.2.902.tar.bz22013-08-22 23:57 5.2M 
    [   ]xorg-server-1.14.2.902.tar.gz2013-08-22 23:57 7.3M 
    [   ]xorg-server-1.14.2.tar.bz22013-06-25 15:52 5.2M 
    [   ]xorg-server-1.14.2.tar.gz2013-06-25 15:52 7.2M 
    [   ]xorg-server-1.14.3-rc1.tar.bz22013-07-26 04:21 5.2M 
    [   ]xorg-server-1.14.3-rc1.tar.gz2013-07-26 04:21 7.2M 
    [   ]xorg-server-1.14.3.901.tar.bz22013-10-26 19:53 5.3M 
    [   ]xorg-server-1.14.3.901.tar.gz2013-10-26 19:53 7.3M 
    [   ]xorg-server-1.14.3.tar.bz22013-09-13 03:19 5.2M 
    [   ]xorg-server-1.14.3.tar.gz2013-09-13 03:19 7.3M 
    [   ]xorg-server-1.14.4.901.tar.bz22013-11-22 05:13 5.2M 
    [   ]xorg-server-1.14.4.901.tar.gz2013-11-22 05:13 7.3M 
    [   ]xorg-server-1.14.4.tar.bz22013-11-01 05:31 5.3M 
    [   ]xorg-server-1.14.4.tar.gz2013-11-01 05:31 7.3M 
    [   ]xorg-server-1.14.5.901.tar.bz22014-03-22 05:21 5.3M 
    [   ]xorg-server-1.14.5.901.tar.gz2014-03-22 05:21 7.3M 
    [   ]xorg-server-1.14.5.tar.bz22013-12-13 03:53 5.2M 
    [   ]xorg-server-1.14.5.tar.gz2013-12-13 03:53 7.3M 
    [   ]xorg-server-1.14.6.tar.bz22014-04-14 02:49 5.3M 
    [   ]xorg-server-1.14.6.tar.gz2014-04-14 02:49 7.3M 
    [   ]xorg-server-1.14.7.tar.bz22014-06-06 04:20 5.3M 
    [   ]xorg-server-1.14.7.tar.gz2014-06-06 04:19 7.3M 
    [   ]xorg-server-1.14.99.1.tar.bz22013-04-24 17:16 5.3M 
    [   ]xorg-server-1.14.99.1.tar.gz2013-04-24 17:15 7.3M 
    [   ]xorg-server-1.14.99.2.tar.bz22013-10-05 00:01 5.3M 
    [   ]xorg-server-1.14.99.2.tar.gz2013-10-05 00:00 7.4M 
    [   ]xorg-server-1.14.99.3.tar.bz22013-10-19 00:34 5.3M 
    [   ]xorg-server-1.14.99.3.tar.gz2013-10-19 00:33 7.4M 
    [   ]xorg-server-1.14.99.901.tar.bz22013-11-01 08:51 5.3M 
    [   ]xorg-server-1.14.99.901.tar.gz2013-11-01 08:50 7.3M 
    [   ]xorg-server-1.14.99.902.tar.bz22013-11-14 01:32 5.3M 
    [   ]xorg-server-1.14.99.902.tar.gz2013-11-14 01:32 7.3M 
    [   ]xorg-server-1.14.99.903.tar.bz22013-11-24 06:31 5.3M 
    [   ]xorg-server-1.14.99.903.tar.gz2013-11-24 06:30 7.3M 
    [   ]xorg-server-1.14.99.904.tar.bz22013-12-11 15:57 5.3M 
    [   ]xorg-server-1.14.99.904.tar.gz2013-12-11 15:56 7.3M 
    [   ]xorg-server-1.14.99.905.tar.bz22013-12-19 22:35 5.3M 
    [   ]xorg-server-1.14.99.905.tar.gz2013-12-19 22:35 7.3M 
    [   ]xorg-server-1.15.0.901.tar.bz22014-03-22 06:04 5.2M 
    [   ]xorg-server-1.15.0.901.tar.gz2014-03-22 06:04 7.3M 
    [   ]xorg-server-1.15.0.tar.bz22013-12-27 18:01 5.3M 
    [   ]xorg-server-1.15.0.tar.gz2013-12-27 18:00 7.3M 
    [   ]xorg-server-1.15.1.tar.bz22014-04-14 03:16 5.2M 
    [   ]xorg-server-1.15.1.tar.gz2014-04-14 03:16 7.3M 
    [   ]xorg-server-1.15.2.tar.bz22014-06-27 01:30 5.3M 
    [   ]xorg-server-1.15.2.tar.bz2.sig2014-06-27 01:30 72  
    [   ]xorg-server-1.15.2.tar.gz2014-06-27 01:29 7.4M 
    [   ]xorg-server-1.15.2.tar.gz.sig2014-06-27 01:30 72  
    [   ]xorg-server-1.15.99.901.tar.bz22014-02-24 21:52 5.4M 
    [   ]xorg-server-1.15.99.901.tar.gz2014-02-24 21:52 7.6M 
    [   ]xorg-server-1.15.99.902.tar.bz22014-04-08 21:32 5.5M 
    [   ]xorg-server-1.15.99.902.tar.gz2014-04-08 21:31 7.7M 
    [   ]xorg-server-1.15.99.903.tar.bz22014-06-05 05:41 5.5M 
    [   ]xorg-server-1.15.99.903.tar.gz2014-06-05 05:40 7.7M 
    [   ]xorg-server-1.15.99.904.tar.bz22014-07-07 23:35 5.6M 
    [   ]xorg-server-1.15.99.904.tar.bz2.sig2014-07-07 23:35 536  
    [   ]xorg-server-1.15.99.904.tar.gz2014-07-07 23:35 7.7M 
    [   ]xorg-server-1.15.99.904.tar.gz.sig2014-07-07 23:35 536  
    [   ]xorg-server-1.16.0.901.tar.bz22014-09-15 21:38 5.5M 
    [   ]xorg-server-1.16.0.901.tar.bz2.sig2014-09-15 21:38 543  
    [   ]xorg-server-1.16.0.901.tar.gz2014-09-15 21:37 7.7M 
    [   ]xorg-server-1.16.0.901.tar.gz.sig2014-09-15 21:38 543  
    [   ]xorg-server-1.16.0.tar.bz22014-07-17 07:09 5.6M 
    [   ]xorg-server-1.16.0.tar.bz2.sig2014-07-17 07:09 536  
    [   ]xorg-server-1.16.0.tar.gz2014-07-17 07:08 7.7M 
    [   ]xorg-server-1.16.0.tar.gz.sig2014-07-17 07:09 536  
    [   ]xorg-server-1.16.1.901.tar.bz22014-11-02 10:52 5.5M 
    [   ]xorg-server-1.16.1.901.tar.bz2.sig2014-11-02 10:52 543  
    [   ]xorg-server-1.16.1.901.tar.gz2014-11-02 10:51 7.7M 
    [   ]xorg-server-1.16.1.901.tar.gz.sig2014-11-02 10:52 543  
    [   ]xorg-server-1.16.1.tar.bz22014-09-21 09:17 5.5M 
    [   ]xorg-server-1.16.1.tar.bz2.sig2014-09-21 09:17 543  
    [   ]xorg-server-1.16.1.tar.gz2014-09-21 09:16 7.7M 
    [   ]xorg-server-1.16.1.tar.gz.sig2014-09-21 09:17 543  
    [   ]xorg-server-1.16.2.901.tar.bz22014-12-09 20:12 5.5M 
    [   ]xorg-server-1.16.2.901.tar.bz2.sig2014-12-09 20:12 543  
    [   ]xorg-server-1.16.2.901.tar.gz2014-12-09 20:11 7.7M 
    [   ]xorg-server-1.16.2.901.tar.gz.sig2014-12-09 20:12 543  
    [   ]xorg-server-1.16.2.tar.bz22014-11-10 15:53 5.5M 
    [   ]xorg-server-1.16.2.tar.bz2.sig2014-11-10 15:53 543  
    [   ]xorg-server-1.16.2.tar.gz2014-11-10 15:53 7.7M 
    [   ]xorg-server-1.16.2.tar.gz.sig2014-11-10 15:53 543  
    [   ]xorg-server-1.16.3.tar.bz22014-12-20 12:19 5.5M 
    [   ]xorg-server-1.16.3.tar.bz2.sig2014-12-20 12:19 543  
    [   ]xorg-server-1.16.3.tar.gz2014-12-20 12:18 7.7M 
    [   ]xorg-server-1.16.3.tar.gz.sig2014-12-20 12:19 543  
    [   ]xorg-server-1.16.4.tar.bz22015-02-11 00:15 5.5M 
    [   ]xorg-server-1.16.4.tar.bz2.sig2015-02-11 00:15 543  
    [   ]xorg-server-1.16.4.tar.gz2015-02-11 00:14 7.7M 
    [   ]xorg-server-1.16.4.tar.gz.sig2015-02-11 00:15 543  
    [   ]xorg-server-1.16.99.901.tar.bz22014-10-29 04:37 5.6M 
    [   ]xorg-server-1.16.99.901.tar.bz2.sig2014-10-29 04:37 536  
    [   ]xorg-server-1.16.99.901.tar.gz2014-10-29 04:37 7.8M 
    [   ]xorg-server-1.16.99.901.tar.gz.sig2014-10-29 04:37 536  
    [   ]xorg-server-1.16.99.902.tar.bz22015-01-23 19:03 5.6M 
    [   ]xorg-server-1.16.99.902.tar.bz2.sig2015-01-23 19:03 536  
    [   ]xorg-server-1.16.99.902.tar.gz2015-01-23 19:03 7.8M 
    [   ]xorg-server-1.16.99.902.tar.gz.sig2015-01-23 19:03 536  
    [   ]xorg-server-1.17.0.tar.bz22015-02-04 17:37 5.6M 
    [   ]xorg-server-1.17.0.tar.bz2.sig2015-02-04 17:37 536  
    [   ]xorg-server-1.17.0.tar.gz2015-02-04 17:37 7.8M 
    [   ]xorg-server-1.17.0.tar.gz.sig2015-02-04 17:37 536  
    [   ]xorg-server-1.17.1.tar.bz22015-02-10 22:53 5.6M 
    [   ]xorg-server-1.17.1.tar.bz2.sig2015-02-10 22:53 536  
    [   ]xorg-server-1.17.1.tar.gz2015-02-10 22:52 7.8M 
    [   ]xorg-server-1.17.1.tar.gz.sig2015-02-10 22:53 536  
    [   ]xorg-server-1.17.2.tar.bz22015-06-16 16:31 5.5M 
    [   ]xorg-server-1.17.2.tar.bz2.sig2015-06-16 16:31 72  
    [   ]xorg-server-1.17.2.tar.gz2015-06-16 16:30 7.7M 
    [   ]xorg-server-1.17.2.tar.gz.sig2015-06-16 16:31 72  
    [   ]xorg-server-1.17.3.tar.bz22015-10-26 17:09 5.5M 
    [   ]xorg-server-1.17.3.tar.bz2.sig2015-10-26 17:09 72  
    [   ]xorg-server-1.17.3.tar.gz2015-10-26 17:09 7.8M 
    [   ]xorg-server-1.17.3.tar.gz.sig2015-10-26 17:09 72  
    [   ]xorg-server-1.17.4.tar.bz22015-10-28 16:38 5.5M 
    [   ]xorg-server-1.17.4.tar.bz2.sig2015-10-28 16:38 72  
    [   ]xorg-server-1.17.4.tar.gz2015-10-28 16:38 7.8M 
    [   ]xorg-server-1.17.4.tar.gz.sig2015-10-28 16:38 72  
    [   ]xorg-server-1.17.99.901.tar.bz22015-09-02 02:34 5.6M 
    [   ]xorg-server-1.17.99.901.tar.bz2.sig2015-09-02 02:34 536  
    [   ]xorg-server-1.17.99.901.tar.gz2015-09-02 02:34 7.9M 
    [   ]xorg-server-1.17.99.901.tar.gz.sig2015-09-02 02:34 536  
    [   ]xorg-server-1.17.99.902.tar.bz22015-10-26 18:13 5.5M 
    [   ]xorg-server-1.17.99.902.tar.bz2.sig2015-10-26 18:13 72  
    [   ]xorg-server-1.17.99.902.tar.gz2015-10-26 18:13 7.8M 
    [   ]xorg-server-1.17.99.902.tar.gz.sig2015-10-26 18:13 72  
    [   ]xorg-server-1.18.0.tar.bz22015-11-09 21:11 5.5M 
    [   ]xorg-server-1.18.0.tar.bz2.sig2015-11-09 21:11 72  
    [   ]xorg-server-1.18.0.tar.gz2015-11-09 21:11 7.8M 
    [   ]xorg-server-1.18.0.tar.gz.sig2015-11-09 21:11 72  
    [   ]xorg-server-1.18.1.tar.bz22016-02-08 23:41 5.6M 
    [   ]xorg-server-1.18.1.tar.bz2.sig2016-02-08 23:41 72  
    [   ]xorg-server-1.18.1.tar.gz2016-02-08 23:41 7.8M 
    [   ]xorg-server-1.18.1.tar.gz.sig2016-02-08 23:41 72  
    [   ]xorg-server-1.18.2.tar.bz22016-03-11 21:45 5.6M 
    [   ]xorg-server-1.18.2.tar.bz2.sig2016-03-11 21:45 72  
    [   ]xorg-server-1.18.2.tar.gz2016-03-11 21:45 7.8M 
    [   ]xorg-server-1.18.2.tar.gz.sig2016-03-11 21:45 72  
    [   ]xorg-server-1.18.3.tar.bz22016-04-04 19:48 5.6M 
    [   ]xorg-server-1.18.3.tar.bz2.sig2016-04-04 19:48 72  
    [   ]xorg-server-1.18.3.tar.gz2016-04-04 19:48 7.9M 
    [   ]xorg-server-1.18.3.tar.gz.sig2016-04-04 19:48 72  
    [   ]xorg-server-1.18.4.tar.bz22016-07-19 17:42 5.7M 
    [   ]xorg-server-1.18.4.tar.bz2.sig2016-07-19 17:42 72  
    [   ]xorg-server-1.18.4.tar.gz2016-07-19 17:42 8.0M 
    [   ]xorg-server-1.18.4.tar.gz.sig2016-07-19 17:42 72  
    [   ]xorg-server-1.18.99.2.tar.bz22016-09-16 20:55 5.8M 
    [   ]xorg-server-1.18.99.2.tar.bz2.sig2016-09-16 20:55 543  
    [   ]xorg-server-1.18.99.2.tar.gz2016-09-16 20:54 8.0M 
    [   ]xorg-server-1.18.99.2.tar.gz.sig2016-09-16 20:55 543  
    [   ]xorg-server-1.18.99.901.tar.bz22016-09-19 16:10 5.8M 
    [   ]xorg-server-1.18.99.901.tar.bz2.sig2016-09-19 16:10 543  
    [   ]xorg-server-1.18.99.901.tar.gz2016-09-19 16:10 8.0M 
    [   ]xorg-server-1.18.99.901.tar.gz.sig2016-09-19 16:10 543  
    [   ]xorg-server-1.18.99.902.tar.bz22016-10-28 16:47 5.8M 
    [   ]xorg-server-1.18.99.902.tar.bz2.sig2016-10-28 16:47 543  
    [   ]xorg-server-1.18.99.902.tar.gz2016-10-28 16:47 8.1M 
    [   ]xorg-server-1.18.99.902.tar.gz.sig2016-10-28 16:47 543  
    [   ]xorg-server-1.19.0.tar.bz22016-11-15 17:08 5.8M 
    [   ]xorg-server-1.19.0.tar.bz2.sig2016-11-15 17:08 543  
    [   ]xorg-server-1.19.0.tar.gz2016-11-15 17:07 8.1M 
    [   ]xorg-server-1.19.0.tar.gz.sig2016-11-15 17:08 543  
    [   ]xorg-server-1.19.1.tar.bz22017-01-11 21:25 5.8M 
    [   ]xorg-server-1.19.1.tar.bz2.sig2017-01-11 21:25 72  
    [   ]xorg-server-1.19.1.tar.gz2017-01-11 21:25 8.1M 
    [   ]xorg-server-1.19.1.tar.gz.sig2017-01-11 21:25 72  
    [   ]xorg-server-1.19.2.tar.bz22017-03-02 23:05 5.7M 
    [   ]xorg-server-1.19.2.tar.bz2.sig2017-03-02 23:05 72  
    [   ]xorg-server-1.19.2.tar.gz2017-03-02 23:05 7.9M 
    [   ]xorg-server-1.19.2.tar.gz.sig2017-03-02 23:05 72  
    [   ]xorg-server-1.19.3.tar.bz22017-03-15 18:12 5.8M 
    [   ]xorg-server-1.19.3.tar.bz2.sig2017-03-15 18:12 72  
    [   ]xorg-server-1.19.3.tar.gz2017-03-15 18:12 8.1M 
    [   ]xorg-server-1.19.3.tar.gz.sig2017-03-15 18:12 72  
    [   ]xorg-server-1.19.4.tar.bz22017-10-04 22:00 5.7M 
    [   ]xorg-server-1.19.4.tar.bz2.sig2017-10-04 22:00 438  
    [   ]xorg-server-1.19.4.tar.gz2017-10-04 22:00 8.0M 
    [   ]xorg-server-1.19.4.tar.gz.sig2017-10-04 22:00 438  
    [   ]xorg-server-1.19.5.tar.bz22017-10-12 17:31 5.7M 
    [   ]xorg-server-1.19.5.tar.bz2.sig2017-10-12 17:31 438  
    [   ]xorg-server-1.19.5.tar.gz2017-10-12 17:31 8.0M 
    [   ]xorg-server-1.19.5.tar.gz.sig2017-10-12 17:31 438  
    [   ]xorg-server-1.19.6.tar.bz22017-12-20 20:39 5.7M 
    [   ]xorg-server-1.19.6.tar.bz2.sig2017-12-20 20:39 438  
    [   ]xorg-server-1.19.6.tar.gz2017-12-20 20:39 8.0M 
    [   ]xorg-server-1.19.6.tar.gz.sig2017-12-20 20:39 438  
    [   ]xorg-server-1.19.7.tar.bz22019-03-02 23:03 5.8M 
    [   ]xorg-server-1.19.7.tar.bz2.sig2019-03-02 23:03 287  
    [   ]xorg-server-1.19.7.tar.gz2019-03-02 23:02 8.1M 
    [   ]xorg-server-1.19.7.tar.gz.sig2019-03-02 23:03 287  
    [   ]xorg-server-1.19.99.901.tar.bz22018-02-28 18:28 5.8M 
    [   ]xorg-server-1.19.99.901.tar.bz2.sig2018-02-28 18:28 95  
    [   ]xorg-server-1.19.99.901.tar.gz2018-02-28 18:28 8.1M 
    [   ]xorg-server-1.19.99.901.tar.gz.sig2018-02-28 18:28 95  
    [   ]xorg-server-1.19.99.902.tar.bz22018-03-28 20:39 5.8M 
    [   ]xorg-server-1.19.99.902.tar.bz2.sig2018-03-28 20:39 438  
    [   ]xorg-server-1.19.99.902.tar.gz2018-03-28 20:39 8.1M 
    [   ]xorg-server-1.19.99.902.tar.gz.sig2018-03-28 20:39 438  
    [   ]xorg-server-1.19.99.903.tar.bz22018-04-02 19:56 5.8M 
    [   ]xorg-server-1.19.99.903.tar.bz2.sig2018-04-02 19:56 438  
    [   ]xorg-server-1.19.99.903.tar.gz2018-04-02 19:56 8.1M 
    [   ]xorg-server-1.19.99.903.tar.gz.sig2018-04-02 19:56 438  
    [   ]xorg-server-1.19.99.904.tar.bz22018-04-10 19:50 5.8M 
    [   ]xorg-server-1.19.99.904.tar.bz2.sig2018-04-10 19:50 438  
    [   ]xorg-server-1.19.99.904.tar.gz2018-04-10 19:50 8.1M 
    [   ]xorg-server-1.19.99.904.tar.gz.sig2018-04-10 19:50 438  
    [   ]xorg-server-1.19.99.905.tar.bz22018-04-24 21:12 5.8M 
    [   ]xorg-server-1.19.99.905.tar.bz2.sig2018-04-24 21:12 438  
    [   ]xorg-server-1.19.99.905.tar.gz2018-04-24 21:12 8.1M 
    [   ]xorg-server-1.19.99.905.tar.gz.sig2018-04-24 21:12 438  
    [   ]xorg-server-1.20.0.tar.bz22018-05-10 16:38 5.8M 
    [   ]xorg-server-1.20.0.tar.bz2.sig2018-05-10 16:38 438  
    [   ]xorg-server-1.20.0.tar.gz2018-05-10 16:38 8.1M 
    [   ]xorg-server-1.20.0.tar.gz.sig2018-05-10 16:38 438  
    [   ]xorg-server-1.20.1.tar.bz22018-08-07 16:37 5.8M 
    [   ]xorg-server-1.20.1.tar.bz2.sig2018-08-07 16:37 438  
    [   ]xorg-server-1.20.1.tar.gz2018-08-07 16:37 8.1M 
    [   ]xorg-server-1.20.1.tar.gz.sig2018-08-07 16:37 438  
    [   ]xorg-server-1.20.2.tar.bz22018-10-15 16:03 5.9M 
    [   ]xorg-server-1.20.2.tar.bz2.sig2018-10-15 16:03 438  
    [   ]xorg-server-1.20.2.tar.gz2018-10-15 16:03 8.2M 
    [   ]xorg-server-1.20.2.tar.gz.sig2018-10-15 16:03 438  
    [   ]xorg-server-1.20.3.tar.bz22018-10-25 14:17 5.9M 
    [   ]xorg-server-1.20.3.tar.bz2.sig2018-10-25 14:17 438  
    [   ]xorg-server-1.20.3.tar.gz2018-10-25 14:17 8.2M 
    [   ]xorg-server-1.20.3.tar.gz.sig2018-10-25 14:17 438  
    [   ]xorg-server-1.20.4.tar.bz22019-02-26 19:33 5.8M 
    [   ]xorg-server-1.20.4.tar.bz2.sig2019-02-26 19:33 438  
    [   ]xorg-server-1.20.4.tar.gz2019-02-26 19:33 8.2M 
    [   ]xorg-server-1.20.4.tar.gz.sig2019-02-26 19:33 438  
    [   ]xorg-server-1.20.5.tar.bz22019-05-30 18:32 5.8M 
    [   ]xorg-server-1.20.5.tar.bz2.sig2019-05-30 18:32 438  
    [   ]xorg-server-1.20.5.tar.gz2019-05-30 18:32 8.2M 
    [   ]xorg-server-1.20.5.tar.gz.sig2019-05-30 18:32 438  
    [   ]xorg-server-1.20.6.tar.bz22019-11-22 23:50 6.0M 
    [   ]xorg-server-1.20.6.tar.bz2.sig2019-11-22 23:50 215  
    [   ]xorg-server-1.20.6.tar.gz2019-11-22 23:50 8.3M 
    [   ]xorg-server-1.20.6.tar.gz.sig2019-11-22 23:50 215  

    +
    Apache/2.4.38 (Debian) Server at www.x.org Port 443
    + diff --git a/poky/bitbake/lib/bb/tests/fetch-testdata/software/pulseaudio/releases/index.html b/poky/bitbake/lib/bb/tests/fetch-testdata/software/pulseaudio/releases/index.html new file mode 100644 index 0000000..bf2d23c --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch-testdata/software/pulseaudio/releases/index.html @@ -0,0 +1,383 @@ + + + + Index of /software/pulseaudio/releases + + +

    Index of /software/pulseaudio/releases

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    [ICO]NameLast modifiedSizeDescription

    [PARENTDIR]Parent Directory  -  
    [DIR]bad/2014-01-26 17:50 -  
    [   ]polypaudio-0.1.tar.gz2008-03-28 21:16 387K 
    [   ]polypaudio-0.1.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.1.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.2.tar.gz2008-03-28 21:16 460K 
    [   ]polypaudio-0.2.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.2.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.3.tar.gz2008-03-28 21:16 470K 
    [   ]polypaudio-0.3.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.3.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.4.tar.gz2008-03-28 21:16 486K 
    [   ]polypaudio-0.4.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.4.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.5.1.tar.gz2008-03-28 21:16 524K 
    [   ]polypaudio-0.5.1.tar.gz.md52011-05-29 11:28 58  
    [   ]polypaudio-0.5.1.tar.gz.sha12011-05-29 11:28 66  
    [   ]polypaudio-0.5.tar.gz2008-03-28 21:16 518K 
    [   ]polypaudio-0.5.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.5.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.6.tar.gz2008-03-28 21:16 448K 
    [   ]polypaudio-0.6.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.6.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.7.tar.gz2008-03-28 21:16 924K 
    [   ]polypaudio-0.7.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.7.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.8.1.tar.gz2008-03-28 21:16 1.1M 
    [   ]polypaudio-0.8.1.tar.gz.md52011-05-29 11:28 58  
    [   ]polypaudio-0.8.1.tar.gz.sha12011-05-29 11:28 66  
    [   ]polypaudio-0.8.tar.gz2008-03-28 21:16 1.1M 
    [   ]polypaudio-0.8.tar.gz.md52011-05-29 11:28 56  
    [   ]polypaudio-0.8.tar.gz.sha12011-05-29 11:28 64  
    [   ]polypaudio-0.9.0.tar.gz2008-03-28 21:16 1.1M 
    [   ]polypaudio-0.9.0.tar.gz.md52011-05-29 11:28 58  
    [   ]polypaudio-0.9.0.tar.gz.sha12011-05-29 11:28 66  
    [   ]polypaudio-0.9.1.tar.gz2008-03-28 21:16 1.1M 
    [   ]polypaudio-0.9.1.tar.gz.md52011-05-29 11:28 58  
    [   ]polypaudio-0.9.1.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.2.tar.gz2008-03-28 21:16 1.0M 
    [   ]pulseaudio-0.9.2.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.2.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.3.tar.gz2008-03-28 21:16 1.1M 
    [   ]pulseaudio-0.9.3.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.3.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.4.tar.gz2008-03-28 21:16 1.1M 
    [   ]pulseaudio-0.9.4.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.4.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.5.tar.gz2008-03-28 21:16 1.1M 
    [   ]pulseaudio-0.9.5.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.5.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.6.tar.gz2008-03-28 21:16 1.1M 
    [   ]pulseaudio-0.9.6.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.6.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.7.tar.gz2008-03-28 21:16 1.0M 
    [   ]pulseaudio-0.9.7.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.7.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.8.tar.gz2008-03-28 21:16 1.0M 
    [   ]pulseaudio-0.9.8.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.8.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.9.tar.gz2008-03-28 21:16 1.0M 
    [   ]pulseaudio-0.9.9.tar.gz.md52011-05-29 11:28 58  
    [   ]pulseaudio-0.9.9.tar.gz.sha12011-05-29 11:28 66  
    [   ]pulseaudio-0.9.10.tar.gz2008-03-30 16:30 1.0M 
    [   ]pulseaudio-0.9.10.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.10.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.11.tar.gz2008-07-24 12:41 1.1M 
    [   ]pulseaudio-0.9.11.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.11.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.12.tar.gz2008-09-09 00:17 1.2M 
    [   ]pulseaudio-0.9.12.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.12.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.13.tar.gz2008-10-06 01:43 1.2M 
    [   ]pulseaudio-0.9.13.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.13.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.14.tar.gz2009-01-12 23:09 1.2M 
    [   ]pulseaudio-0.9.14.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.14.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.15.tar.gz2009-04-13 23:24 1.6M 
    [   ]pulseaudio-0.9.15.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.15.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.16-test1.tar.gz2009-06-23 17:16 1.8M 
    [   ]pulseaudio-0.9.16-test1.tar.gz.md52011-05-29 11:28 65  
    [   ]pulseaudio-0.9.16-test1.tar.gz.sha12011-05-29 11:28 73  
    [   ]pulseaudio-0.9.16.tar.gz2009-09-10 00:49 1.9M 
    [   ]pulseaudio-0.9.16.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.16.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.17.tar.gz2009-09-11 01:32 1.9M 
    [   ]pulseaudio-0.9.17.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.17.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.18.tar.gz2009-09-19 00:43 1.9M 
    [   ]pulseaudio-0.9.18.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.18.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.19.tar.gz2009-09-30 01:30 1.9M 
    [   ]pulseaudio-0.9.19.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.19.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.20.tar.gz2009-11-11 05:10 2.0M 
    [   ]pulseaudio-0.9.20.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.20.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.21.tar.gz2009-11-23 04:23 2.0M 
    [   ]pulseaudio-0.9.21.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.21.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.22.tar.gz2010-11-26 01:12 2.0M 
    [   ]pulseaudio-0.9.22.tar.gz.md52011-05-29 11:28 59  
    [   ]pulseaudio-0.9.22.tar.gz.sha12011-05-29 11:28 67  
    [   ]pulseaudio-0.9.23.tar.gz2011-06-23 21:13 2.0M 
    [   ]pulseaudio-0.9.23.tar.gz.md52011-06-23 21:13 59  
    [   ]pulseaudio-0.9.23.tar.gz.sha12011-06-23 21:13 67  
    [   ]pulseaudio-0.99.1.tar.gz2011-08-02 21:59 2.2M 
    [   ]pulseaudio-0.99.1.tar.gz.md52011-08-02 21:59 59  
    [   ]pulseaudio-0.99.1.tar.gz.sha12011-08-02 21:59 67  
    [   ]pulseaudio-0.99.2.tar.gz2011-08-16 10:19 2.2M 
    [   ]pulseaudio-0.99.2.tar.gz.md52011-08-16 10:19 59  
    [   ]pulseaudio-0.99.2.tar.gz.sha12011-08-16 10:19 67  
    [   ]pulseaudio-0.99.3.tar.gz2011-08-29 17:11 2.2M 
    [   ]pulseaudio-0.99.3.tar.gz.md52011-08-29 17:11 59  
    [   ]pulseaudio-0.99.3.tar.gz.sha12011-08-29 17:11 67  
    [   ]pulseaudio-0.99.4.tar.gz2011-09-15 11:04 2.2M 
    [   ]pulseaudio-0.99.4.tar.gz.md52011-09-15 11:04 59  
    [   ]pulseaudio-0.99.4.tar.gz.sha12011-09-15 11:04 67  
    [   ]pulseaudio-1.0.tar.gz2011-09-27 08:54 2.1M 
    [   ]pulseaudio-1.0.tar.gz.md52011-09-27 08:54 56  
    [   ]pulseaudio-1.0.tar.gz.sha12011-09-27 08:54 64  
    [   ]pulseaudio-1.0.tar.xz2011-09-27 08:54 1.2M 
    [   ]pulseaudio-1.0.tar.xz.md52011-09-27 08:54 56  
    [   ]pulseaudio-1.0.tar.xz.sha12011-09-27 08:54 64  
    [   ]pulseaudio-1.1.tar.gz2011-10-20 13:25 2.1M 
    [   ]pulseaudio-1.1.tar.gz.md52011-10-20 13:25 56  
    [   ]pulseaudio-1.1.tar.gz.sha12011-10-20 13:25 64  
    [   ]pulseaudio-1.1.tar.xz2011-10-20 13:25 1.2M 
    [   ]pulseaudio-1.1.tar.xz.md52011-10-20 13:25 56  
    [   ]pulseaudio-1.1.tar.xz.sha12011-10-20 13:25 64  
    [   ]pulseaudio-1.99.1.tar.gz2012-03-15 12:50 2.2M 
    [   ]pulseaudio-1.99.1.tar.gz.md52012-03-15 12:50 59  
    [   ]pulseaudio-1.99.1.tar.gz.sha12012-03-15 12:50 67  
    [   ]pulseaudio-1.99.1.tar.xz2012-03-15 12:50 1.3M 
    [   ]pulseaudio-1.99.1.tar.xz.md52012-03-15 12:50 59  
    [   ]pulseaudio-1.99.1.tar.xz.sha12012-03-15 12:50 67  
    [   ]pulseaudio-2.0.tar.gz2012-05-11 13:48 2.2M 
    [   ]pulseaudio-2.0.tar.gz.md52012-05-11 13:48 56  
    [   ]pulseaudio-2.0.tar.gz.sha12012-05-11 13:48 64  
    [   ]pulseaudio-2.0.tar.xz2012-05-11 13:48 1.3M 
    [   ]pulseaudio-2.0.tar.xz.md52012-05-11 13:48 56  
    [   ]pulseaudio-2.0.tar.xz.sha12012-05-11 13:48 64  
    [   ]pulseaudio-2.1.tar.gz2012-07-19 12:09 2.2M 
    [   ]pulseaudio-2.1.tar.gz.md52012-07-19 12:09 56  
    [   ]pulseaudio-2.1.tar.gz.sha12012-07-19 12:09 64  
    [   ]pulseaudio-2.1.tar.xz2012-07-19 12:09 1.3M 
    [   ]pulseaudio-2.1.tar.xz.md52012-07-19 12:09 56  
    [   ]pulseaudio-2.1.tar.xz.sha12012-07-19 12:09 64  
    [   ]pulseaudio-2.99.1.tar.gz2012-11-03 11:44 2.3M 
    [   ]pulseaudio-2.99.1.tar.gz.md52012-11-03 11:45 59  
    [   ]pulseaudio-2.99.1.tar.gz.sha12012-11-03 11:45 67  
    [   ]pulseaudio-2.99.1.tar.xz2012-11-03 11:44 1.3M 
    [   ]pulseaudio-2.99.1.tar.xz.md52012-11-03 11:46 59  
    [   ]pulseaudio-2.99.1.tar.xz.sha12012-11-03 11:46 67  
    [   ]pulseaudio-2.99.2.tar.gz2012-11-17 08:21 2.3M 
    [   ]pulseaudio-2.99.2.tar.gz.md52012-11-17 08:22 59  
    [   ]pulseaudio-2.99.2.tar.gz.sha12012-11-17 08:22 67  
    [   ]pulseaudio-2.99.2.tar.xz2012-11-17 08:21 1.3M 
    [   ]pulseaudio-2.99.2.tar.xz.md52012-11-17 08:22 59  
    [   ]pulseaudio-2.99.2.tar.xz.sha12012-11-17 08:22 67  
    [   ]pulseaudio-2.99.3.tar.gz2012-12-07 04:07 2.3M 
    [   ]pulseaudio-2.99.3.tar.gz.md52012-12-07 04:07 59  
    [   ]pulseaudio-2.99.3.tar.gz.sha12012-12-07 04:07 67  
    [   ]pulseaudio-2.99.3.tar.xz2012-12-07 04:07 1.3M 
    [   ]pulseaudio-2.99.3.tar.xz.md52012-12-07 04:07 59  
    [   ]pulseaudio-2.99.3.tar.xz.sha12012-12-07 04:07 67  
    [   ]pulseaudio-3.0.tar.gz2012-12-18 07:22 2.3M 
    [   ]pulseaudio-3.0.tar.gz.md52012-12-18 07:22 56  
    [   ]pulseaudio-3.0.tar.gz.sha12012-12-18 07:22 64  
    [   ]pulseaudio-3.0.tar.xz2012-12-18 07:22 1.3M 
    [   ]pulseaudio-3.0.tar.xz.md52012-12-18 07:22 56  
    [   ]pulseaudio-3.0.tar.xz.sha12012-12-18 07:22 64  
    [   ]pulseaudio-3.99.1.tar.gz2013-04-16 04:10 2.3M 
    [   ]pulseaudio-3.99.1.tar.gz.md52013-04-16 04:10 59  
    [   ]pulseaudio-3.99.1.tar.gz.sha12013-04-16 04:10 67  
    [   ]pulseaudio-3.99.1.tar.xz2013-04-16 04:10 1.3M 
    [   ]pulseaudio-3.99.1.tar.xz.md52013-04-16 04:10 59  
    [   ]pulseaudio-3.99.1.tar.xz.sha12013-04-16 04:10 67  
    [   ]pulseaudio-3.99.2.tar.gz2013-05-23 03:26 2.3M 
    [   ]pulseaudio-3.99.2.tar.gz.md52013-05-23 03:26 59  
    [   ]pulseaudio-3.99.2.tar.gz.sha12013-05-23 03:26 67  
    [   ]pulseaudio-3.99.2.tar.xz2013-05-23 03:26 1.3M 
    [   ]pulseaudio-3.99.2.tar.xz.md52013-05-23 03:26 59  
    [   ]pulseaudio-3.99.2.tar.xz.sha12013-05-23 03:26 67  
    [   ]pulseaudio-4.0.tar.gz2013-06-03 18:52 2.3M 
    [   ]pulseaudio-4.0.tar.gz.md52013-06-03 18:52 56  
    [   ]pulseaudio-4.0.tar.gz.sha12013-06-03 18:52 64  
    [   ]pulseaudio-4.0.tar.xz2013-06-03 18:52 1.3M 
    [   ]pulseaudio-4.0.tar.xz.md52013-06-03 18:52 56  
    [   ]pulseaudio-4.0.tar.xz.sha12013-06-03 18:52 64  
    [   ]pulseaudio-4.99.2.tar.gz2014-01-23 19:10 2.4M 
    [   ]pulseaudio-4.99.2.tar.gz.md52014-01-23 19:10 59  
    [   ]pulseaudio-4.99.2.tar.gz.sha12014-01-23 19:10 67  
    [   ]pulseaudio-4.99.2.tar.xz2014-01-23 19:10 1.4M 
    [   ]pulseaudio-4.99.2.tar.xz.md52014-01-23 19:10 59  
    [   ]pulseaudio-4.99.2.tar.xz.sha12014-01-23 19:10 67  
    [   ]pulseaudio-4.99.3.tar.gz2014-01-29 20:16 2.4M 
    [   ]pulseaudio-4.99.3.tar.gz.md52014-01-29 20:16 59  
    [   ]pulseaudio-4.99.3.tar.gz.sha12014-01-29 20:16 67  
    [   ]pulseaudio-4.99.3.tar.xz2014-01-29 20:16 1.4M 
    [   ]pulseaudio-4.99.3.tar.xz.md52014-01-29 20:16 59  
    [   ]pulseaudio-4.99.3.tar.xz.sha12014-01-29 20:16 67  
    [   ]pulseaudio-4.99.4.tar.gz2014-02-15 06:04 2.5M 
    [   ]pulseaudio-4.99.4.tar.gz.md52014-02-15 06:04 59  
    [   ]pulseaudio-4.99.4.tar.gz.sha12014-02-15 06:04 67  
    [   ]pulseaudio-4.99.4.tar.xz2014-02-15 06:04 1.4M 
    [   ]pulseaudio-4.99.4.tar.xz.md52014-02-15 06:04 59  
    [   ]pulseaudio-4.99.4.tar.xz.sha12014-02-15 06:04 67  
    [   ]pulseaudio-5.0.tar.gz2014-03-03 15:00 2.4M 
    [   ]pulseaudio-5.0.tar.gz.md52014-03-03 15:00 56  
    [   ]pulseaudio-5.0.tar.gz.sha12014-03-03 15:00 64  
    [   ]pulseaudio-5.0.tar.xz2014-03-03 15:00 1.4M 
    [   ]pulseaudio-5.0.tar.xz.md52014-03-03 15:00 56  
    [   ]pulseaudio-5.0.tar.xz.sha12014-03-03 15:00 64  
    [   ]pulseaudio-5.99.1.tar.gz2014-11-21 14:26 2.5M 
    [   ]pulseaudio-5.99.1.tar.gz.md52014-11-21 14:26 59  
    [   ]pulseaudio-5.99.1.tar.gz.sha12014-11-21 14:26 67  
    [   ]pulseaudio-5.99.1.tar.xz2014-11-21 14:27 1.4M 
    [   ]pulseaudio-5.99.1.tar.xz.md52014-11-21 14:27 59  
    [   ]pulseaudio-5.99.1.tar.xz.sha12014-11-21 14:27 67  
    [   ]pulseaudio-5.99.2.tar.gz2014-12-19 13:08 2.5M 
    [   ]pulseaudio-5.99.2.tar.gz.md52014-12-19 13:08 59  
    [   ]pulseaudio-5.99.2.tar.gz.sha12014-12-19 13:08 67  
    [   ]pulseaudio-5.99.2.tar.xz2014-12-19 13:08 1.4M 
    [   ]pulseaudio-5.99.2.tar.xz.md52014-12-19 13:08 59  
    [   ]pulseaudio-5.99.2.tar.xz.sha12014-12-19 13:08 67  
    [   ]pulseaudio-5.99.3.tar.gz2015-01-21 14:45 2.5M 
    [   ]pulseaudio-5.99.3.tar.gz.md52015-01-21 14:45 59  
    [   ]pulseaudio-5.99.3.tar.gz.sha12015-01-21 14:45 67  
    [   ]pulseaudio-5.99.3.tar.xz2015-01-21 14:45 1.4M 
    [   ]pulseaudio-5.99.3.tar.xz.md52015-01-21 14:45 59  
    [   ]pulseaudio-5.99.3.tar.xz.sha12015-01-21 14:45 67  
    [   ]pulseaudio-6.0.tar.gz2015-02-12 19:02 2.5M 
    [   ]pulseaudio-6.0.tar.gz.md52015-02-12 19:02 56  
    [   ]pulseaudio-6.0.tar.gz.sha12015-02-12 19:02 64  
    [   ]pulseaudio-6.0.tar.xz2015-02-12 19:02 1.4M 
    [   ]pulseaudio-6.0.tar.xz.md52015-02-12 19:02 56  
    [   ]pulseaudio-6.0.tar.xz.sha12015-02-12 19:02 64  
    [   ]pulseaudio-6.99.1.tar.gz2015-08-27 17:56 2.6M 
    [   ]pulseaudio-6.99.1.tar.gz.md52015-08-27 17:56 59  
    [   ]pulseaudio-6.99.1.tar.gz.sha12015-08-27 17:56 67  
    [   ]pulseaudio-6.99.1.tar.xz2015-08-27 17:56 1.4M 
    [   ]pulseaudio-6.99.1.tar.xz.md52015-08-27 17:56 59  
    [   ]pulseaudio-6.99.1.tar.xz.sha12015-08-27 17:56 67  
    [   ]pulseaudio-6.99.2.tar.gz2015-09-12 13:56 2.6M 
    [   ]pulseaudio-6.99.2.tar.gz.md52015-09-12 13:56 59  
    [   ]pulseaudio-6.99.2.tar.gz.sha12015-09-12 13:56 67  
    [   ]pulseaudio-6.99.2.tar.xz2015-09-12 13:56 1.4M 
    [   ]pulseaudio-6.99.2.tar.xz.md52015-09-12 13:56 59  
    [   ]pulseaudio-6.99.2.tar.xz.sha12015-09-12 13:56 67  
    [   ]pulseaudio-7.0.tar.gz2015-09-24 03:31 2.6M 
    [   ]pulseaudio-7.0.tar.gz.md5sum2015-09-24 03:31 56  
    [   ]pulseaudio-7.0.tar.gz.sha1sum2015-09-24 03:31 64  
    [   ]pulseaudio-7.0.tar.xz2015-09-24 03:31 1.4M 
    [   ]pulseaudio-7.0.tar.xz.md52015-09-24 03:31 56  
    [   ]pulseaudio-7.0.tar.xz.md5sum2015-09-24 03:31 56  
    [   ]pulseaudio-7.0.tar.xz.sha12015-09-24 03:31 64  
    [   ]pulseaudio-7.0.tar.xz.sha1sum2015-09-24 03:31 64  
    [   ]pulseaudio-7.1.tar.gz2015-10-30 12:51 2.6M 
    [   ]pulseaudio-7.1.tar.gz.md52015-10-30 12:51 56  
    [   ]pulseaudio-7.1.tar.gz.sha12015-10-30 12:51 64  
    [   ]pulseaudio-7.1.tar.xz2015-10-30 12:51 1.4M 
    [   ]pulseaudio-7.1.tar.xz.md52015-10-30 12:51 56  
    [   ]pulseaudio-7.1.tar.xz.sha12015-10-30 12:51 64  
    [   ]pulseaudio-7.99.1.tar.gz2015-12-28 12:38 2.6M 
    [   ]pulseaudio-7.99.1.tar.gz.md52015-12-28 12:38 59  
    [   ]pulseaudio-7.99.1.tar.gz.sha12015-12-28 12:38 67  
    [   ]pulseaudio-7.99.1.tar.xz2015-12-28 12:39 1.4M 
    [   ]pulseaudio-7.99.1.tar.xz.md52015-12-28 12:39 59  
    [   ]pulseaudio-7.99.1.tar.xz.sha12015-12-28 12:39 67  
    [   ]pulseaudio-7.99.2.tar.gz2016-01-12 03:28 2.6M 
    [   ]pulseaudio-7.99.2.tar.gz.md52016-01-12 03:28 59  
    [   ]pulseaudio-7.99.2.tar.gz.sha12016-01-12 03:28 67  
    [   ]pulseaudio-7.99.2.tar.xz2016-01-12 03:28 1.4M 
    [   ]pulseaudio-7.99.2.tar.xz.md52016-01-12 03:28 59  
    [   ]pulseaudio-7.99.2.tar.xz.sha12016-01-12 03:28 67  
    [   ]pulseaudio-8.0.tar.gz2016-01-22 07:38 2.6M 
    [   ]pulseaudio-8.0.tar.gz.md52016-01-22 07:38 56  
    [   ]pulseaudio-8.0.tar.gz.sha12016-01-22 07:38 64  
    [   ]pulseaudio-8.0.tar.xz2016-01-22 07:38 1.4M 
    [   ]pulseaudio-8.0.tar.xz.md52016-01-22 07:38 56  
    [   ]pulseaudio-8.0.tar.xz.sha12016-01-22 07:38 64  
    [   ]pulseaudio-8.99.1.tar.gz2016-05-12 10:58 2.6M 
    [   ]pulseaudio-8.99.1.tar.gz.md52016-05-12 10:58 59  
    [   ]pulseaudio-8.99.1.tar.gz.sha12016-05-12 10:58 67  
    [   ]pulseaudio-8.99.1.tar.xz2016-05-12 10:58 1.5M 
    [   ]pulseaudio-8.99.1.tar.xz.md52016-05-12 10:58 59  
    [   ]pulseaudio-8.99.1.tar.xz.sha12016-05-12 10:58 67  
    [   ]pulseaudio-8.99.2.tar.gz2016-05-29 06:08 2.6M 
    [   ]pulseaudio-8.99.2.tar.gz.md52016-05-29 06:08 59  
    [   ]pulseaudio-8.99.2.tar.gz.sha12016-05-29 06:08 67  
    [   ]pulseaudio-8.99.2.tar.xz2016-05-29 06:08 1.5M 
    [   ]pulseaudio-8.99.2.tar.xz.md52016-05-29 06:08 59  
    [   ]pulseaudio-8.99.2.tar.xz.sha12016-05-29 06:08 67  
    [   ]pulseaudio-9.0.tar.gz2016-06-22 07:09 2.6M 
    [   ]pulseaudio-9.0.tar.gz.md52016-06-22 07:09 56  
    [   ]pulseaudio-9.0.tar.gz.sha12016-06-22 07:09 64  
    [   ]pulseaudio-9.0.tar.xz2016-06-22 07:09 1.5M 
    [   ]pulseaudio-9.0.tar.xz.md52016-06-22 07:09 56  
    [   ]pulseaudio-9.0.tar.xz.sha12016-06-22 07:09 64  
    [   ]pulseaudio-9.99.1.tar.gz2017-01-03 16:14 2.7M 
    [   ]pulseaudio-9.99.1.tar.gz.md52017-01-03 16:14 59  
    [   ]pulseaudio-9.99.1.tar.gz.sha12017-01-03 16:14 67  
    [   ]pulseaudio-9.99.1.tar.xz2017-01-03 16:14 1.5M 
    [   ]pulseaudio-9.99.1.tar.xz.md52017-01-03 16:14 59  
    [   ]pulseaudio-9.99.1.tar.xz.sha12017-01-03 16:14 67  
    [   ]pulseaudio-10.0.tar.gz2017-01-19 00:12 2.7M 
    [   ]pulseaudio-10.0.tar.gz.md52017-01-19 00:12 57  
    [   ]pulseaudio-10.0.tar.gz.sha12017-01-19 00:12 65  
    [   ]pulseaudio-10.0.tar.xz2017-01-19 00:12 1.5M 
    [   ]pulseaudio-10.0.tar.xz.md52017-01-19 00:12 57  
    [   ]pulseaudio-10.0.tar.xz.sha12017-01-19 00:12 65  
    [   ]pulseaudio-10.99.1.tar.gz2017-07-24 23:52 2.8M 
    [   ]pulseaudio-10.99.1.tar.gz.md52017-07-24 23:52 60  
    [   ]pulseaudio-10.99.1.tar.gz.sha12017-07-24 23:52 68  
    [   ]pulseaudio-10.99.1.tar.xz2017-07-24 23:52 1.6M 
    [   ]pulseaudio-10.99.1.tar.xz.md52017-07-24 23:52 60  
    [   ]pulseaudio-10.99.1.tar.xz.sha12017-07-24 23:52 68  
    [   ]pulseaudio-11.0.tar.gz2017-09-05 09:49 2.8M 
    [   ]pulseaudio-11.0.tar.gz.md52017-09-05 09:49 57  
    [   ]pulseaudio-11.0.tar.gz.sha12017-09-05 09:49 65  
    [   ]pulseaudio-11.0.tar.xz2017-09-05 09:49 1.6M 
    [   ]pulseaudio-11.0.tar.xz.md52017-09-05 09:49 57  
    [   ]pulseaudio-11.0.tar.xz.sha12017-09-05 09:49 65  
    [   ]pulseaudio-11.1.tar.gz2017-09-18 15:23 2.8M 
    [   ]pulseaudio-11.1.tar.gz.md52017-09-18 15:23 57  
    [   ]pulseaudio-11.1.tar.gz.sha12017-09-18 15:23 65  
    [   ]pulseaudio-11.1.tar.xz2017-09-18 15:23 1.6M 
    [   ]pulseaudio-11.1.tar.xz.md52017-09-18 15:23 57  
    [   ]pulseaudio-11.1.tar.xz.sha12017-09-18 15:23 65  
    [   ]pulseaudio-11.99.1.tar.gz2018-05-13 06:57 2.8M 
    [   ]pulseaudio-11.99.1.tar.gz.md52018-05-13 06:57 60  
    [   ]pulseaudio-11.99.1.tar.gz.sha12018-05-13 06:57 68  
    [   ]pulseaudio-11.99.1.tar.xz2018-05-13 06:57 1.6M 
    [   ]pulseaudio-11.99.1.tar.xz.md52018-05-13 06:57 60  
    [   ]pulseaudio-11.99.1.tar.xz.sha12018-05-13 06:57 68  
    [   ]pulseaudio-12.0.tar.gz2018-06-20 20:33 2.8M 
    [   ]pulseaudio-12.0.tar.gz.md52018-06-20 20:33 57  
    [   ]pulseaudio-12.0.tar.gz.sha12018-06-20 20:33 65  
    [   ]pulseaudio-12.0.tar.xz2018-06-20 20:33 1.6M 
    [   ]pulseaudio-12.0.tar.xz.md52018-06-20 20:33 57  
    [   ]pulseaudio-12.0.tar.xz.sha12018-06-20 20:33 65  
    [   ]pulseaudio-12.1.tar.gz2018-07-14 16:43 2.8M 
    [   ]pulseaudio-12.1.tar.gz.md52018-07-14 16:43 57  
    [   ]pulseaudio-12.1.tar.gz.sha12018-07-14 16:43 65  
    [   ]pulseaudio-12.1.tar.xz2018-07-14 16:43 1.6M 
    [   ]pulseaudio-12.1.tar.xz.md52018-07-14 16:43 57  
    [   ]pulseaudio-12.1.tar.xz.sha12018-07-14 16:43 65  
    [   ]pulseaudio-12.2.tar.gz2018-07-16 16:12 2.8M 
    [   ]pulseaudio-12.2.tar.gz.sha2562018-07-16 16:13 89  
    [   ]pulseaudio-12.2.tar.xz2018-07-16 16:12 1.6M 
    [   ]pulseaudio-12.2.tar.xz.sha2562018-07-16 16:13 89  
    [   ]pulseaudio-12.99.1.tar.gz2019-07-09 03:16 3.6M 
    [   ]pulseaudio-12.99.1.tar.gz.sha2562019-07-09 03:16 92  
    [   ]pulseaudio-12.99.1.tar.xz2019-07-09 03:16 1.8M 
    [   ]pulseaudio-12.99.1.tar.xz.sha2562019-07-09 03:16 92  
    [   ]pulseaudio-12.99.2.tar.gz2019-08-06 17:47 3.6M 
    [   ]pulseaudio-12.99.2.tar.gz.sha2562019-08-06 17:47 92  
    [   ]pulseaudio-12.99.2.tar.xz2019-08-06 17:47 1.8M 
    [   ]pulseaudio-12.99.2.tar.xz.sha2562019-08-06 17:47 92  
    [   ]pulseaudio-12.99.3.tar.gz2019-09-01 07:44 3.6M 
    [   ]pulseaudio-12.99.3.tar.gz.sha2562019-09-01 07:44 92  
    [   ]pulseaudio-12.99.3.tar.xz2019-09-01 07:44 1.9M 
    [   ]pulseaudio-12.99.3.tar.xz.sha2562019-09-01 07:44 92  
    [   ]pulseaudio-13.0.tar.gz2019-09-13 13:34 3.6M 
    [   ]pulseaudio-13.0.tar.gz.sha2562019-09-13 13:34 89  
    [   ]pulseaudio-13.0.tar.xz2019-09-13 13:34 1.8M 
    [   ]pulseaudio-13.0.tar.xz.sha2562019-09-13 13:34 89  

    +
    Apache/2.4.38 (Debian) Server at freedesktop.org Port 443
    + diff --git a/poky/bitbake/lib/bb/tests/fetch.py b/poky/bitbake/lib/bb/tests/fetch.py new file mode 100644 index 0000000..7bace41 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/fetch.py @@ -0,0 +1,2804 @@ +# +# BitBake Tests for the Fetcher (fetch2/) +# +# Copyright (C) 2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import hashlib +import tempfile +import collections +import os +import tarfile +from bb.fetch2 import URI +from bb.fetch2 import FetchMethod +import bb +from bb.tests.support.httpserver import HTTPService + +def skipIfNoNetwork(): + if os.environ.get("BB_SKIP_NETTESTS") == "yes": + return unittest.skip("network test") + return lambda f: f + +class URITest(unittest.TestCase): + test_uris = { + "http://www.google.com/index.html" : { + 'uri': 'http://www.google.com/index.html', + 'scheme': 'http', + 'hostname': 'www.google.com', + 'port': None, + 'hostport': 'www.google.com', + 'path': '/index.html', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': False + }, + "http://www.google.com/index.html;param1=value1" : { + 'uri': 'http://www.google.com/index.html;param1=value1', + 'scheme': 'http', + 'hostname': 'www.google.com', + 'port': None, + 'hostport': 'www.google.com', + 'path': '/index.html', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': { + 'param1': 'value1' + }, + 'query': {}, + 'relative': False + }, + "http://www.example.org/index.html?param1=value1" : { + 'uri': 'http://www.example.org/index.html?param1=value1', + 'scheme': 'http', + 'hostname': 'www.example.org', + 'port': None, + 'hostport': 'www.example.org', + 'path': '/index.html', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': { + 'param1': 'value1' + }, + 'relative': False + }, + "http://www.example.org/index.html?qparam1=qvalue1;param2=value2" : { + 'uri': 'http://www.example.org/index.html?qparam1=qvalue1;param2=value2', + 'scheme': 'http', + 'hostname': 'www.example.org', + 'port': None, + 'hostport': 'www.example.org', + 'path': '/index.html', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': { + 'param2': 'value2' + }, + 'query': { + 'qparam1': 'qvalue1' + }, + 'relative': False + }, + # Check that trailing semicolons are handled correctly + "http://www.example.org/index.html?qparam1=qvalue1;param2=value2;" : { + 'uri': 'http://www.example.org/index.html?qparam1=qvalue1;param2=value2', + 'scheme': 'http', + 'hostname': 'www.example.org', + 'port': None, + 'hostport': 'www.example.org', + 'path': '/index.html', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': { + 'param2': 'value2' + }, + 'query': { + 'qparam1': 'qvalue1' + }, + 'relative': False + }, + "http://www.example.com:8080/index.html" : { + 'uri': 'http://www.example.com:8080/index.html', + 'scheme': 'http', + 'hostname': 'www.example.com', + 'port': 8080, + 'hostport': 'www.example.com:8080', + 'path': '/index.html', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': False + }, + "cvs://anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg" : { + 'uri': 'cvs://anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg', + 'scheme': 'cvs', + 'hostname': 'cvs.handhelds.org', + 'port': None, + 'hostport': 'cvs.handhelds.org', + 'path': '/cvs', + 'userinfo': 'anoncvs', + 'username': 'anoncvs', + 'password': '', + 'params': { + 'module': 'familiar/dist/ipkg' + }, + 'query': {}, + 'relative': False + }, + "cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg": { + 'uri': 'cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg', + 'scheme': 'cvs', + 'hostname': 'cvs.handhelds.org', + 'port': None, + 'hostport': 'cvs.handhelds.org', + 'path': '/cvs', + 'userinfo': 'anoncvs:anonymous', + 'username': 'anoncvs', + 'password': 'anonymous', + 'params': collections.OrderedDict([ + ('tag', 'V0-99-81'), + ('module', 'familiar/dist/ipkg') + ]), + 'query': {}, + 'relative': False + }, + "file://example.diff": { # NOTE: Not RFC compliant! + 'uri': 'file:example.diff', + 'scheme': 'file', + 'hostname': '', + 'port': None, + 'hostport': '', + 'path': 'example.diff', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': True + }, + "file:example.diff": { # NOTE: RFC compliant version of the former + 'uri': 'file:example.diff', + 'scheme': 'file', + 'hostname': '', + 'port': None, + 'hostport': '', + 'path': 'example.diff', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': True + }, + "file:///tmp/example.diff": { + 'uri': 'file:///tmp/example.diff', + 'scheme': 'file', + 'hostname': '', + 'port': None, + 'hostport': '', + 'path': '/tmp/example.diff', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': False + }, + "git:///path/example.git": { + 'uri': 'git:///path/example.git', + 'scheme': 'git', + 'hostname': '', + 'port': None, + 'hostport': '', + 'path': '/path/example.git', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': False + }, + "git:path/example.git": { + 'uri': 'git:path/example.git', + 'scheme': 'git', + 'hostname': '', + 'port': None, + 'hostport': '', + 'path': 'path/example.git', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': True + }, + "git://example.net/path/example.git": { + 'uri': 'git://example.net/path/example.git', + 'scheme': 'git', + 'hostname': 'example.net', + 'port': None, + 'hostport': 'example.net', + 'path': '/path/example.git', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': False + }, + "git://tfs-example.org:22/tfs/example%20path/example.git": { + 'uri': 'git://tfs-example.org:22/tfs/example%20path/example.git', + 'scheme': 'git', + 'hostname': 'tfs-example.org', + 'port': 22, + 'hostport': 'tfs-example.org:22', + 'path': '/tfs/example path/example.git', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {}, + 'query': {}, + 'relative': False + }, + "http://somesite.net;someparam=1": { + 'uri': 'http://somesite.net;someparam=1', + 'scheme': 'http', + 'hostname': 'somesite.net', + 'port': None, + 'hostport': 'somesite.net', + 'path': '', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {"someparam" : "1"}, + 'query': {}, + 'relative': False + }, + "file://somelocation;someparam=1": { + 'uri': 'file:somelocation;someparam=1', + 'scheme': 'file', + 'hostname': '', + 'port': None, + 'hostport': '', + 'path': 'somelocation', + 'userinfo': '', + 'userinfo': '', + 'username': '', + 'password': '', + 'params': {"someparam" : "1"}, + 'query': {}, + 'relative': True + } + + } + + def test_uri(self): + for test_uri, ref in self.test_uris.items(): + uri = URI(test_uri) + + self.assertEqual(str(uri), ref['uri']) + + # expected attributes + self.assertEqual(uri.scheme, ref['scheme']) + + self.assertEqual(uri.userinfo, ref['userinfo']) + self.assertEqual(uri.username, ref['username']) + self.assertEqual(uri.password, ref['password']) + + self.assertEqual(uri.hostname, ref['hostname']) + self.assertEqual(uri.port, ref['port']) + self.assertEqual(uri.hostport, ref['hostport']) + + self.assertEqual(uri.path, ref['path']) + self.assertEqual(uri.params, ref['params']) + + self.assertEqual(uri.relative, ref['relative']) + + def test_dict(self): + for test in self.test_uris.values(): + uri = URI() + + self.assertEqual(uri.scheme, '') + self.assertEqual(uri.userinfo, '') + self.assertEqual(uri.username, '') + self.assertEqual(uri.password, '') + self.assertEqual(uri.hostname, '') + self.assertEqual(uri.port, None) + self.assertEqual(uri.path, '') + self.assertEqual(uri.params, {}) + + + uri.scheme = test['scheme'] + self.assertEqual(uri.scheme, test['scheme']) + + uri.userinfo = test['userinfo'] + self.assertEqual(uri.userinfo, test['userinfo']) + self.assertEqual(uri.username, test['username']) + self.assertEqual(uri.password, test['password']) + + # make sure changing the values doesn't do anything unexpected + uri.username = 'changeme' + self.assertEqual(uri.username, 'changeme') + self.assertEqual(uri.password, test['password']) + uri.password = 'insecure' + self.assertEqual(uri.username, 'changeme') + self.assertEqual(uri.password, 'insecure') + + # reset back after our trickery + uri.userinfo = test['userinfo'] + self.assertEqual(uri.userinfo, test['userinfo']) + self.assertEqual(uri.username, test['username']) + self.assertEqual(uri.password, test['password']) + + uri.hostname = test['hostname'] + self.assertEqual(uri.hostname, test['hostname']) + self.assertEqual(uri.hostport, test['hostname']) + + uri.port = test['port'] + self.assertEqual(uri.port, test['port']) + self.assertEqual(uri.hostport, test['hostport']) + + uri.path = test['path'] + self.assertEqual(uri.path, test['path']) + + uri.params = test['params'] + self.assertEqual(uri.params, test['params']) + + uri.query = test['query'] + self.assertEqual(uri.query, test['query']) + + self.assertEqual(str(uri), test['uri']) + + uri.params = {} + self.assertEqual(uri.params, {}) + self.assertEqual(str(uri), (str(uri).split(";"))[0]) + +class FetcherTest(unittest.TestCase): + + def setUp(self): + self.origdir = os.getcwd() + self.d = bb.data.init() + self.tempdir = tempfile.mkdtemp(prefix="bitbake-fetch-") + self.dldir = os.path.join(self.tempdir, "download") + os.mkdir(self.dldir) + self.d.setVar("DL_DIR", self.dldir) + self.unpackdir = os.path.join(self.tempdir, "unpacked") + os.mkdir(self.unpackdir) + persistdir = os.path.join(self.tempdir, "persistdata") + self.d.setVar("PERSISTENT_DIR", persistdir) + + def tearDown(self): + os.chdir(self.origdir) + if os.environ.get("BB_TMPDIR_NOCLEAN") == "yes": + print("Not cleaning up %s. Please remove manually." % self.tempdir) + else: + bb.process.run('chmod u+rw -R %s' % self.tempdir) + bb.utils.prunedir(self.tempdir) + + def git(self, cmd, cwd=None): + if isinstance(cmd, str): + cmd = 'git ' + cmd + else: + cmd = ['git'] + cmd + if cwd is None: + cwd = self.gitdir + return bb.process.run(cmd, cwd=cwd)[0] + + def git_init(self, cwd=None): + self.git('init', cwd=cwd) + if not self.git(['config', 'user.email'], cwd=cwd): + self.git(['config', 'user.email', 'you@example.com'], cwd=cwd) + if not self.git(['config', 'user.name'], cwd=cwd): + self.git(['config', 'user.name', 'Your Name'], cwd=cwd) + +class MirrorUriTest(FetcherTest): + + replaceuris = { + ("git://git.invalid.infradead.org/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/.*", "http://somewhere.org/somedir/") + : "http://somewhere.org/somedir/git2_git.invalid.infradead.org.mtd-utils.git.tar.gz", + ("git://git.invalid.infradead.org/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/([^/]+/)*([^/]*)", "git://somewhere.org/somedir/\\2;protocol=http") + : "git://somewhere.org/somedir/mtd-utils.git;tag=1234567890123456789012345678901234567890;protocol=http", + ("git://git.invalid.infradead.org/foo/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/([^/]+/)*([^/]*)", "git://somewhere.org/somedir/\\2;protocol=http") + : "git://somewhere.org/somedir/mtd-utils.git;tag=1234567890123456789012345678901234567890;protocol=http", + ("git://git.invalid.infradead.org/foo/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/([^/]+/)*([^/]*)", "git://somewhere.org/\\2;protocol=http") + : "git://somewhere.org/mtd-utils.git;tag=1234567890123456789012345678901234567890;protocol=http", + ("git://someserver.org/bitbake;tag=1234567890123456789012345678901234567890", "git://someserver.org/bitbake", "git://git.openembedded.org/bitbake") + : "git://git.openembedded.org/bitbake;tag=1234567890123456789012345678901234567890", + ("file://sstate-xyz.tgz", "file://.*", "file:///somewhere/1234/sstate-cache") + : "file:///somewhere/1234/sstate-cache/sstate-xyz.tgz", + ("file://sstate-xyz.tgz", "file://.*", "file:///somewhere/1234/sstate-cache/") + : "file:///somewhere/1234/sstate-cache/sstate-xyz.tgz", + ("http://somewhere.org/somedir1/somedir2/somefile_1.2.3.tar.gz", "http://.*/.*", "http://somewhere2.org/somedir3") + : "http://somewhere2.org/somedir3/somefile_1.2.3.tar.gz", + ("http://somewhere.org/somedir1/somefile_1.2.3.tar.gz", "http://somewhere.org/somedir1/somefile_1.2.3.tar.gz", "http://somewhere2.org/somedir3/somefile_1.2.3.tar.gz") + : "http://somewhere2.org/somedir3/somefile_1.2.3.tar.gz", + ("http://www.apache.org/dist/subversion/subversion-1.7.1.tar.bz2", "http://www.apache.org/dist", "http://archive.apache.org/dist") + : "http://archive.apache.org/dist/subversion/subversion-1.7.1.tar.bz2", + ("http://www.apache.org/dist/subversion/subversion-1.7.1.tar.bz2", "http://.*/.*", "file:///somepath/downloads/") + : "file:///somepath/downloads/subversion-1.7.1.tar.bz2", + ("git://git.invalid.infradead.org/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/.*", "git://somewhere.org/somedir/BASENAME;protocol=http") + : "git://somewhere.org/somedir/mtd-utils.git;tag=1234567890123456789012345678901234567890;protocol=http", + ("git://git.invalid.infradead.org/foo/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/.*", "git://somewhere.org/somedir/BASENAME;protocol=http") + : "git://somewhere.org/somedir/mtd-utils.git;tag=1234567890123456789012345678901234567890;protocol=http", + ("git://git.invalid.infradead.org/foo/mtd-utils.git;tag=1234567890123456789012345678901234567890", "git://.*/.*", "git://somewhere.org/somedir/MIRRORNAME;protocol=http") + : "git://somewhere.org/somedir/git.invalid.infradead.org.foo.mtd-utils.git;tag=1234567890123456789012345678901234567890;protocol=http", + ("http://somewhere.org/somedir1/somedir2/somefile_1.2.3.tar.gz", "http://.*/.*", "http://somewhere2.org") + : "http://somewhere2.org/somefile_1.2.3.tar.gz", + ("http://somewhere.org/somedir1/somedir2/somefile_1.2.3.tar.gz", "http://.*/.*", "http://somewhere2.org/") + : "http://somewhere2.org/somefile_1.2.3.tar.gz", + ("git://someserver.org/bitbake;tag=1234567890123456789012345678901234567890;branch=master", "git://someserver.org/bitbake;branch=master", "git://git.openembedded.org/bitbake;protocol=http") + : "git://git.openembedded.org/bitbake;tag=1234567890123456789012345678901234567890;branch=master;protocol=http", + ("git://user1@someserver.org/bitbake;tag=1234567890123456789012345678901234567890;branch=master", "git://someserver.org/bitbake;branch=master", "git://user2@git.openembedded.org/bitbake;protocol=http") + : "git://user2@git.openembedded.org/bitbake;tag=1234567890123456789012345678901234567890;branch=master;protocol=http", + ("git://someserver.org/bitbake;tag=1234567890123456789012345678901234567890;protocol=git;branch=master", "git://someserver.org/bitbake", "git://someotherserver.org/bitbake;protocol=https") + : "git://someotherserver.org/bitbake;tag=1234567890123456789012345678901234567890;protocol=https;branch=master", + ("gitsm://git.qemu.org/git/seabios.git/;protocol=https;name=roms/seabios;subpath=roms/seabios;bareclone=1;nobranch=1;rev=1234567890123456789012345678901234567890", "gitsm://.*/.*", "http://petalinux.xilinx.com/sswreleases/rel-v${XILINX_VER_MAIN}/downloads") : "http://petalinux.xilinx.com/sswreleases/rel-v%24%7BXILINX_VER_MAIN%7D/downloads/git2_git.qemu.org.git.seabios.git..tar.gz", + ("https://somewhere.org/example/1.0.0/example;downloadfilename=some-example-1.0.0.tgz", "https://.*/.*", "file:///mirror/PATH") + : "file:///mirror/example/1.0.0/some-example-1.0.0.tgz;downloadfilename=some-example-1.0.0.tgz", + ("https://somewhere.org/example-1.0.0.tgz;downloadfilename=some-example-1.0.0.tgz", "https://.*/.*", "file:///mirror/some-example-1.0.0.tgz") + : "file:///mirror/some-example-1.0.0.tgz;downloadfilename=some-example-1.0.0.tgz", + + #Renaming files doesn't work + #("http://somewhere.org/somedir1/somefile_1.2.3.tar.gz", "http://somewhere.org/somedir1/somefile_1.2.3.tar.gz", "http://somewhere2.org/somedir3/somefile_2.3.4.tar.gz") : "http://somewhere2.org/somedir3/somefile_2.3.4.tar.gz" + #("file://sstate-xyz.tgz", "file://.*/.*", "file:///somewhere/1234/sstate-cache") : "file:///somewhere/1234/sstate-cache/sstate-xyz.tgz", + } + + mirrorvar = "http://.*/.* file:///somepath/downloads/ " \ + "git://someserver.org/bitbake git://git.openembedded.org/bitbake " \ + "https://.*/.* file:///someotherpath/downloads/ " \ + "http://.*/.* file:///someotherpath/downloads/" + + def test_urireplace(self): + for k, v in self.replaceuris.items(): + ud = bb.fetch.FetchData(k[0], self.d) + ud.setup_localpath(self.d) + mirrors = bb.fetch2.mirror_from_string("%s %s" % (k[1], k[2])) + newuris, uds = bb.fetch2.build_mirroruris(ud, mirrors, self.d) + self.assertEqual([v], newuris) + + def test_urilist1(self): + fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", self.d) + mirrors = bb.fetch2.mirror_from_string(self.mirrorvar) + uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) + self.assertEqual(uris, ['file:///somepath/downloads/bitbake-1.0.tar.gz', 'file:///someotherpath/downloads/bitbake-1.0.tar.gz']) + + def test_urilist2(self): + # Catch https:// -> files:// bug + fetcher = bb.fetch.FetchData("https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", self.d) + mirrors = bb.fetch2.mirror_from_string(self.mirrorvar) + uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) + self.assertEqual(uris, ['file:///someotherpath/downloads/bitbake-1.0.tar.gz']) + + def test_mirror_of_mirror(self): + # Test if mirror of a mirror works + mirrorvar = self.mirrorvar + " http://.*/.* http://otherdownloads.yoctoproject.org/downloads/" + mirrorvar = mirrorvar + " http://otherdownloads.yoctoproject.org/.* http://downloads2.yoctoproject.org/downloads/" + fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", self.d) + mirrors = bb.fetch2.mirror_from_string(mirrorvar) + uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) + self.assertEqual(uris, ['file:///somepath/downloads/bitbake-1.0.tar.gz', + 'file:///someotherpath/downloads/bitbake-1.0.tar.gz', + 'http://otherdownloads.yoctoproject.org/downloads/bitbake-1.0.tar.gz', + 'http://downloads2.yoctoproject.org/downloads/bitbake-1.0.tar.gz']) + + recmirrorvar = "https://.*/[^/]* http://AAAA/A/A/A/ " \ + "https://.*/[^/]* https://BBBB/B/B/B/" + + def test_recursive(self): + fetcher = bb.fetch.FetchData("https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", self.d) + mirrors = bb.fetch2.mirror_from_string(self.recmirrorvar) + uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) + self.assertEqual(uris, ['http://AAAA/A/A/A/bitbake/bitbake-1.0.tar.gz', + 'https://BBBB/B/B/B/bitbake/bitbake-1.0.tar.gz', + 'http://AAAA/A/A/A/B/B/bitbake/bitbake-1.0.tar.gz']) + + +class GitDownloadDirectoryNamingTest(FetcherTest): + def setUp(self): + super(GitDownloadDirectoryNamingTest, self).setUp() + self.recipe_url = "git://git.openembedded.org/bitbake;branch=master" + self.recipe_dir = "git.openembedded.org.bitbake" + self.mirror_url = "git://github.com/openembedded/bitbake.git;protocol=https;branch=master" + self.mirror_dir = "github.com.openembedded.bitbake.git" + + self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40') + + def setup_mirror_rewrite(self): + self.d.setVar("PREMIRRORS", self.recipe_url + " " + self.mirror_url) + + @skipIfNoNetwork() + def test_that_directory_is_named_after_recipe_url_when_no_mirroring_is_used(self): + self.setup_mirror_rewrite() + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir + "/git2") + self.assertIn(self.recipe_dir, dir) + + @skipIfNoNetwork() + def test_that_directory_exists_for_mirrored_url_and_recipe_url_when_mirroring_is_used(self): + self.setup_mirror_rewrite() + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir + "/git2") + self.assertIn(self.mirror_dir, dir) + self.assertIn(self.recipe_dir, dir) + + @skipIfNoNetwork() + def test_that_recipe_directory_and_mirrored_directory_exists_when_mirroring_is_used_and_the_mirrored_directory_already_exists(self): + self.setup_mirror_rewrite() + fetcher = bb.fetch.Fetch([self.mirror_url], self.d) + fetcher.download() + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir + "/git2") + self.assertIn(self.mirror_dir, dir) + self.assertIn(self.recipe_dir, dir) + + +class TarballNamingTest(FetcherTest): + def setUp(self): + super(TarballNamingTest, self).setUp() + self.recipe_url = "git://git.openembedded.org/bitbake;branch=master" + self.recipe_tarball = "git2_git.openembedded.org.bitbake.tar.gz" + self.mirror_url = "git://github.com/openembedded/bitbake.git;protocol=https;branch=master" + self.mirror_tarball = "git2_github.com.openembedded.bitbake.git.tar.gz" + + self.d.setVar('BB_GENERATE_MIRROR_TARBALLS', '1') + self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40') + + def setup_mirror_rewrite(self): + self.d.setVar("PREMIRRORS", self.recipe_url + " " + self.mirror_url) + + @skipIfNoNetwork() + def test_that_the_recipe_tarball_is_created_when_no_mirroring_is_used(self): + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir) + self.assertIn(self.recipe_tarball, dir) + + @skipIfNoNetwork() + def test_that_the_mirror_tarball_is_created_when_mirroring_is_used(self): + self.setup_mirror_rewrite() + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir) + self.assertIn(self.mirror_tarball, dir) + + +class GitShallowTarballNamingTest(FetcherTest): + def setUp(self): + super(GitShallowTarballNamingTest, self).setUp() + self.recipe_url = "git://git.openembedded.org/bitbake;branch=master" + self.recipe_tarball = "gitshallow_git.openembedded.org.bitbake_82ea737-1_master.tar.gz" + self.mirror_url = "git://github.com/openembedded/bitbake.git;protocol=https;branch=master" + self.mirror_tarball = "gitshallow_github.com.openembedded.bitbake.git_82ea737-1_master.tar.gz" + + self.d.setVar('BB_GIT_SHALLOW', '1') + self.d.setVar('BB_GENERATE_SHALLOW_TARBALLS', '1') + self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40') + + def setup_mirror_rewrite(self): + self.d.setVar("PREMIRRORS", self.recipe_url + " " + self.mirror_url) + + @skipIfNoNetwork() + def test_that_the_tarball_is_named_after_recipe_url_when_no_mirroring_is_used(self): + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir) + self.assertIn(self.recipe_tarball, dir) + + @skipIfNoNetwork() + def test_that_the_mirror_tarball_is_created_when_mirroring_is_used(self): + self.setup_mirror_rewrite() + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + dir = os.listdir(self.dldir) + self.assertIn(self.mirror_tarball, dir) + + +class CleanTarballTest(FetcherTest): + def setUp(self): + super(CleanTarballTest, self).setUp() + self.recipe_url = "git://git.openembedded.org/bitbake" + self.recipe_tarball = "git2_git.openembedded.org.bitbake.tar.gz" + + self.d.setVar('BB_GENERATE_MIRROR_TARBALLS', '1') + self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40') + + @skipIfNoNetwork() + def test_that_the_tarball_contents_does_not_leak_info(self): + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + + fetcher.unpack(self.unpackdir) + mtime = bb.process.run('git log --all -1 --format=%ct', + cwd=os.path.join(self.unpackdir, 'git')) + self.assertEqual(len(mtime), 2) + mtime = int(mtime[0]) + + archive = tarfile.open(os.path.join(self.dldir, self.recipe_tarball)) + self.assertNotEqual(len(archive.members), 0) + for member in archive.members: + self.assertEqual(member.uname, 'oe') + self.assertEqual(member.uid, 0) + self.assertEqual(member.gname, 'oe') + self.assertEqual(member.gid, 0) + self.assertEqual(member.mtime, mtime) + + +class FetcherLocalTest(FetcherTest): + def setUp(self): + def touch(fn): + with open(fn, 'a'): + os.utime(fn, None) + + super(FetcherLocalTest, self).setUp() + self.localsrcdir = os.path.join(self.tempdir, 'localsrc') + os.makedirs(self.localsrcdir) + touch(os.path.join(self.localsrcdir, 'a')) + touch(os.path.join(self.localsrcdir, 'b')) + os.makedirs(os.path.join(self.localsrcdir, 'dir')) + touch(os.path.join(self.localsrcdir, 'dir', 'c')) + touch(os.path.join(self.localsrcdir, 'dir', 'd')) + os.makedirs(os.path.join(self.localsrcdir, 'dir', 'subdir')) + touch(os.path.join(self.localsrcdir, 'dir', 'subdir', 'e')) + touch(os.path.join(self.localsrcdir, r'backslash\x2dsystemd-unit.device')) + bb.process.run('tar cf archive.tar -C dir .', cwd=self.localsrcdir) + bb.process.run('tar czf archive.tar.gz -C dir .', cwd=self.localsrcdir) + bb.process.run('tar cjf archive.tar.bz2 -C dir .', cwd=self.localsrcdir) + self.d.setVar("FILESPATH", self.localsrcdir) + + def fetchUnpack(self, uris): + fetcher = bb.fetch.Fetch(uris, self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + flst = [] + for root, dirs, files in os.walk(self.unpackdir): + for f in files: + flst.append(os.path.relpath(os.path.join(root, f), self.unpackdir)) + flst.sort() + return flst + + def test_local(self): + tree = self.fetchUnpack(['file://a', 'file://dir/c']) + self.assertEqual(tree, ['a', 'dir/c']) + + def test_local_backslash(self): + tree = self.fetchUnpack([r'file://backslash\x2dsystemd-unit.device']) + self.assertEqual(tree, [r'backslash\x2dsystemd-unit.device']) + + def test_local_wildcard(self): + with self.assertRaises(bb.fetch2.ParameterError): + tree = self.fetchUnpack(['file://a', 'file://dir/*']) + + def test_local_dir(self): + tree = self.fetchUnpack(['file://a', 'file://dir']) + self.assertEqual(tree, ['a', 'dir/c', 'dir/d', 'dir/subdir/e']) + + def test_local_subdir(self): + tree = self.fetchUnpack(['file://dir/subdir']) + self.assertEqual(tree, ['dir/subdir/e']) + + def test_local_subdir_file(self): + tree = self.fetchUnpack(['file://dir/subdir/e']) + self.assertEqual(tree, ['dir/subdir/e']) + + def test_local_subdirparam(self): + tree = self.fetchUnpack(['file://a;subdir=bar', 'file://dir;subdir=foo/moo']) + self.assertEqual(tree, ['bar/a', 'foo/moo/dir/c', 'foo/moo/dir/d', 'foo/moo/dir/subdir/e']) + + def test_local_deepsubdirparam(self): + tree = self.fetchUnpack(['file://dir/subdir/e;subdir=bar']) + self.assertEqual(tree, ['bar/dir/subdir/e']) + + def test_local_absolutedir(self): + # Unpacking to an absolute path that is a subdirectory of the root + # should work + tree = self.fetchUnpack(['file://a;subdir=%s' % os.path.join(self.unpackdir, 'bar')]) + + # Unpacking to an absolute path outside of the root should fail + with self.assertRaises(bb.fetch2.UnpackError): + self.fetchUnpack(['file://a;subdir=/bin/sh']) + + def test_local_striplevel(self): + tree = self.fetchUnpack(['file://archive.tar;subdir=bar;striplevel=1']) + self.assertEqual(tree, ['bar/c', 'bar/d', 'bar/subdir/e']) + + def test_local_striplevel_gzip(self): + tree = self.fetchUnpack(['file://archive.tar.gz;subdir=bar;striplevel=1']) + self.assertEqual(tree, ['bar/c', 'bar/d', 'bar/subdir/e']) + + def test_local_striplevel_bzip2(self): + tree = self.fetchUnpack(['file://archive.tar.bz2;subdir=bar;striplevel=1']) + self.assertEqual(tree, ['bar/c', 'bar/d', 'bar/subdir/e']) + + def dummyGitTest(self, suffix): + # Create dummy local Git repo + src_dir = tempfile.mkdtemp(dir=self.tempdir, + prefix='gitfetch_localusehead_') + self.gitdir = os.path.abspath(src_dir) + self.git_init() + self.git(['commit', '--allow-empty', '-m', 'Dummy commit']) + # Use other branch than master + self.git(['checkout', '-b', 'my-devel']) + self.git(['commit', '--allow-empty', '-m', 'Dummy commit 2']) + orig_rev = self.git(['rev-parse', 'HEAD']).strip() + + # Fetch and check revision + self.d.setVar("SRCREV", "AUTOINC") + self.d.setVar("__BBSEENSRCREV", "1") + url = "git://" + self.gitdir + ";branch=master;protocol=file;" + suffix + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + unpack_rev = self.git(['rev-parse', 'HEAD'], + cwd=os.path.join(self.unpackdir, 'git')).strip() + self.assertEqual(orig_rev, unpack_rev) + + def test_local_gitfetch_usehead(self): + self.dummyGitTest("usehead=1") + + def test_local_gitfetch_usehead_withname(self): + self.dummyGitTest("usehead=1;name=newName") + + def test_local_gitfetch_shared(self): + self.dummyGitTest("usehead=1;name=sharedName") + alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates') + self.assertTrue(os.path.exists(alt)) + + def test_local_gitfetch_noshared(self): + self.d.setVar('BB_GIT_NOSHARED', '1') + self.unpackdir += '_noshared' + self.dummyGitTest("usehead=1;name=noSharedName") + alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates') + self.assertFalse(os.path.exists(alt)) + +class FetcherNoNetworkTest(FetcherTest): + def setUp(self): + super().setUp() + # all test cases are based on not having network + self.d.setVar("BB_NO_NETWORK", "1") + + def test_missing(self): + string = "this is a test file\n".encode("utf-8") + self.d.setVarFlag("SRC_URI", "md5sum", hashlib.md5(string).hexdigest()) + self.d.setVarFlag("SRC_URI", "sha256sum", hashlib.sha256(string).hexdigest()) + + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/test-file.tar.gz"], self.d) + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + + def test_valid_missing_donestamp(self): + # create the file in the download directory with correct hash + string = "this is a test file\n".encode("utf-8") + with open(os.path.join(self.dldir, "test-file.tar.gz"), "wb") as f: + f.write(string) + + self.d.setVarFlag("SRC_URI", "md5sum", hashlib.md5(string).hexdigest()) + self.d.setVarFlag("SRC_URI", "sha256sum", hashlib.sha256(string).hexdigest()) + + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/test-file.tar.gz"], self.d) + fetcher.download() + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + + def test_invalid_missing_donestamp(self): + # create an invalid file in the download directory with incorrect hash + string = "this is a test file\n".encode("utf-8") + with open(os.path.join(self.dldir, "test-file.tar.gz"), "wb"): + pass + + self.d.setVarFlag("SRC_URI", "md5sum", hashlib.md5(string).hexdigest()) + self.d.setVarFlag("SRC_URI", "sha256sum", hashlib.sha256(string).hexdigest()) + + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/test-file.tar.gz"], self.d) + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + # the existing file should not exist or should have be moved to "bad-checksum" + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + + def test_nochecksums_missing(self): + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + # ssh fetch does not support checksums + fetcher = bb.fetch.Fetch(["ssh://invalid@invalid.yoctoproject.org/test-file.tar.gz"], self.d) + # attempts to download with missing donestamp + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + + def test_nochecksums_missing_donestamp(self): + # create a file in the download directory + with open(os.path.join(self.dldir, "test-file.tar.gz"), "wb"): + pass + + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + # ssh fetch does not support checksums + fetcher = bb.fetch.Fetch(["ssh://invalid@invalid.yoctoproject.org/test-file.tar.gz"], self.d) + # attempts to download with missing donestamp + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + + def test_nochecksums_has_donestamp(self): + # create a file in the download directory with the donestamp + with open(os.path.join(self.dldir, "test-file.tar.gz"), "wb"): + pass + with open(os.path.join(self.dldir, "test-file.tar.gz.done"), "wb"): + pass + + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + # ssh fetch does not support checksums + fetcher = bb.fetch.Fetch(["ssh://invalid@invalid.yoctoproject.org/test-file.tar.gz"], self.d) + # should not fetch + fetcher.download() + # both files should still exist + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + + def test_nochecksums_missing_has_donestamp(self): + # create a file in the download directory with the donestamp + with open(os.path.join(self.dldir, "test-file.tar.gz.done"), "wb"): + pass + + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertTrue(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + # ssh fetch does not support checksums + fetcher = bb.fetch.Fetch(["ssh://invalid@invalid.yoctoproject.org/test-file.tar.gz"], self.d) + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + # both files should still exist + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz"))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, "test-file.tar.gz.done"))) + +class FetcherNetworkTest(FetcherTest): + @skipIfNoNetwork() + def test_fetch(self): + fetcher = bb.fetch.Fetch(["https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", "https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.1.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.1.tar.gz"), 57892) + self.d.setVar("BB_NO_NETWORK", "1") + fetcher = bb.fetch.Fetch(["https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", "https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.1.tar.gz"], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + self.assertEqual(len(os.listdir(self.unpackdir + "/bitbake-1.0/")), 9) + self.assertEqual(len(os.listdir(self.unpackdir + "/bitbake-1.1/")), 9) + + @skipIfNoNetwork() + def test_fetch_mirror(self): + self.d.setVar("MIRRORS", "http://.*/.* https://downloads.yoctoproject.org/releases/bitbake") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def test_fetch_mirror_of_mirror(self): + self.d.setVar("MIRRORS", "http://.*/.* http://invalid2.yoctoproject.org/ http://invalid2.yoctoproject.org/.* https://downloads.yoctoproject.org/releases/bitbake") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def test_fetch_file_mirror_of_mirror(self): + self.d.setVar("MIRRORS", "http://.*/.* file:///some1where/ file:///some1where/.* file://some2where/ file://some2where/.* https://downloads.yoctoproject.org/releases/bitbake") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz"], self.d) + os.mkdir(self.dldir + "/some2where") + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def test_fetch_premirror(self): + self.d.setVar("PREMIRRORS", "http://.*/.* https://downloads.yoctoproject.org/releases/bitbake") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def test_fetch_specify_downloadfilename(self): + fetcher = bb.fetch.Fetch(["https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz;downloadfilename=bitbake-v1.0.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-v1.0.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def test_fetch_premirror_specify_downloadfilename_regex_uri(self): + self.d.setVar("PREMIRRORS", "http://.*/.* https://downloads.yoctoproject.org/releases/bitbake/") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/1.0.tar.gz;downloadfilename=bitbake-1.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + # BZ13039 + def test_fetch_premirror_specify_downloadfilename_specific_uri(self): + self.d.setVar("PREMIRRORS", "http://invalid.yoctoproject.org/releases/bitbake https://downloads.yoctoproject.org/releases/bitbake") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/1.0.tar.gz;downloadfilename=bitbake-1.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def test_fetch_premirror_use_downloadfilename_to_fetch(self): + # Ensure downloadfilename is used when fetching from premirror. + self.d.setVar("PREMIRRORS", "http://.*/.* https://downloads.yoctoproject.org/releases/bitbake") + fetcher = bb.fetch.Fetch(["http://invalid.yoctoproject.org/releases/bitbake/bitbake-1.1.tar.gz;downloadfilename=bitbake-1.0.tar.gz"], self.d) + fetcher.download() + self.assertEqual(os.path.getsize(self.dldir + "/bitbake-1.0.tar.gz"), 57749) + + @skipIfNoNetwork() + def gitfetcher(self, url1, url2): + def checkrevision(self, fetcher): + fetcher.unpack(self.unpackdir) + revision = self.git(['rev-parse', 'HEAD'], + cwd=os.path.join(self.unpackdir, 'git')).strip() + self.assertEqual(revision, "270a05b0b4ba0959fe0624d2a4885d7b70426da5") + + self.d.setVar("BB_GENERATE_MIRROR_TARBALLS", "1") + self.d.setVar("SRCREV", "270a05b0b4ba0959fe0624d2a4885d7b70426da5") + fetcher = bb.fetch.Fetch([url1], self.d) + fetcher.download() + checkrevision(self, fetcher) + # Wipe out the dldir clone and the unpacked source, turn off the network and check mirror tarball works + bb.utils.prunedir(self.dldir + "/git2/") + bb.utils.prunedir(self.unpackdir) + self.d.setVar("BB_NO_NETWORK", "1") + fetcher = bb.fetch.Fetch([url2], self.d) + fetcher.download() + checkrevision(self, fetcher) + + @skipIfNoNetwork() + def test_gitfetch(self): + url1 = url2 = "git://git.openembedded.org/bitbake;branch=master" + self.gitfetcher(url1, url2) + + @skipIfNoNetwork() + def test_gitfetch_goodsrcrev(self): + # SRCREV is set but matches rev= parameter + url1 = url2 = "git://git.openembedded.org/bitbake;rev=270a05b0b4ba0959fe0624d2a4885d7b70426da5;branch=master" + self.gitfetcher(url1, url2) + + @skipIfNoNetwork() + def test_gitfetch_badsrcrev(self): + # SRCREV is set but does not match rev= parameter + url1 = url2 = "git://git.openembedded.org/bitbake;rev=dead05b0b4ba0959fe0624d2a4885d7b70426da5;branch=master" + self.assertRaises(bb.fetch.FetchError, self.gitfetcher, url1, url2) + + @skipIfNoNetwork() + def test_gitfetch_tagandrev(self): + # SRCREV is set but does not match rev= parameter + url1 = url2 = "git://git.openembedded.org/bitbake;rev=270a05b0b4ba0959fe0624d2a4885d7b70426da5;tag=270a05b0b4ba0959fe0624d2a4885d7b70426da5" + self.assertRaises(bb.fetch.FetchError, self.gitfetcher, url1, url2) + + @skipIfNoNetwork() + def test_gitfetch_usehead(self): + # Since self.gitfetcher() sets SRCREV we expect this to override + # `usehead=1' and instead fetch the specified SRCREV. See + # test_local_gitfetch_usehead() for a positive use of the usehead + # feature. + url = "git://git.openembedded.org/bitbake;usehead=1;branch=master" + self.assertRaises(bb.fetch.ParameterError, self.gitfetcher, url, url) + + @skipIfNoNetwork() + def test_gitfetch_usehead_withname(self): + # Since self.gitfetcher() sets SRCREV we expect this to override + # `usehead=1' and instead fetch the specified SRCREV. See + # test_local_gitfetch_usehead() for a positive use of the usehead + # feature. + url = "git://git.openembedded.org/bitbake;usehead=1;name=newName;branch=master" + self.assertRaises(bb.fetch.ParameterError, self.gitfetcher, url, url) + + @skipIfNoNetwork() + def test_gitfetch_finds_local_tarball_for_mirrored_url_when_previous_downloaded_by_the_recipe_url(self): + recipeurl = "git://git.openembedded.org/bitbake;branch=master" + mirrorurl = "git://someserver.org/bitbake;branch=master" + self.d.setVar("PREMIRRORS", "git://someserver.org/bitbake git://git.openembedded.org/bitbake") + self.gitfetcher(recipeurl, mirrorurl) + + @skipIfNoNetwork() + def test_gitfetch_finds_local_tarball_when_previous_downloaded_from_a_premirror(self): + recipeurl = "git://someserver.org/bitbake;branch=master" + self.d.setVar("PREMIRRORS", "git://someserver.org/bitbake git://git.openembedded.org/bitbake") + self.gitfetcher(recipeurl, recipeurl) + + @skipIfNoNetwork() + def test_gitfetch_finds_local_repository_when_premirror_rewrites_the_recipe_url(self): + realurl = "git://git.openembedded.org/bitbake" + recipeurl = "git://someserver.org/bitbake" + self.sourcedir = self.unpackdir.replace("unpacked", "sourcemirror.git") + os.chdir(self.tempdir) + self.git(['clone', realurl, self.sourcedir], cwd=self.tempdir) + self.d.setVar("PREMIRRORS", "%s git://%s;protocol=file" % (recipeurl, self.sourcedir)) + self.gitfetcher(recipeurl, recipeurl) + + @skipIfNoNetwork() + def test_git_submodule(self): + # URL with ssh submodules + url = "gitsm://git.yoctoproject.org/git-submodule-test;branch=ssh-gitsm-tests;rev=049da4a6cb198d7c0302e9e8b243a1443cb809a7;branch=master" + # Original URL (comment this if you have ssh access to git.yoctoproject.org) + url = "gitsm://git.yoctoproject.org/git-submodule-test;branch=master;rev=a2885dd7d25380d23627e7544b7bbb55014b16ee;branch=master" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Previous cwd has been deleted + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + repo_path = os.path.join(self.tempdir, 'unpacked', 'git') + self.assertTrue(os.path.exists(repo_path), msg='Unpacked repository missing') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'bitbake')), msg='bitbake submodule missing') + self.assertFalse(os.path.exists(os.path.join(repo_path, 'na')), msg='uninitialized submodule present') + + # Only when we're running the extended test with a submodule's submodule, can we check this. + if os.path.exists(os.path.join(repo_path, 'bitbake-gitsm-test1')): + self.assertTrue(os.path.exists(os.path.join(repo_path, 'bitbake-gitsm-test1', 'bitbake')), msg='submodule of submodule missing') + + @skipIfNoNetwork() + def test_git_submodule_dbus_broker(self): + # The following external repositories have show failures in fetch and unpack operations + # We want to avoid regressions! + url = "gitsm://github.com/bus1/dbus-broker;protocol=https;rev=fc874afa0992d0c75ec25acb43d344679f0ee7d2;branch=main" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Previous cwd has been deleted + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + repo_path = os.path.join(self.tempdir, 'unpacked', 'git') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/subprojects/c-dvar/config')), msg='Missing submodule config "subprojects/c-dvar"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/subprojects/c-list/config')), msg='Missing submodule config "subprojects/c-list"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/subprojects/c-rbtree/config')), msg='Missing submodule config "subprojects/c-rbtree"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/subprojects/c-sundry/config')), msg='Missing submodule config "subprojects/c-sundry"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/subprojects/c-utf8/config')), msg='Missing submodule config "subprojects/c-utf8"') + + @skipIfNoNetwork() + def test_git_submodule_CLI11(self): + url = "gitsm://github.com/CLIUtils/CLI11;protocol=https;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf;branch=main" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Previous cwd has been deleted + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + repo_path = os.path.join(self.tempdir, 'unpacked', 'git') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/extern/googletest/config')), msg='Missing submodule config "extern/googletest"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/extern/json/config')), msg='Missing submodule config "extern/json"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/extern/sanitizers/config')), msg='Missing submodule config "extern/sanitizers"') + + @skipIfNoNetwork() + def test_git_submodule_update_CLI11(self): + """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ + url = "gitsm://github.com/CLIUtils/CLI11;protocol=https;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714;branch=main" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + + # CLI11 that pulls in a newer nlohmann-json + url = "gitsm://github.com/CLIUtils/CLI11;protocol=https;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca;branch=main" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Previous cwd has been deleted + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + repo_path = os.path.join(self.tempdir, 'unpacked', 'git') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/extern/googletest/config')), msg='Missing submodule config "extern/googletest"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/extern/json/config')), msg='Missing submodule config "extern/json"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/extern/sanitizers/config')), msg='Missing submodule config "extern/sanitizers"') + + @skipIfNoNetwork() + def test_git_submodule_aktualizr(self): + url = "gitsm://github.com/advancedtelematic/aktualizr;branch=master;protocol=https;rev=d00d1a04cc2366d1a5f143b84b9f507f8bd32c44" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Previous cwd has been deleted + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + repo_path = os.path.join(self.tempdir, 'unpacked', 'git') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/partial/extern/isotp-c/config')), msg='Missing submodule config "partial/extern/isotp-c/config"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/partial/extern/isotp-c/modules/deps/bitfield-c/config')), msg='Missing submodule config "partial/extern/isotp-c/modules/deps/bitfield-c/config"') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'partial/extern/isotp-c/deps/bitfield-c/.git')), msg="Submodule of submodule isotp-c did not unpack properly") + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/tests/tuf-test-vectors/config')), msg='Missing submodule config "tests/tuf-test-vectors/config"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/third_party/googletest/config')), msg='Missing submodule config "third_party/googletest/config"') + self.assertTrue(os.path.exists(os.path.join(repo_path, '.git/modules/third_party/HdrHistogram_c/config')), msg='Missing submodule config "third_party/HdrHistogram_c/config"') + + @skipIfNoNetwork() + def test_git_submodule_iotedge(self): + """ Prevent regression on deeply nested submodules not being checked out properly, even though they were fetched. """ + + # This repository also has submodules where the module (name), path and url do not align + url = "gitsm://github.com/azure/iotedge.git;protocol=https;rev=d76e0316c6f324345d77c48a83ce836d09392699;branch=main" + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Previous cwd has been deleted + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + repo_path = os.path.join(self.tempdir, 'unpacked', 'git') + + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/c-shared/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/c-shared/testtools/ctest/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/c-shared/testtools/testrunner/readme.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/c-shared/testtools/umock-c/readme.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/c-shared/testtools/umock-c/deps/ctest/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/c-shared/testtools/umock-c/deps/testrunner/readme.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/deps/c-utility/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/deps/c-utility/testtools/ctest/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/deps/c-utility/testtools/testrunner/readme.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/deps/c-utility/testtools/umock-c/readme.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/deps/c-utility/testtools/umock-c/deps/ctest/README.md')), msg='Missing submodule checkout') + self.assertTrue(os.path.exists(os.path.join(repo_path, 'edgelet/hsm-sys/azure-iot-hsm-c/deps/utpm/deps/c-utility/testtools/umock-c/deps/testrunner/readme.md')), msg='Missing submodule checkout') + +class SVNTest(FetcherTest): + def skipIfNoSvn(): + import shutil + if not shutil.which("svn"): + return unittest.skip("svn not installed, tests being skipped") + + if not shutil.which("svnadmin"): + return unittest.skip("svnadmin not installed, tests being skipped") + + return lambda f: f + + @skipIfNoSvn() + def setUp(self): + """ Create a local repository """ + + super(SVNTest, self).setUp() + + # Create something we can fetch + src_dir = tempfile.mkdtemp(dir=self.tempdir, + prefix='svnfetch_srcdir_') + src_dir = os.path.abspath(src_dir) + bb.process.run("echo readme > README.md", cwd=src_dir) + + # Store it in a local SVN repository + repo_dir = tempfile.mkdtemp(dir=self.tempdir, + prefix='svnfetch_localrepo_') + repo_dir = os.path.abspath(repo_dir) + bb.process.run("svnadmin create project", cwd=repo_dir) + + self.repo_url = "file://%s/project" % repo_dir + bb.process.run("svn import --non-interactive -m 'Initial import' %s %s/trunk" % (src_dir, self.repo_url), + cwd=repo_dir) + + bb.process.run("svn co %s svnfetch_co" % self.repo_url, cwd=self.tempdir) + # Github will emulate SVN. Use this to check if we're downloding... + bb.process.run("svn propset svn:externals 'bitbake https://github.com/PhilipHazel/pcre2.git' .", + cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk')) + bb.process.run("svn commit --non-interactive -m 'Add external'", + cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk')) + + self.src_dir = src_dir + self.repo_dir = repo_dir + + @skipIfNoSvn() + def tearDown(self): + os.chdir(self.origdir) + if os.environ.get("BB_TMPDIR_NOCLEAN") == "yes": + print("Not cleaning up %s. Please remove manually." % self.tempdir) + else: + bb.utils.prunedir(self.tempdir) + + @skipIfNoSvn() + @skipIfNoNetwork() + def test_noexternal_svn(self): + # Always match the rev count from setUp (currently rev 2) + url = "svn://%s;module=trunk;protocol=file;rev=2" % self.repo_url.replace('file://', '') + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'trunk')), msg="Missing trunk") + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'trunk', 'README.md')), msg="Missing contents") + self.assertFalse(os.path.exists(os.path.join(self.unpackdir, 'trunk/bitbake/trunk')), msg="External dir should NOT exist") + self.assertFalse(os.path.exists(os.path.join(self.unpackdir, 'trunk/bitbake/trunk', 'README')), msg="External README should NOT exit") + + @skipIfNoSvn() + def test_external_svn(self): + # Always match the rev count from setUp (currently rev 2) + url = "svn://%s;module=trunk;protocol=file;externals=allowed;rev=2" % self.repo_url.replace('file://', '') + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + os.chdir(os.path.dirname(self.unpackdir)) + fetcher.unpack(self.unpackdir) + + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'trunk')), msg="Missing trunk") + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'trunk', 'README.md')), msg="Missing contents") + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'trunk/bitbake/trunk')), msg="External dir should exist") + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'trunk/bitbake/trunk', 'README')), msg="External README should exit") + +class TrustedNetworksTest(FetcherTest): + def test_trusted_network(self): + # Ensure trusted_network returns False when the host IS in the list. + url = "git://Someserver.org/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "server1.org someserver.org server2.org server3.org") + self.assertTrue(bb.fetch.trusted_network(self.d, url)) + + def test_wild_trusted_network(self): + # Ensure trusted_network returns true when the *.host IS in the list. + url = "git://Someserver.org/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "server1.org *.someserver.org server2.org server3.org") + self.assertTrue(bb.fetch.trusted_network(self.d, url)) + + def test_prefix_wild_trusted_network(self): + # Ensure trusted_network returns true when the prefix matches *.host. + url = "git://git.Someserver.org/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "server1.org *.someserver.org server2.org server3.org") + self.assertTrue(bb.fetch.trusted_network(self.d, url)) + + def test_two_prefix_wild_trusted_network(self): + # Ensure trusted_network returns true when the prefix matches *.host. + url = "git://something.git.Someserver.org/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "server1.org *.someserver.org server2.org server3.org") + self.assertTrue(bb.fetch.trusted_network(self.d, url)) + + def test_port_trusted_network(self): + # Ensure trusted_network returns True, even if the url specifies a port. + url = "git://someserver.org:8080/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "someserver.org") + self.assertTrue(bb.fetch.trusted_network(self.d, url)) + + def test_untrusted_network(self): + # Ensure trusted_network returns False when the host is NOT in the list. + url = "git://someserver.org/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "server1.org server2.org server3.org") + self.assertFalse(bb.fetch.trusted_network(self.d, url)) + + def test_wild_untrusted_network(self): + # Ensure trusted_network returns False when the host is NOT in the list. + url = "git://*.someserver.org/foo;rev=1;branch=master" + self.d.setVar("BB_ALLOWED_NETWORKS", "server1.org server2.org server3.org") + self.assertFalse(bb.fetch.trusted_network(self.d, url)) + +class URLHandle(unittest.TestCase): + + datatable = { + "http://www.google.com/index.html" : ('http', 'www.google.com', '/index.html', '', '', {}), + "cvs://anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg" : ('cvs', 'cvs.handhelds.org', '/cvs', 'anoncvs', '', {'module': 'familiar/dist/ipkg'}), + "cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg" : ('cvs', 'cvs.handhelds.org', '/cvs', 'anoncvs', 'anonymous', collections.OrderedDict([('tag', 'V0-99-81'), ('module', 'familiar/dist/ipkg')])), + "git://git.openembedded.org/bitbake;branch=@foo" : ('git', 'git.openembedded.org', '/bitbake', '', '', {'branch': '@foo'}), + "file://somelocation;someparam=1": ('file', '', 'somelocation', '', '', {'someparam': '1'}), + } + # we require a pathname to encodeurl but users can still pass such urls to + # decodeurl and we need to handle them + decodedata = datatable.copy() + decodedata.update({ + "http://somesite.net;someparam=1": ('http', 'somesite.net', '/', '', '', {'someparam': '1'}), + }) + + def test_decodeurl(self): + for k, v in self.decodedata.items(): + result = bb.fetch.decodeurl(k) + self.assertEqual(result, v) + + def test_encodeurl(self): + for k, v in self.datatable.items(): + result = bb.fetch.encodeurl(v) + self.assertEqual(result, k) + +class FetchLatestVersionTest(FetcherTest): + + test_git_uris = { + # version pattern "X.Y.Z" + ("mx-1.0", "git://github.com/clutter-project/mx.git;branch=mx-1.4;protocol=https", "9b1db6b8060bd00b121a692f942404a24ae2960f", "") + : "1.99.4", + # version pattern "vX.Y" + # mirror of git.infradead.org since network issues interfered with testing + ("mtd-utils", "git://git.yoctoproject.org/mtd-utils.git;branch=master", "ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f", "") + : "1.5.0", + # version pattern "pkg_name-X.Y" + # mirror of git://anongit.freedesktop.org/git/xorg/proto/presentproto since network issues interfered with testing + ("presentproto", "git://git.yoctoproject.org/bbfetchtests-presentproto;branch=master", "24f3a56e541b0a9e6c6ee76081f441221a120ef9", "") + : "1.0", + # version pattern "pkg_name-vX.Y.Z" + ("dtc", "git://git.yoctoproject.org/bbfetchtests-dtc.git;branch=master", "65cc4d2748a2c2e6f27f1cf39e07a5dbabd80ebf", "") + : "1.4.0", + # combination version pattern + ("sysprof", "git://gitlab.gnome.org/GNOME/sysprof.git;protocol=https;branch=master", "cd44ee6644c3641507fb53b8a2a69137f2971219", "") + : "1.2.0", + ("u-boot-mkimage", "git://git.denx.de/u-boot.git;branch=master;protocol=git", "62c175fbb8a0f9a926c88294ea9f7e88eb898f6c", "") + : "2014.01", + # version pattern "yyyymmdd" + ("mobile-broadband-provider-info", "git://gitlab.gnome.org/GNOME/mobile-broadband-provider-info.git;protocol=https;branch=master", "4ed19e11c2975105b71b956440acdb25d46a347d", "") + : "20120614", + # packages with a valid UPSTREAM_CHECK_GITTAGREGEX + # mirror of git://anongit.freedesktop.org/xorg/driver/xf86-video-omap since network issues interfered with testing + ("xf86-video-omap", "git://git.yoctoproject.org/bbfetchtests-xf86-video-omap;branch=master", "ae0394e687f1a77e966cf72f895da91840dffb8f", r"(?P(\d+\.(\d\.?)*))") + : "0.4.3", + ("build-appliance-image", "git://git.yoctoproject.org/poky;branch=master", "b37dd451a52622d5b570183a81583cc34c2ff555", r"(?P(([0-9][\.|_]?)+[0-9]))") + : "11.0.0", + ("chkconfig-alternatives-native", "git://github.com/kergoth/chkconfig;branch=sysroot;protocol=https", "cd437ecbd8986c894442f8fce1e0061e20f04dee", r"chkconfig\-(?P((\d+[\.\-_]*)+))") + : "1.3.59", + ("remake", "git://github.com/rocky/remake.git;protocol=https;branch=master", "f05508e521987c8494c92d9c2871aec46307d51d", r"(?P(\d+\.(\d+\.)*\d*(\+dbg\d+(\.\d+)*)*))") + : "3.82+dbg0.9", + } + + test_wget_uris = { + # + # packages with versions inside directory name + # + # http://kernel.org/pub/linux/utils/util-linux/v2.23/util-linux-2.24.2.tar.bz2 + ("util-linux", "/pub/linux/utils/util-linux/v2.23/util-linux-2.24.2.tar.bz2", "", "") + : "2.24.2", + # http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz + ("enchant", "/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz", "", "") + : "1.6.0", + # http://www.cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz + ("cmake", "/files/v2.8/cmake-2.8.12.1.tar.gz", "", "") + : "2.8.12.1", + # + # packages with versions only in current directory + # + # https://downloads.yoctoproject.org/releases/eglibc/eglibc-2.18-svnr23787.tar.bz2 + ("eglic", "/releases/eglibc/eglibc-2.18-svnr23787.tar.bz2", "", "") + : "2.19", + # https://downloads.yoctoproject.org/releases/gnu-config/gnu-config-20120814.tar.bz2 + ("gnu-config", "/releases/gnu-config/gnu-config-20120814.tar.bz2", "", "") + : "20120814", + # + # packages with "99" in the name of possible version + # + # http://freedesktop.org/software/pulseaudio/releases/pulseaudio-4.0.tar.xz + ("pulseaudio", "/software/pulseaudio/releases/pulseaudio-4.0.tar.xz", "", "") + : "5.0", + # http://xorg.freedesktop.org/releases/individual/xserver/xorg-server-1.15.1.tar.bz2 + ("xserver-xorg", "/releases/individual/xserver/xorg-server-1.15.1.tar.bz2", "", "") + : "1.15.1", + # + # packages with valid UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX + # + # http://www.cups.org/software/1.7.2/cups-1.7.2-source.tar.bz2 + # https://github.com/apple/cups/releases + ("cups", "/software/1.7.2/cups-1.7.2-source.tar.bz2", "/apple/cups/releases", r"(?Pcups\-)(?P((\d+[\.\-_]*)+))\-source\.tar\.gz") + : "2.0.0", + # http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz + # http://ftp.debian.org/debian/pool/main/d/db5.3/ + ("db", "/berkeley-db/db-5.3.21.tar.gz", "/debian/pool/main/d/db5.3/", r"(?Pdb5\.3_)(?P\d+(\.\d+)+).+\.orig\.tar\.xz") + : "5.3.10", + # + # packages where the tarball compression changed in the new version + # + # http://ftp.debian.org/debian/pool/main/m/minicom/minicom_2.7.1.orig.tar.gz + ("minicom", "/debian/pool/main/m/minicom/minicom_2.7.1.orig.tar.gz", "", "") + : "2.8", + } + + @skipIfNoNetwork() + def test_git_latest_versionstring(self): + for k, v in self.test_git_uris.items(): + self.d.setVar("PN", k[0]) + self.d.setVar("SRCREV", k[2]) + self.d.setVar("UPSTREAM_CHECK_GITTAGREGEX", k[3]) + ud = bb.fetch2.FetchData(k[1], self.d) + pupver= ud.method.latest_versionstring(ud, self.d) + verstring = pupver[0] + self.assertTrue(verstring, msg="Could not find upstream version for %s" % k[0]) + r = bb.utils.vercmp_string(v, verstring) + self.assertTrue(r == -1 or r == 0, msg="Package %s, version: %s <= %s" % (k[0], v, verstring)) + + def test_wget_latest_versionstring(self): + testdata = os.path.dirname(os.path.abspath(__file__)) + "/fetch-testdata" + server = HTTPService(testdata) + server.start() + port = server.port + try: + for k, v in self.test_wget_uris.items(): + self.d.setVar("PN", k[0]) + checkuri = "" + if k[2]: + checkuri = "http://localhost:%s/" % port + k[2] + self.d.setVar("UPSTREAM_CHECK_URI", checkuri) + self.d.setVar("UPSTREAM_CHECK_REGEX", k[3]) + url = "http://localhost:%s/" % port + k[1] + ud = bb.fetch2.FetchData(url, self.d) + pupver = ud.method.latest_versionstring(ud, self.d) + verstring = pupver[0] + self.assertTrue(verstring, msg="Could not find upstream version for %s" % k[0]) + r = bb.utils.vercmp_string(v, verstring) + self.assertTrue(r == -1 or r == 0, msg="Package %s, version: %s <= %s" % (k[0], v, verstring)) + finally: + server.stop() + + +class FetchCheckStatusTest(FetcherTest): + test_wget_uris = ["https://downloads.yoctoproject.org/releases/sato/sato-engine-0.1.tar.gz", + "https://downloads.yoctoproject.org/releases/sato/sato-engine-0.2.tar.gz", + "https://downloads.yoctoproject.org/releases/sato/sato-engine-0.3.tar.gz", + "https://yoctoproject.org/", + "https://docs.yoctoproject.org", + "https://downloads.yoctoproject.org/releases/opkg/opkg-0.1.7.tar.gz", + "https://downloads.yoctoproject.org/releases/opkg/opkg-0.3.0.tar.gz", + "ftp://sourceware.org/pub/libffi/libffi-1.20.tar.gz", + # GitHub releases are hosted on Amazon S3, which doesn't support HEAD + "https://github.com/kergoth/tslib/releases/download/1.1/tslib-1.1.tar.xz" + ] + + @skipIfNoNetwork() + def test_wget_checkstatus(self): + fetch = bb.fetch2.Fetch(self.test_wget_uris, self.d) + for u in self.test_wget_uris: + with self.subTest(url=u): + ud = fetch.ud[u] + m = ud.method + ret = m.checkstatus(fetch, ud, self.d) + self.assertTrue(ret, msg="URI %s, can't check status" % (u)) + + @skipIfNoNetwork() + def test_wget_checkstatus_connection_cache(self): + from bb.fetch2 import FetchConnectionCache + + connection_cache = FetchConnectionCache() + fetch = bb.fetch2.Fetch(self.test_wget_uris, self.d, + connection_cache = connection_cache) + + for u in self.test_wget_uris: + with self.subTest(url=u): + ud = fetch.ud[u] + m = ud.method + ret = m.checkstatus(fetch, ud, self.d) + self.assertTrue(ret, msg="URI %s, can't check status" % (u)) + + connection_cache.close_connections() + + +class GitMakeShallowTest(FetcherTest): + def setUp(self): + FetcherTest.setUp(self) + self.gitdir = os.path.join(self.tempdir, 'gitshallow') + bb.utils.mkdirhier(self.gitdir) + self.git_init() + + def assertRefs(self, expected_refs): + actual_refs = self.git(['for-each-ref', '--format=%(refname)']).splitlines() + full_expected = self.git(['rev-parse', '--symbolic-full-name'] + expected_refs).splitlines() + self.assertEqual(sorted(full_expected), sorted(actual_refs)) + + def assertRevCount(self, expected_count, args=None): + if args is None: + args = ['HEAD'] + revs = self.git(['rev-list'] + args) + actual_count = len(revs.splitlines()) + self.assertEqual(expected_count, actual_count, msg='Object count `%d` is not the expected `%d`' % (actual_count, expected_count)) + + def make_shallow(self, args=None): + if args is None: + args = ['HEAD'] + return bb.process.run([bb.fetch2.git.Git.make_shallow_path] + args, cwd=self.gitdir) + + def add_empty_file(self, path, msg=None): + if msg is None: + msg = path + open(os.path.join(self.gitdir, path), 'w').close() + self.git(['add', path]) + self.git(['commit', '-m', msg, path]) + + def test_make_shallow_single_branch_no_merge(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2) + self.make_shallow() + self.assertRevCount(1) + + def test_make_shallow_single_branch_one_merge(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('checkout -b a_branch') + self.add_empty_file('c') + self.git('checkout master') + self.add_empty_file('d') + self.git('merge --no-ff --no-edit a_branch') + self.git('branch -d a_branch') + self.add_empty_file('e') + self.assertRevCount(6) + self.make_shallow(['HEAD~2']) + self.assertRevCount(5) + + def test_make_shallow_at_merge(self): + self.add_empty_file('a') + self.git('checkout -b a_branch') + self.add_empty_file('b') + self.git('checkout master') + self.git('merge --no-ff --no-edit a_branch') + self.git('branch -d a_branch') + self.assertRevCount(3) + self.make_shallow() + self.assertRevCount(1) + + def test_make_shallow_annotated_tag(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('tag -a -m a_tag a_tag') + self.assertRevCount(2) + self.make_shallow(['a_tag']) + self.assertRevCount(1) + + def test_make_shallow_multi_ref(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('checkout -b a_branch') + self.add_empty_file('c') + self.git('checkout master') + self.add_empty_file('d') + self.git('checkout -b a_branch_2') + self.add_empty_file('a_tag') + self.git('tag a_tag') + self.git('checkout master') + self.git('branch -D a_branch_2') + self.add_empty_file('e') + self.assertRevCount(6, ['--all']) + self.make_shallow() + self.assertRevCount(5, ['--all']) + + def test_make_shallow_multi_ref_trim(self): + self.add_empty_file('a') + self.git('checkout -b a_branch') + self.add_empty_file('c') + self.git('checkout master') + self.assertRevCount(1) + self.assertRevCount(2, ['--all']) + self.assertRefs(['master', 'a_branch']) + self.make_shallow(['-r', 'master', 'HEAD']) + self.assertRevCount(1, ['--all']) + self.assertRefs(['master']) + + def test_make_shallow_noop(self): + self.add_empty_file('a') + self.assertRevCount(1) + self.make_shallow() + self.assertRevCount(1) + + @skipIfNoNetwork() + def test_make_shallow_bitbake(self): + self.git('remote add origin https://github.com/openembedded/bitbake') + self.git('fetch --tags origin') + orig_revs = len(self.git('rev-list --all').splitlines()) + self.make_shallow(['refs/tags/1.10.0']) + self.assertRevCount(orig_revs - 1746, ['--all']) + +class GitShallowTest(FetcherTest): + def setUp(self): + FetcherTest.setUp(self) + self.gitdir = os.path.join(self.tempdir, 'git') + self.srcdir = os.path.join(self.tempdir, 'gitsource') + + bb.utils.mkdirhier(self.srcdir) + self.git_init(cwd=self.srcdir) + self.d.setVar('WORKDIR', self.tempdir) + self.d.setVar('S', self.gitdir) + self.d.delVar('PREMIRRORS') + self.d.delVar('MIRRORS') + + uri = 'git://%s;protocol=file;subdir=${S};branch=master' % self.srcdir + self.d.setVar('SRC_URI', uri) + self.d.setVar('SRCREV', '${AUTOREV}') + self.d.setVar('AUTOREV', '${@bb.fetch2.get_autorev(d)}') + + self.d.setVar('BB_GIT_SHALLOW', '1') + self.d.setVar('BB_GENERATE_MIRROR_TARBALLS', '0') + self.d.setVar('BB_GENERATE_SHALLOW_TARBALLS', '1') + self.d.setVar("__BBSEENSRCREV", "1") + + def assertRefs(self, expected_refs, cwd=None): + if cwd is None: + cwd = self.gitdir + actual_refs = self.git(['for-each-ref', '--format=%(refname)'], cwd=cwd).splitlines() + full_expected = self.git(['rev-parse', '--symbolic-full-name'] + expected_refs, cwd=cwd).splitlines() + self.assertEqual(sorted(set(full_expected)), sorted(set(actual_refs))) + + def assertRevCount(self, expected_count, args=None, cwd=None): + if args is None: + args = ['HEAD'] + if cwd is None: + cwd = self.gitdir + revs = self.git(['rev-list'] + args, cwd=cwd) + actual_count = len(revs.splitlines()) + self.assertEqual(expected_count, actual_count, msg='Object count `%d` is not the expected `%d`' % (actual_count, expected_count)) + + def add_empty_file(self, path, cwd=None, msg=None): + if msg is None: + msg = path + if cwd is None: + cwd = self.srcdir + open(os.path.join(cwd, path), 'w').close() + self.git(['add', path], cwd) + self.git(['commit', '-m', msg, path], cwd) + + def fetch(self, uri=None): + if uri is None: + uris = self.d.getVar('SRC_URI').split() + uri = uris[0] + d = self.d + else: + d = self.d.createCopy() + d.setVar('SRC_URI', uri) + uri = d.expand(uri) + uris = [uri] + + fetcher = bb.fetch2.Fetch(uris, d) + fetcher.download() + ud = fetcher.ud[uri] + return fetcher, ud + + def fetch_and_unpack(self, uri=None): + fetcher, ud = self.fetch(uri) + fetcher.unpack(self.d.getVar('WORKDIR')) + assert os.path.exists(self.d.getVar('S')) + return fetcher, ud + + def fetch_shallow(self, uri=None, disabled=False, keepclone=False): + """Fetch a uri, generating a shallow tarball, then unpack using it""" + fetcher, ud = self.fetch_and_unpack(uri) + assert os.path.exists(ud.clonedir), 'Git clone in DLDIR (%s) does not exist for uri %s' % (ud.clonedir, uri) + + # Confirm that the unpacked repo is unshallow + if not disabled: + assert os.path.exists(os.path.join(self.dldir, ud.mirrortarballs[0])) + + # fetch and unpack, from the shallow tarball + bb.utils.remove(self.gitdir, recurse=True) + bb.process.run('chmod u+w -R "%s"' % ud.clonedir) + bb.utils.remove(ud.clonedir, recurse=True) + bb.utils.remove(ud.clonedir.replace('gitsource', 'gitsubmodule'), recurse=True) + + # confirm that the unpacked repo is used when no git clone or git + # mirror tarball is available + fetcher, ud = self.fetch_and_unpack(uri) + if not disabled: + assert os.path.exists(os.path.join(self.gitdir, '.git', 'shallow')), 'Unpacked git repository at %s is not shallow' % self.gitdir + else: + assert not os.path.exists(os.path.join(self.gitdir, '.git', 'shallow')), 'Unpacked git repository at %s is shallow' % self.gitdir + return fetcher, ud + + def test_shallow_disabled(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW', '0') + self.fetch_shallow(disabled=True) + self.assertRevCount(2) + + def test_shallow_nobranch(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + srcrev = self.git('rev-parse HEAD', cwd=self.srcdir).strip() + self.d.setVar('SRCREV', srcrev) + uri = self.d.getVar('SRC_URI').split()[0] + uri = '%s;nobranch=1;bare=1' % uri + + self.fetch_shallow(uri) + self.assertRevCount(1) + + # shallow refs are used to ensure the srcrev sticks around when we + # have no other branches referencing it + self.assertRefs(['refs/shallow/default']) + + def test_shallow_default_depth_1(self): + # Create initial git repo + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + self.fetch_shallow() + self.assertRevCount(1) + + def test_shallow_depth_0_disables(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.fetch_shallow(disabled=True) + self.assertRevCount(2) + + def test_shallow_depth_default_override(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '2') + self.d.setVar('BB_GIT_SHALLOW_DEPTH_default', '1') + self.fetch_shallow() + self.assertRevCount(1) + + def test_shallow_depth_default_override_disable(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.add_empty_file('c') + self.assertRevCount(3, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_DEPTH_default', '2') + self.fetch_shallow() + self.assertRevCount(2) + + def test_current_shallow_out_of_date_clone(self): + # Create initial git repo + self.add_empty_file('a') + self.add_empty_file('b') + self.add_empty_file('c') + self.assertRevCount(3, cwd=self.srcdir) + + # Clone and generate mirror tarball + fetcher, ud = self.fetch() + + # Ensure we have a current mirror tarball, but an out of date clone + self.git('update-ref refs/heads/master refs/heads/master~1', cwd=ud.clonedir) + self.assertRevCount(2, cwd=ud.clonedir) + + # Fetch and unpack, from the current tarball, not the out of date clone + bb.utils.remove(self.gitdir, recurse=True) + fetcher, ud = self.fetch() + fetcher.unpack(self.d.getVar('WORKDIR')) + self.assertRevCount(1) + + def test_shallow_single_branch_no_merge(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + self.fetch_shallow() + self.assertRevCount(1) + assert os.path.exists(os.path.join(self.gitdir, 'a')) + assert os.path.exists(os.path.join(self.gitdir, 'b')) + + def test_shallow_no_dangling(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.assertRevCount(2, cwd=self.srcdir) + + self.fetch_shallow() + self.assertRevCount(1) + assert not self.git('fsck --dangling') + + def test_shallow_srcrev_branch_truncation(self): + self.add_empty_file('a') + self.add_empty_file('b') + b_commit = self.git('rev-parse HEAD', cwd=self.srcdir).rstrip() + self.add_empty_file('c') + self.assertRevCount(3, cwd=self.srcdir) + + self.d.setVar('SRCREV', b_commit) + self.fetch_shallow() + + # The 'c' commit was removed entirely, and 'a' was removed from history + self.assertRevCount(1, ['--all']) + self.assertEqual(self.git('rev-parse HEAD').strip(), b_commit) + assert os.path.exists(os.path.join(self.gitdir, 'a')) + assert os.path.exists(os.path.join(self.gitdir, 'b')) + assert not os.path.exists(os.path.join(self.gitdir, 'c')) + + def test_shallow_ref_pruning(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('branch a_branch', cwd=self.srcdir) + self.assertRefs(['master', 'a_branch'], cwd=self.srcdir) + self.assertRevCount(2, cwd=self.srcdir) + + self.fetch_shallow() + + self.assertRefs(['master', 'origin/master']) + self.assertRevCount(1) + + def test_shallow_submodules(self): + self.add_empty_file('a') + self.add_empty_file('b') + + smdir = os.path.join(self.tempdir, 'gitsubmodule') + bb.utils.mkdirhier(smdir) + self.git_init(cwd=smdir) + # Make this look like it was cloned from a remote... + self.git('config --add remote.origin.url "%s"' % smdir, cwd=smdir) + self.git('config --add remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"', cwd=smdir) + self.add_empty_file('asub', cwd=smdir) + self.add_empty_file('bsub', cwd=smdir) + + self.git('submodule init', cwd=self.srcdir) + self.git('-c protocol.file.allow=always submodule add file://%s' % smdir, cwd=self.srcdir) + self.git('submodule update', cwd=self.srcdir) + self.git('commit -m submodule -a', cwd=self.srcdir) + + uri = 'gitsm://%s;protocol=file;subdir=${S};branch=master' % self.srcdir + fetcher, ud = self.fetch_shallow(uri) + + # Verify the main repository is shallow + self.assertRevCount(1) + + # Verify the gitsubmodule directory is present + assert os.listdir(os.path.join(self.gitdir, 'gitsubmodule')) + + # Verify the submodule is also shallow + self.assertRevCount(1, cwd=os.path.join(self.gitdir, 'gitsubmodule')) + + def test_shallow_submodule_mirrors(self): + self.add_empty_file('a') + self.add_empty_file('b') + + smdir = os.path.join(self.tempdir, 'gitsubmodule') + bb.utils.mkdirhier(smdir) + self.git_init(cwd=smdir) + # Make this look like it was cloned from a remote... + self.git('config --add remote.origin.url "%s"' % smdir, cwd=smdir) + self.git('config --add remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"', cwd=smdir) + self.add_empty_file('asub', cwd=smdir) + self.add_empty_file('bsub', cwd=smdir) + + self.git('submodule init', cwd=self.srcdir) + self.git('-c protocol.file.allow=always submodule add file://%s' % smdir, cwd=self.srcdir) + self.git('submodule update', cwd=self.srcdir) + self.git('commit -m submodule -a', cwd=self.srcdir) + + uri = 'gitsm://%s;protocol=file;subdir=${S}' % self.srcdir + + # Fetch once to generate the shallow tarball + fetcher, ud = self.fetch(uri) + + # Set up the mirror + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.rename(self.dldir, mirrordir) + self.d.setVar('PREMIRRORS', 'gitsm://.*/.* file://%s/' % mirrordir) + + # Fetch from the mirror + bb.utils.remove(self.dldir, recurse=True) + bb.utils.remove(self.gitdir, recurse=True) + self.fetch_and_unpack(uri) + + # Verify the main repository is shallow + self.assertRevCount(1) + + # Verify the gitsubmodule directory is present + assert os.listdir(os.path.join(self.gitdir, 'gitsubmodule')) + + # Verify the submodule is also shallow + self.assertRevCount(1, cwd=os.path.join(self.gitdir, 'gitsubmodule')) + + if any(os.path.exists(os.path.join(p, 'git-annex')) for p in os.environ.get('PATH').split(':')): + def test_shallow_annex(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('annex init', cwd=self.srcdir) + open(os.path.join(self.srcdir, 'c'), 'w').close() + self.git('annex add c', cwd=self.srcdir) + self.git('commit --author "Foo Bar " -m annex-c -a', cwd=self.srcdir) + bb.process.run('chmod u+w -R %s' % self.srcdir) + + uri = 'gitannex://%s;protocol=file;subdir=${S};branch=master' % self.srcdir + fetcher, ud = self.fetch_shallow(uri) + + self.assertRevCount(1) + assert './.git/annex/' in bb.process.run('tar -tzf %s' % os.path.join(self.dldir, ud.mirrortarballs[0]))[0] + assert os.path.exists(os.path.join(self.gitdir, 'c')) + + def test_shallow_multi_one_uri(self): + # Create initial git repo + self.add_empty_file('a') + self.add_empty_file('b') + self.git('checkout -b a_branch', cwd=self.srcdir) + self.add_empty_file('c') + self.add_empty_file('d') + self.git('checkout master', cwd=self.srcdir) + self.git('tag v0.0 a_branch', cwd=self.srcdir) + self.add_empty_file('e') + self.git('merge --no-ff --no-edit a_branch', cwd=self.srcdir) + self.add_empty_file('f') + self.assertRevCount(7, cwd=self.srcdir) + + uri = self.d.getVar('SRC_URI').split()[0] + uri = '%s;branch=master,a_branch;name=master,a_branch' % uri + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_REVS', 'v0.0') + self.d.setVar('SRCREV_master', '${AUTOREV}') + self.d.setVar('SRCREV_a_branch', '${AUTOREV}') + + self.fetch_shallow(uri) + + self.assertRevCount(5) + self.assertRefs(['master', 'origin/master', 'origin/a_branch']) + + def test_shallow_multi_one_uri_depths(self): + # Create initial git repo + self.add_empty_file('a') + self.add_empty_file('b') + self.git('checkout -b a_branch', cwd=self.srcdir) + self.add_empty_file('c') + self.add_empty_file('d') + self.git('checkout master', cwd=self.srcdir) + self.add_empty_file('e') + self.git('merge --no-ff --no-edit a_branch', cwd=self.srcdir) + self.add_empty_file('f') + self.assertRevCount(7, cwd=self.srcdir) + + uri = self.d.getVar('SRC_URI').split()[0] + uri = '%s;branch=master,a_branch;name=master,a_branch' % uri + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_DEPTH_master', '3') + self.d.setVar('BB_GIT_SHALLOW_DEPTH_a_branch', '1') + self.d.setVar('SRCREV_master', '${AUTOREV}') + self.d.setVar('SRCREV_a_branch', '${AUTOREV}') + + self.fetch_shallow(uri) + + self.assertRevCount(4, ['--all']) + self.assertRefs(['master', 'origin/master', 'origin/a_branch']) + + def test_shallow_clone_preferred_over_shallow(self): + self.add_empty_file('a') + self.add_empty_file('b') + + # Fetch once to generate the shallow tarball + fetcher, ud = self.fetch() + assert os.path.exists(os.path.join(self.dldir, ud.mirrortarballs[0])) + + # Fetch and unpack with both the clonedir and shallow tarball available + bb.utils.remove(self.gitdir, recurse=True) + fetcher, ud = self.fetch_and_unpack() + + # The unpacked tree should *not* be shallow + self.assertRevCount(2) + assert not os.path.exists(os.path.join(self.gitdir, '.git', 'shallow')) + + def test_shallow_mirrors(self): + self.add_empty_file('a') + self.add_empty_file('b') + + # Fetch once to generate the shallow tarball + fetcher, ud = self.fetch() + mirrortarball = ud.mirrortarballs[0] + assert os.path.exists(os.path.join(self.dldir, mirrortarball)) + + # Set up the mirror + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.mkdirhier(mirrordir) + self.d.setVar('PREMIRRORS', 'git://.*/.* file://%s/' % mirrordir) + + bb.utils.rename(os.path.join(self.dldir, mirrortarball), + os.path.join(mirrordir, mirrortarball)) + + # Fetch from the mirror + bb.utils.remove(self.dldir, recurse=True) + bb.utils.remove(self.gitdir, recurse=True) + self.fetch_and_unpack() + self.assertRevCount(1) + + def test_shallow_invalid_depth(self): + self.add_empty_file('a') + self.add_empty_file('b') + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '-12') + with self.assertRaises(bb.fetch2.FetchError): + self.fetch() + + def test_shallow_invalid_depth_default(self): + self.add_empty_file('a') + self.add_empty_file('b') + + self.d.setVar('BB_GIT_SHALLOW_DEPTH_default', '-12') + with self.assertRaises(bb.fetch2.FetchError): + self.fetch() + + def test_shallow_extra_refs(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('branch a_branch', cwd=self.srcdir) + self.assertRefs(['master', 'a_branch'], cwd=self.srcdir) + self.assertRevCount(2, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_EXTRA_REFS', 'refs/heads/a_branch') + self.fetch_shallow() + + self.assertRefs(['master', 'origin/master', 'origin/a_branch']) + self.assertRevCount(1) + + def test_shallow_extra_refs_wildcard(self): + self.add_empty_file('a') + self.add_empty_file('b') + self.git('branch a_branch', cwd=self.srcdir) + self.git('tag v1.0', cwd=self.srcdir) + self.assertRefs(['master', 'a_branch', 'v1.0'], cwd=self.srcdir) + self.assertRevCount(2, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_EXTRA_REFS', 'refs/tags/*') + self.fetch_shallow() + + self.assertRefs(['master', 'origin/master', 'v1.0']) + self.assertRevCount(1) + + def test_shallow_missing_extra_refs(self): + self.add_empty_file('a') + self.add_empty_file('b') + + self.d.setVar('BB_GIT_SHALLOW_EXTRA_REFS', 'refs/heads/foo') + with self.assertRaises(bb.fetch2.FetchError): + self.fetch() + + def test_shallow_missing_extra_refs_wildcard(self): + self.add_empty_file('a') + self.add_empty_file('b') + + self.d.setVar('BB_GIT_SHALLOW_EXTRA_REFS', 'refs/tags/*') + self.fetch() + + def test_shallow_remove_revs(self): + # Create initial git repo + self.add_empty_file('a') + self.add_empty_file('b') + self.git('checkout -b a_branch', cwd=self.srcdir) + self.add_empty_file('c') + self.add_empty_file('d') + self.git('checkout master', cwd=self.srcdir) + self.git('tag v0.0 a_branch', cwd=self.srcdir) + self.add_empty_file('e') + self.git('merge --no-ff --no-edit a_branch', cwd=self.srcdir) + self.git('branch -d a_branch', cwd=self.srcdir) + self.add_empty_file('f') + self.assertRevCount(7, cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_REVS', 'v0.0') + + self.fetch_shallow() + + self.assertRevCount(5) + + def test_shallow_invalid_revs(self): + self.add_empty_file('a') + self.add_empty_file('b') + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_REVS', 'v0.0') + + with self.assertRaises(bb.fetch2.FetchError): + self.fetch() + + def test_shallow_fetch_missing_revs(self): + self.add_empty_file('a') + self.add_empty_file('b') + fetcher, ud = self.fetch(self.d.getVar('SRC_URI')) + self.git('tag v0.0 master', cwd=self.srcdir) + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_REVS', 'v0.0') + self.fetch_shallow() + + def test_shallow_fetch_missing_revs_fails(self): + self.add_empty_file('a') + self.add_empty_file('b') + fetcher, ud = self.fetch(self.d.getVar('SRC_URI')) + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + self.d.setVar('BB_GIT_SHALLOW_REVS', 'v0.0') + + with self.assertRaises(bb.fetch2.FetchError), self.assertLogs("BitBake.Fetcher", level="ERROR") as cm: + self.fetch_shallow() + self.assertIn("Unable to find revision v0.0 even from upstream", cm.output[0]) + + @skipIfNoNetwork() + def test_bitbake(self): + self.git('remote add --mirror=fetch origin https://github.com/openembedded/bitbake', cwd=self.srcdir) + self.git('config core.bare true', cwd=self.srcdir) + self.git('fetch', cwd=self.srcdir) + + self.d.setVar('BB_GIT_SHALLOW_DEPTH', '0') + # Note that the 1.10.0 tag is annotated, so this also tests + # reference of an annotated vs unannotated tag + self.d.setVar('BB_GIT_SHALLOW_REVS', '1.10.0') + + self.fetch_shallow() + + # Confirm that the history of 1.10.0 was removed + orig_revs = len(self.git('rev-list master', cwd=self.srcdir).splitlines()) + revs = len(self.git('rev-list master').splitlines()) + self.assertNotEqual(orig_revs, revs) + self.assertRefs(['master', 'origin/master']) + self.assertRevCount(orig_revs - 1758) + + def test_that_unpack_throws_an_error_when_the_git_clone_nor_shallow_tarball_exist(self): + self.add_empty_file('a') + fetcher, ud = self.fetch() + bb.utils.remove(self.gitdir, recurse=True) + bb.utils.remove(self.dldir, recurse=True) + + with self.assertRaises(bb.fetch2.UnpackError) as context: + fetcher.unpack(self.d.getVar('WORKDIR')) + + self.assertIn("No up to date source found", context.exception.msg) + self.assertIn("clone directory not available or not up to date", context.exception.msg) + + @skipIfNoNetwork() + def test_that_unpack_does_work_when_using_git_shallow_tarball_but_tarball_is_not_available(self): + self.d.setVar('SRCREV', 'e5939ff608b95cdd4d0ab0e1935781ab9a276ac0') + self.d.setVar('BB_GIT_SHALLOW', '1') + self.d.setVar('BB_GENERATE_SHALLOW_TARBALLS', '1') + fetcher = bb.fetch.Fetch(["git://git.yoctoproject.org/fstests;branch=master"], self.d) + fetcher.download() + + bb.utils.remove(self.dldir + "/*.tar.gz") + fetcher.unpack(self.unpackdir) + + dir = os.listdir(self.unpackdir + "/git/") + self.assertIn("fstests.doap", dir) + +class GitLfsTest(FetcherTest): + def setUp(self): + FetcherTest.setUp(self) + + self.gitdir = os.path.join(self.tempdir, 'git') + self.srcdir = os.path.join(self.tempdir, 'gitsource') + + self.d.setVar('WORKDIR', self.tempdir) + self.d.setVar('S', self.gitdir) + self.d.delVar('PREMIRRORS') + self.d.delVar('MIRRORS') + + self.d.setVar('SRCREV', '${AUTOREV}') + self.d.setVar('AUTOREV', '${@bb.fetch2.get_autorev(d)}') + self.d.setVar("__BBSEENSRCREV", "1") + + bb.utils.mkdirhier(self.srcdir) + self.git_init(cwd=self.srcdir) + with open(os.path.join(self.srcdir, '.gitattributes'), 'wt') as attrs: + attrs.write('*.mp3 filter=lfs -text') + self.git(['add', '.gitattributes'], cwd=self.srcdir) + self.git(['commit', '-m', "attributes", '.gitattributes'], cwd=self.srcdir) + + def fetch(self, uri=None, download=True): + uris = self.d.getVar('SRC_URI').split() + uri = uris[0] + d = self.d + + fetcher = bb.fetch2.Fetch(uris, d) + if download: + fetcher.download() + ud = fetcher.ud[uri] + return fetcher, ud + + def test_lfs_enabled(self): + import shutil + + uri = 'git://%s;protocol=file;lfs=1;branch=master' % self.srcdir + self.d.setVar('SRC_URI', uri) + + # Careful: suppress initial attempt at downloading until + # we know whether git-lfs is installed. + fetcher, ud = self.fetch(uri=None, download=False) + self.assertIsNotNone(ud.method._find_git_lfs) + + # If git-lfs can be found, the unpack should be successful. Only + # attempt this with the real live copy of git-lfs installed. + if ud.method._find_git_lfs(self.d): + fetcher.download() + shutil.rmtree(self.gitdir, ignore_errors=True) + fetcher.unpack(self.d.getVar('WORKDIR')) + + # If git-lfs cannot be found, the unpack should throw an error + with self.assertRaises(bb.fetch2.FetchError): + fetcher.download() + ud.method._find_git_lfs = lambda d: False + shutil.rmtree(self.gitdir, ignore_errors=True) + fetcher.unpack(self.d.getVar('WORKDIR')) + + def test_lfs_disabled(self): + import shutil + + uri = 'git://%s;protocol=file;lfs=0;branch=master' % self.srcdir + self.d.setVar('SRC_URI', uri) + + # In contrast to test_lfs_enabled(), allow the implicit download + # done by self.fetch() to occur here. The point of this test case + # is to verify that the fetcher can survive even if the source + # repository has Git LFS usage configured. + fetcher, ud = self.fetch() + self.assertIsNotNone(ud.method._find_git_lfs) + + # If git-lfs can be found, the unpack should be successful. A + # live copy of git-lfs is not required for this case, so + # unconditionally forge its presence. + ud.method._find_git_lfs = lambda d: True + shutil.rmtree(self.gitdir, ignore_errors=True) + fetcher.unpack(self.d.getVar('WORKDIR')) + + # If git-lfs cannot be found, the unpack should be successful + ud.method._find_git_lfs = lambda d: False + shutil.rmtree(self.gitdir, ignore_errors=True) + fetcher.unpack(self.d.getVar('WORKDIR')) + +class GitURLWithSpacesTest(FetcherTest): + test_git_urls = { + "git://tfs-example.org:22/tfs/example%20path/example.git;branch=master" : { + 'url': 'git://tfs-example.org:22/tfs/example%20path/example.git;branch=master', + 'gitsrcname': 'tfs-example.org.22.tfs.example_path.example.git', + 'path': '/tfs/example path/example.git' + }, + "git://tfs-example.org:22/tfs/example%20path/example%20repo.git;branch=master" : { + 'url': 'git://tfs-example.org:22/tfs/example%20path/example%20repo.git;branch=master', + 'gitsrcname': 'tfs-example.org.22.tfs.example_path.example_repo.git', + 'path': '/tfs/example path/example repo.git' + } + } + + def test_urls(self): + + # Set fake SRCREV to stop git fetcher from trying to contact non-existent git repo + self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40') + + for test_git_url, ref in self.test_git_urls.items(): + + fetcher = bb.fetch.Fetch([test_git_url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + + self.assertEqual(ud.url, ref['url']) + self.assertEqual(ud.path, ref['path']) + self.assertEqual(ud.localfile, os.path.join(self.dldir, "git2", ref['gitsrcname'])) + self.assertEqual(ud.localpath, os.path.join(self.dldir, "git2", ref['gitsrcname'])) + self.assertEqual(ud.lockfile, os.path.join(self.dldir, "git2", ref['gitsrcname'] + '.lock')) + self.assertEqual(ud.clonedir, os.path.join(self.dldir, "git2", ref['gitsrcname'])) + self.assertEqual(ud.fullmirror, os.path.join(self.dldir, "git2_" + ref['gitsrcname'] + '.tar.gz')) + +class CrateTest(FetcherTest): + @skipIfNoNetwork() + def test_crate_url(self): + + uri = "crate://crates.io/glob/0.2.11" + self.d.setVar('SRC_URI', uri) + + uris = self.d.getVar('SRC_URI').split() + d = self.d + + fetcher = bb.fetch2.Fetch(uris, self.d) + fetcher.download() + fetcher.unpack(self.tempdir) + self.assertEqual(sorted(os.listdir(self.tempdir)), ['cargo_home', 'download' , 'unpacked']) + self.assertEqual(sorted(os.listdir(self.tempdir + "/download")), ['glob-0.2.11.crate', 'glob-0.2.11.crate.done']) + self.assertTrue(os.path.exists(self.tempdir + "/cargo_home/bitbake/glob-0.2.11/.cargo-checksum.json")) + self.assertTrue(os.path.exists(self.tempdir + "/cargo_home/bitbake/glob-0.2.11/src/lib.rs")) + + @skipIfNoNetwork() + def test_crate_url_multi(self): + + uri = "crate://crates.io/glob/0.2.11 crate://crates.io/time/0.1.35" + self.d.setVar('SRC_URI', uri) + + uris = self.d.getVar('SRC_URI').split() + d = self.d + + fetcher = bb.fetch2.Fetch(uris, self.d) + fetcher.download() + fetcher.unpack(self.tempdir) + self.assertEqual(sorted(os.listdir(self.tempdir)), ['cargo_home', 'download' , 'unpacked']) + self.assertEqual(sorted(os.listdir(self.tempdir + "/download")), ['glob-0.2.11.crate', 'glob-0.2.11.crate.done', 'time-0.1.35.crate', 'time-0.1.35.crate.done']) + self.assertTrue(os.path.exists(self.tempdir + "/cargo_home/bitbake/glob-0.2.11/.cargo-checksum.json")) + self.assertTrue(os.path.exists(self.tempdir + "/cargo_home/bitbake/glob-0.2.11/src/lib.rs")) + self.assertTrue(os.path.exists(self.tempdir + "/cargo_home/bitbake/time-0.1.35/.cargo-checksum.json")) + self.assertTrue(os.path.exists(self.tempdir + "/cargo_home/bitbake/time-0.1.35/src/lib.rs")) + +class NPMTest(FetcherTest): + def skipIfNoNpm(): + import shutil + if not shutil.which('npm'): + return unittest.skip('npm not installed') + return lambda f: f + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + fetcher = bb.fetch.Fetch([url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + self.assertTrue(os.path.exists(ud.localpath + '.done')) + self.assertTrue(os.path.exists(ud.resolvefile)) + fetcher.unpack(self.unpackdir) + unpackdir = os.path.join(self.unpackdir, 'npm') + self.assertTrue(os.path.exists(os.path.join(unpackdir, 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_bad_checksum(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch([url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + # Modify the tarball + bad = b'bad checksum' + with open(ud.localpath, 'wb') as f: + f.write(bad) + # Verify that the tarball is fetched again + fetcher.download() + badsum = hashlib.sha512(bad).hexdigest() + self.assertTrue(os.path.exists(ud.localpath + '_bad-checksum_' + badsum)) + self.assertTrue(os.path.exists(ud.localpath)) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_premirrors(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch([url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + + # Setup the mirror by renaming the download directory + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.rename(self.dldir, mirrordir) + os.mkdir(self.dldir) + + # Configure the premirror to be used + self.d.setVar('PREMIRRORS', 'https?$://.*/.* file://%s/npm2' % mirrordir) + self.d.setVar('BB_FETCH_PREMIRRORONLY', '1') + + # Fetch again + self.assertFalse(os.path.exists(ud.localpath)) + # The npm fetcher doesn't handle that the .resolved file disappears + # while the fetcher object exists, which it does when we rename the + # download directory to "mirror" above. Thus we need a new fetcher to go + # with the now empty download directory. + fetcher = bb.fetch.Fetch([url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_premirrors_with_specified_filename(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch([url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + # Setup the mirror + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.mkdirhier(mirrordir) + mirrorfilename = os.path.join(mirrordir, os.path.basename(ud.localpath)) + os.replace(ud.localpath, mirrorfilename) + self.d.setVar('PREMIRRORS', 'https?$://.*/.* file://%s' % mirrorfilename) + self.d.setVar('BB_FETCH_PREMIRRORONLY', '1') + # Fetch again + self.assertFalse(os.path.exists(ud.localpath)) + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_mirrors(self): + # Fetch once to get a tarball + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + fetcher = bb.fetch.Fetch([url], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + # Setup the mirror + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.mkdirhier(mirrordir) + os.replace(ud.localpath, os.path.join(mirrordir, os.path.basename(ud.localpath))) + self.d.setVar('MIRRORS', 'https?$://.*/.* file://%s/' % mirrordir) + # Update the resolved url to an invalid url + with open(ud.resolvefile, 'r') as f: + url = f.read() + uri = URI(url) + uri.path = '/invalid' + with open(ud.resolvefile, 'w') as f: + f.write(str(uri)) + # Fetch again + self.assertFalse(os.path.exists(ud.localpath)) + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_destsuffix_downloadfilename(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0;destsuffix=foo/bar;downloadfilename=foo-bar.tgz' + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'npm2', 'foo-bar.tgz'))) + fetcher.unpack(self.unpackdir) + unpackdir = os.path.join(self.unpackdir, 'foo', 'bar') + self.assertTrue(os.path.exists(os.path.join(unpackdir, 'package.json'))) + + def test_npm_no_network_no_tarball(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + self.d.setVar('BB_NO_NETWORK', '1') + fetcher = bb.fetch.Fetch([url], self.d) + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_no_network_with_tarball(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + # Disable network access + self.d.setVar('BB_NO_NETWORK', '1') + # Fetch again + fetcher.download() + fetcher.unpack(self.unpackdir) + unpackdir = os.path.join(self.unpackdir, 'npm') + self.assertTrue(os.path.exists(os.path.join(unpackdir, 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_registry_alternate(self): + url = 'npm://skimdb.npmjs.com;package=@savoirfairelinux/node-server-example;version=1.0.0' + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + unpackdir = os.path.join(self.unpackdir, 'npm') + self.assertTrue(os.path.exists(os.path.join(unpackdir, 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_version_latest(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=latest' + fetcher = bb.fetch.Fetch([url], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + unpackdir = os.path.join(self.unpackdir, 'npm') + self.assertTrue(os.path.exists(os.path.join(unpackdir, 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_registry_invalid(self): + url = 'npm://registry.invalid.org;package=@savoirfairelinux/node-server-example;version=1.0.0' + fetcher = bb.fetch.Fetch([url], self.d) + with self.assertRaises(bb.fetch2.FetchError): + fetcher.download() + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_package_invalid(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/invalid;version=1.0.0' + fetcher = bb.fetch.Fetch([url], self.d) + with self.assertRaises(bb.fetch2.FetchError): + fetcher.download() + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_version_invalid(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=invalid' + with self.assertRaises(bb.fetch2.ParameterError): + fetcher = bb.fetch.Fetch([url], self.d) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_registry_none(self): + url = 'npm://;package=@savoirfairelinux/node-server-example;version=1.0.0' + with self.assertRaises(bb.fetch2.MalformedUrl): + fetcher = bb.fetch.Fetch([url], self.d) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_package_none(self): + url = 'npm://registry.npmjs.org;version=1.0.0' + with self.assertRaises(bb.fetch2.MissingParameterError): + fetcher = bb.fetch.Fetch([url], self.d) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npm_version_none(self): + url = 'npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example' + with self.assertRaises(bb.fetch2.MissingParameterError): + fetcher = bb.fetch.Fetch([url], self.d) + + def create_shrinkwrap_file(self, data): + import json + datadir = os.path.join(self.tempdir, 'data') + swfile = os.path.join(datadir, 'npm-shrinkwrap.json') + bb.utils.mkdirhier(datadir) + with open(swfile, 'w') as f: + json.dump(data, f) + # Also configure the S directory + self.sdir = os.path.join(self.unpackdir, 'S') + self.d.setVar('S', self.sdir) + return swfile + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw(self): + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=', + 'dependencies': { + 'content-type': { + 'version': 'https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz', + 'integrity': 'sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==', + 'dependencies': { + 'cookie': { + 'version': 'git+https://github.com/jshttp/cookie.git#aec1177c7da67e3b3273df96cf476824dbc9ae09', + 'from': 'git+https://github.com/jshttp/cookie.git' + } + } + } + } + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'npm2', 'array-flatten-1.1.1.tgz'))) + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'npm2', 'content-type-1.0.4.tgz'))) + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'git2', 'github.com.jshttp.cookie.git'))) + fetcher.unpack(self.unpackdir) + self.assertTrue(os.path.exists(os.path.join(self.sdir, 'npm-shrinkwrap.json'))) + self.assertTrue(os.path.exists(os.path.join(self.sdir, 'node_modules', 'array-flatten', 'package.json'))) + self.assertTrue(os.path.exists(os.path.join(self.sdir, 'node_modules', 'array-flatten', 'node_modules', 'content-type', 'package.json'))) + self.assertTrue(os.path.exists(os.path.join(self.sdir, 'node_modules', 'array-flatten', 'node_modules', 'content-type', 'node_modules', 'cookie', 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_dev(self): + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + }, + 'content-type': { + 'version': '1.0.4', + 'resolved': 'https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz', + 'integrity': 'sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==', + 'dev': True + } + } + }) + # Fetch with dev disabled + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'npm2', 'array-flatten-1.1.1.tgz'))) + self.assertFalse(os.path.exists(os.path.join(self.dldir, 'npm2', 'content-type-1.0.4.tgz'))) + # Fetch with dev enabled + fetcher = bb.fetch.Fetch(['npmsw://' + swfile + ';dev=1'], self.d) + fetcher.download() + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'npm2', 'array-flatten-1.1.1.tgz'))) + self.assertTrue(os.path.exists(os.path.join(self.dldir, 'npm2', 'content-type-1.0.4.tgz'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_destsuffix(self): + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile + ';destsuffix=foo/bar'], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'foo', 'bar', 'node_modules', 'array-flatten', 'package.json'))) + + def test_npmsw_no_network_no_tarball(self): + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + self.d.setVar('BB_NO_NETWORK', '1') + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + with self.assertRaises(bb.fetch2.NetworkAccess): + fetcher.download() + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_no_network_with_tarball(self): + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch(['npm://registry.npmjs.org;package=array-flatten;version=1.1.1'], self.d) + fetcher.download() + # Disable network access + self.d.setVar('BB_NO_NETWORK', '1') + # Fetch again + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + self.assertTrue(os.path.exists(os.path.join(self.sdir, 'node_modules', 'array-flatten', 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_npm_reusability(self): + # Fetch once with npmsw + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + # Disable network access + self.d.setVar('BB_NO_NETWORK', '1') + # Fetch again with npm + fetcher = bb.fetch.Fetch(['npm://registry.npmjs.org;package=array-flatten;version=1.1.1'], self.d) + fetcher.download() + fetcher.unpack(self.unpackdir) + self.assertTrue(os.path.exists(os.path.join(self.unpackdir, 'npm', 'package.json'))) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_bad_checksum(self): + # Try to fetch with bad checksum + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-gfNEp2hqgLTFKT6P3AsBYMgsBqg=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + with self.assertRaises(bb.fetch2.FetchError): + fetcher.download() + # Fetch correctly to get a tarball + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + localpath = os.path.join(self.dldir, 'npm2', 'array-flatten-1.1.1.tgz') + self.assertTrue(os.path.exists(localpath)) + # Modify the tarball + bad = b'bad checksum' + with open(localpath, 'wb') as f: + f.write(bad) + # Verify that the tarball is fetched again + fetcher.download() + badsum = hashlib.sha1(bad).hexdigest() + self.assertTrue(os.path.exists(localpath + '_bad-checksum_' + badsum)) + self.assertTrue(os.path.exists(localpath)) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_premirrors(self): + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch(['npm://registry.npmjs.org;package=array-flatten;version=1.1.1'], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + # Setup the mirror + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.mkdirhier(mirrordir) + os.replace(ud.localpath, os.path.join(mirrordir, os.path.basename(ud.localpath))) + self.d.setVar('PREMIRRORS', 'https?$://.*/.* file://%s/' % mirrordir) + self.d.setVar('BB_FETCH_PREMIRRORONLY', '1') + # Fetch again + self.assertFalse(os.path.exists(ud.localpath)) + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + + @skipIfNoNpm() + @skipIfNoNetwork() + def test_npmsw_mirrors(self): + # Fetch once to get a tarball + fetcher = bb.fetch.Fetch(['npm://registry.npmjs.org;package=array-flatten;version=1.1.1'], self.d) + ud = fetcher.ud[fetcher.urls[0]] + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + # Setup the mirror + mirrordir = os.path.join(self.tempdir, 'mirror') + bb.utils.mkdirhier(mirrordir) + os.replace(ud.localpath, os.path.join(mirrordir, os.path.basename(ud.localpath))) + self.d.setVar('MIRRORS', 'https?$://.*/.* file://%s/' % mirrordir) + # Fetch again with invalid url + self.assertFalse(os.path.exists(ud.localpath)) + swfile = self.create_shrinkwrap_file({ + 'dependencies': { + 'array-flatten': { + 'version': '1.1.1', + 'resolved': 'https://invalid', + 'integrity': 'sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=' + } + } + }) + fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d) + fetcher.download() + self.assertTrue(os.path.exists(ud.localpath)) + +class GitSharedTest(FetcherTest): + def setUp(self): + super(GitSharedTest, self).setUp() + self.recipe_url = "git://git.openembedded.org/bitbake;branch=master" + self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40') + self.d.setVar("__BBSEENSRCREV", "1") + + @skipIfNoNetwork() + def test_shared_unpack(self): + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + fetcher.unpack(self.unpackdir) + alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates') + self.assertTrue(os.path.exists(alt)) + + @skipIfNoNetwork() + def test_noshared_unpack(self): + self.d.setVar('BB_GIT_NOSHARED', '1') + self.unpackdir += '_noshared' + fetcher = bb.fetch.Fetch([self.recipe_url], self.d) + + fetcher.download() + fetcher.unpack(self.unpackdir) + alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates') + self.assertFalse(os.path.exists(alt)) diff --git a/poky/bitbake/lib/bb/tests/parse.py b/poky/bitbake/lib/bb/tests/parse.py new file mode 100644 index 0000000..1a3b749 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/parse.py @@ -0,0 +1,219 @@ +# +# BitBake Test for lib/bb/parse/ +# +# Copyright (C) 2015 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import tempfile +import logging +import bb +import os + +logger = logging.getLogger('BitBake.TestParse') + +import bb.parse +import bb.data +import bb.siggen + +class ParseTest(unittest.TestCase): + + testfile = """ +A = "1" +B = "2" +do_install() { + echo "hello" +} + +C = "3" +""" + + def setUp(self): + self.origdir = os.getcwd() + self.d = bb.data.init() + bb.parse.siggen = bb.siggen.init(self.d) + + def tearDown(self): + os.chdir(self.origdir) + + def parsehelper(self, content, suffix = ".bb"): + + f = tempfile.NamedTemporaryFile(suffix = suffix) + f.write(bytes(content, "utf-8")) + f.flush() + os.chdir(os.path.dirname(f.name)) + return f + + def test_parse_simple(self): + f = self.parsehelper(self.testfile) + d = bb.parse.handle(f.name, self.d)[''] + self.assertEqual(d.getVar("A"), "1") + self.assertEqual(d.getVar("B"), "2") + self.assertEqual(d.getVar("C"), "3") + + def test_parse_incomplete_function(self): + testfileB = self.testfile.replace("}", "") + f = self.parsehelper(testfileB) + with self.assertRaises(bb.parse.ParseError): + d = bb.parse.handle(f.name, self.d)[''] + + unsettest = """ +A = "1" +B = "2" +B[flag] = "3" + +unset A +unset B[flag] +""" + + def test_parse_unset(self): + f = self.parsehelper(self.unsettest) + d = bb.parse.handle(f.name, self.d)[''] + self.assertEqual(d.getVar("A"), None) + self.assertEqual(d.getVarFlag("A","flag"), None) + self.assertEqual(d.getVar("B"), "2") + + exporttest = """ +A = "a" +export B = "b" +export C +exportD = "d" +""" + + def test_parse_exports(self): + f = self.parsehelper(self.exporttest) + d = bb.parse.handle(f.name, self.d)[''] + self.assertEqual(d.getVar("A"), "a") + self.assertIsNone(d.getVarFlag("A", "export")) + self.assertEqual(d.getVar("B"), "b") + self.assertEqual(d.getVarFlag("B", "export"), 1) + self.assertIsNone(d.getVar("C")) + self.assertEqual(d.getVarFlag("C", "export"), 1) + self.assertIsNone(d.getVar("D")) + self.assertIsNone(d.getVarFlag("D", "export")) + self.assertEqual(d.getVar("exportD"), "d") + self.assertIsNone(d.getVarFlag("exportD", "export")) + + + overridetest = """ +RRECOMMENDS:${PN} = "a" +RRECOMMENDS:${PN}:libc = "b" +OVERRIDES = "libc:${PN}" +PN = "gtk+" +""" + + def test_parse_overrides(self): + f = self.parsehelper(self.overridetest) + d = bb.parse.handle(f.name, self.d)[''] + self.assertEqual(d.getVar("RRECOMMENDS"), "b") + bb.data.expandKeys(d) + self.assertEqual(d.getVar("RRECOMMENDS"), "b") + d.setVar("RRECOMMENDS:gtk+", "c") + self.assertEqual(d.getVar("RRECOMMENDS"), "c") + + overridetest2 = """ +EXTRA_OECONF = "" +EXTRA_OECONF:class-target = "b" +EXTRA_OECONF:append = " c" +""" + + def test_parse_overrides2(self): + f = self.parsehelper(self.overridetest2) + d = bb.parse.handle(f.name, self.d)[''] + d.appendVar("EXTRA_OECONF", " d") + d.setVar("OVERRIDES", "class-target") + self.assertEqual(d.getVar("EXTRA_OECONF"), "b c d") + + overridetest3 = """ +DESCRIPTION = "A" +DESCRIPTION:${PN}-dev = "${DESCRIPTION} B" +PN = "bc" +""" + + def test_parse_combinations(self): + f = self.parsehelper(self.overridetest3) + d = bb.parse.handle(f.name, self.d)[''] + bb.data.expandKeys(d) + self.assertEqual(d.getVar("DESCRIPTION:bc-dev"), "A B") + d.setVar("DESCRIPTION", "E") + d.setVar("DESCRIPTION:bc-dev", "C D") + d.setVar("OVERRIDES", "bc-dev") + self.assertEqual(d.getVar("DESCRIPTION"), "C D") + + + classextend = """ +VAR_var:override1 = "B" +EXTRA = ":override1" +OVERRIDES = "nothing${EXTRA}" + +BBCLASSEXTEND = "###CLASS###" +""" + classextend_bbclass = """ +EXTRA = "" +python () { + d.renameVar("VAR_var", "VAR_var2") +} +""" + + # + # Test based upon a real world data corruption issue. One + # data store changing a variable poked through into a different data + # store. This test case replicates that issue where the value 'B' would + # become unset/disappear. + # + def test_parse_classextend_contamination(self): + cls = self.parsehelper(self.classextend_bbclass, suffix=".bbclass") + #clsname = os.path.basename(cls.name).replace(".bbclass", "") + self.classextend = self.classextend.replace("###CLASS###", cls.name) + f = self.parsehelper(self.classextend) + alldata = bb.parse.handle(f.name, self.d) + d1 = alldata[''] + d2 = alldata[cls.name] + self.assertEqual(d1.getVar("VAR_var"), "B") + self.assertEqual(d2.getVar("VAR_var"), None) + + addtask_deltask = """ +addtask do_patch after do_foo after do_unpack before do_configure before do_compile +addtask do_fetch do_patch + +MYVAR = "do_patch" +EMPTYVAR = "" +deltask do_fetch ${MYVAR} ${EMPTYVAR} +deltask ${EMPTYVAR} +""" + def test_parse_addtask_deltask(self): + import sys + f = self.parsehelper(self.addtask_deltask) + d = bb.parse.handle(f.name, self.d)[''] + + stdout = sys.stdout.getvalue() + self.assertTrue("addtask contained multiple 'before' keywords" in stdout) + self.assertTrue("addtask contained multiple 'after' keywords" in stdout) + self.assertTrue('addtask ignored: " do_patch"' in stdout) + #self.assertTrue('dependent task do_foo for do_patch does not exist' in stdout) + + broken_multiline_comment = """ +# First line of comment \\ +# Second line of comment \\ + +""" + def test_parse_broken_multiline_comment(self): + f = self.parsehelper(self.broken_multiline_comment) + with self.assertRaises(bb.BBHandledException): + d = bb.parse.handle(f.name, self.d)[''] + + + comment_in_var = """ +VAR = " \\ + SOMEVAL \\ +# some comment \\ + SOMEOTHERVAL \\ +" +""" + def test_parse_comment_in_var(self): + f = self.parsehelper(self.comment_in_var) + with self.assertRaises(bb.BBHandledException): + d = bb.parse.handle(f.name, self.d)[''] + diff --git a/poky/bitbake/lib/bb/tests/persist_data.py b/poky/bitbake/lib/bb/tests/persist_data.py new file mode 100644 index 0000000..f641b5a --- /dev/null +++ b/poky/bitbake/lib/bb/tests/persist_data.py @@ -0,0 +1,129 @@ +# +# BitBake Test for lib/bb/persist_data/ +# +# Copyright (C) 2018 Garmin Ltd. +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import bb.data +import bb.persist_data +import tempfile +import threading + +class PersistDataTest(unittest.TestCase): + def _create_data(self): + return bb.persist_data.persist('TEST_PERSIST_DATA', self.d) + + def setUp(self): + self.d = bb.data.init() + self.tempdir = tempfile.TemporaryDirectory() + self.d['PERSISTENT_DIR'] = self.tempdir.name + self.data = self._create_data() + self.items = { + 'A1': '1', + 'B1': '2', + 'C2': '3' + } + self.stress_count = 10000 + self.thread_count = 5 + + for k,v in self.items.items(): + self.data[k] = v + + def tearDown(self): + self.tempdir.cleanup() + + def _iter_helper(self, seen, iterator): + with iter(iterator): + for v in iterator: + self.assertTrue(v in seen) + seen.remove(v) + self.assertEqual(len(seen), 0, '%s not seen' % seen) + + def test_get(self): + for k, v in self.items.items(): + self.assertEqual(self.data[k], v) + + self.assertIsNone(self.data.get('D')) + with self.assertRaises(KeyError): + self.data['D'] + + def test_set(self): + for k, v in self.items.items(): + self.data[k] += '-foo' + + for k, v in self.items.items(): + self.assertEqual(self.data[k], v + '-foo') + + def test_delete(self): + self.data['D'] = '4' + self.assertEqual(self.data['D'], '4') + del self.data['D'] + self.assertIsNone(self.data.get('D')) + with self.assertRaises(KeyError): + self.data['D'] + + def test_contains(self): + for k in self.items: + self.assertTrue(k in self.data) + self.assertTrue(self.data.has_key(k)) + self.assertFalse('NotFound' in self.data) + self.assertFalse(self.data.has_key('NotFound')) + + def test_len(self): + self.assertEqual(len(self.data), len(self.items)) + + def test_iter(self): + self._iter_helper(set(self.items.keys()), self.data) + + def test_itervalues(self): + self._iter_helper(set(self.items.values()), self.data.itervalues()) + + def test_iteritems(self): + self._iter_helper(set(self.items.items()), self.data.iteritems()) + + def test_get_by_pattern(self): + self._iter_helper({'1', '2'}, self.data.get_by_pattern('_1')) + + def _stress_read(self, data): + for i in range(self.stress_count): + for k in self.items: + data[k] + + def _stress_write(self, data): + for i in range(self.stress_count): + for k, v in self.items.items(): + data[k] = v + str(i) + + def _validate_stress(self): + for k, v in self.items.items(): + self.assertEqual(self.data[k], v + str(self.stress_count - 1)) + + def test_stress(self): + self._stress_read(self.data) + self._stress_write(self.data) + self._validate_stress() + + def test_stress_threads(self): + def read_thread(): + data = self._create_data() + self._stress_read(data) + + def write_thread(): + data = self._create_data() + self._stress_write(data) + + threads = [] + for i in range(self.thread_count): + threads.append(threading.Thread(target=read_thread)) + threads.append(threading.Thread(target=write_thread)) + + for t in threads: + t.start() + self._stress_read(self.data) + for t in threads: + t.join() + self._validate_stress() + diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/classes/base.bbclass b/poky/bitbake/lib/bb/tests/runqueue-tests/classes/base.bbclass new file mode 100644 index 0000000..b57650d --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/classes/base.bbclass @@ -0,0 +1,262 @@ +SLOWTASKS ??= "" +SSTATEVALID ??= "" + +def stamptask(d): + import time + + thistask = d.expand("${PN}:${BB_CURRENTTASK}") + stampname = d.expand("${TOPDIR}/%s.run" % thistask) + with open(stampname, "a+") as f: + f.write(d.getVar("BB_UNIHASH") + "\n") + + if d.getVar("BB_CURRENT_MC") != "default": + thistask = d.expand("${BB_CURRENT_MC}:${PN}:${BB_CURRENTTASK}") + if thistask in d.getVar("SLOWTASKS").split(): + bb.note("Slowing task %s" % thistask) + time.sleep(0.5) + if d.getVar("BB_HASHSERVE"): + task = d.getVar("BB_CURRENTTASK") + if task in ['package', 'package_qa', 'packagedata', 'package_write_ipk', 'package_write_rpm', 'populate_lic', 'populate_sysroot']: + bb.parse.siggen.report_unihash(os.getcwd(), d.getVar("BB_CURRENTTASK"), d) + + with open(d.expand("${TOPDIR}/task.log"), "a+") as f: + f.write(thistask + "\n") + + +def sstate_output_hash(path, sigfile, task, d): + import hashlib + h = hashlib.sha256() + h.update(d.expand("${PN}:${BB_CURRENTTASK}").encode('utf-8')) + return h.hexdigest() + +python do_fetch() { + # fetch + stamptask(d) +} +python do_unpack() { + # unpack + stamptask(d) +} +python do_patch() { + # patch + stamptask(d) +} +python do_populate_lic() { + # populate_lic + stamptask(d) +} +python do_prepare_recipe_sysroot() { + # prepare_recipe_sysroot + stamptask(d) +} +python do_configure() { + # configure + stamptask(d) +} +python do_compile() { + # compile + stamptask(d) +} +python do_install() { + # install + stamptask(d) +} +python do_populate_sysroot() { + # populate_sysroot + stamptask(d) +} +python do_package() { + # package + stamptask(d) +} +python do_package_write_ipk() { + # package_write_ipk + stamptask(d) +} +python do_package_write_rpm() { + # package_write_rpm + stamptask(d) +} +python do_packagedata() { + # packagedata + stamptask(d) +} +python do_package_qa() { + # package_qa + stamptask(d) +} +python do_build() { + # build + stamptask(d) +} +do_prepare_recipe_sysroot[deptask] = "do_populate_sysroot" +do_package[deptask] += "do_packagedata" +do_build[recrdeptask] += "do_deploy" +do_build[recrdeptask] += "do_package_write_ipk" +do_build[recrdeptask] += "do_package_write_rpm" +do_package_qa[rdeptask] = "do_packagedata" +do_populate_lic_deploy[recrdeptask] += "do_populate_lic do_deploy" + +DEBIANRDEP = "do_packagedata" +oo_package_write_ipk[rdeptask] = "${DEBIANRDEP}" +do_package_write_rpm[rdeptask] = "${DEBIANRDEP}" + +addtask fetch +addtask unpack after do_fetch +addtask patch after do_unpack +addtask prepare_recipe_sysroot after do_patch +addtask configure after do_prepare_recipe_sysroot +addtask compile after do_configure +addtask install after do_compile +addtask populate_sysroot after do_install +addtask package after do_install +addtask package_write_ipk after do_packagedata do_package +addtask package_write_rpm after do_packagedata do_package +addtask packagedata after do_package +addtask package_qa after do_package +addtask build after do_package_qa do_package_write_rpm do_package_write_ipk do_populate_sysroot + +python do_package_setscene() { + stamptask(d) +} +python do_package_qa_setscene() { + stamptask(d) +} +python do_package_write_ipk_setscene() { + stamptask(d) +} +python do_package_write_rpm_setscene() { + stamptask(d) +} +python do_packagedata_setscene() { + stamptask(d) +} +python do_populate_lic_setscene() { + stamptask(d) +} +python do_populate_sysroot_setscene() { + stamptask(d) +} + +addtask package_setscene +addtask package_qa_setscene +addtask package_write_ipk_setscene +addtask package_write_rpm_setscene +addtask packagedata_setscene +addtask populate_lic_setscene +addtask populate_sysroot_setscene + +BB_SETSCENE_DEPVALID = "setscene_depvalid" + +def setscene_depvalid(task, taskdependees, notneeded, d, log=None): + # taskdependees is a dict of tasks which depend on task, each being a 3 item list of [PN, TASKNAME, FILENAME] + # task is included in taskdependees too + # Return - False - We need this dependency + # - True - We can skip this dependency + import re + + def logit(msg, log): + if log is not None: + log.append(msg) + else: + bb.debug(2, msg) + + logit("Considering setscene task: %s" % (str(taskdependees[task])), log) + + def isNativeCross(x): + return x.endswith("-native") or "-cross-" in x or "-crosssdk" in x or x.endswith("-cross") + + # We only need to trigger populate_lic through direct dependencies + if taskdependees[task][1] == "do_populate_lic": + return True + + # We only need to trigger packagedata through direct dependencies + # but need to preserve packagedata on packagedata links + if taskdependees[task][1] == "do_packagedata": + for dep in taskdependees: + if taskdependees[dep][1] == "do_packagedata": + return False + return True + + for dep in taskdependees: + logit(" considering dependency: %s" % (str(taskdependees[dep])), log) + if task == dep: + continue + if dep in notneeded: + continue + # do_package_write_* and do_package doesn't need do_package + if taskdependees[task][1] == "do_package" and taskdependees[dep][1] in ['do_package', 'do_package_write_ipk', 'do_package_write_rpm', 'do_packagedata', 'do_package_qa']: + continue + # do_package_write_* need do_populate_sysroot as they're mainly postinstall dependencies + if taskdependees[task][1] == "do_populate_sysroot" and taskdependees[dep][1] in ['do_package_write_ipk', 'do_package_write_rpm']: + return False + # do_package/packagedata/package_qa don't need do_populate_sysroot + if taskdependees[task][1] == "do_populate_sysroot" and taskdependees[dep][1] in ['do_package', 'do_packagedata', 'do_package_qa']: + continue + # Native/Cross packages don't exist and are noexec anyway + if isNativeCross(taskdependees[dep][0]) and taskdependees[dep][1] in ['do_package_write_ipk', 'do_package_write_rpm', 'do_packagedata', 'do_package', 'do_package_qa']: + continue + + # This is due to the [depends] in useradd.bbclass complicating matters + # The logic *is* reversed here due to the way hard setscene dependencies are injected + if (taskdependees[task][1] == 'do_package' or taskdependees[task][1] == 'do_populate_sysroot') and taskdependees[dep][0].endswith(('shadow-native', 'shadow-sysroot', 'base-passwd', 'pseudo-native')) and taskdependees[dep][1] == 'do_populate_sysroot': + continue + + # Consider sysroot depending on sysroot tasks + if taskdependees[task][1] == 'do_populate_sysroot' and taskdependees[dep][1] == 'do_populate_sysroot': + # Native/Cross populate_sysroot need their dependencies + if isNativeCross(taskdependees[task][0]) and isNativeCross(taskdependees[dep][0]): + return False + # Target populate_sysroot depended on by cross tools need to be installed + if isNativeCross(taskdependees[dep][0]): + return False + # Native/cross tools depended upon by target sysroot are not needed + # Add an exception for shadow-native as required by useradd.bbclass + if isNativeCross(taskdependees[task][0]) and taskdependees[task][0] != 'shadow-native': + continue + # Target populate_sysroot need their dependencies + return False + + + if taskdependees[dep][1] == "do_populate_lic": + continue + + # Safe fallthrough default + logit(" Default setscene dependency fall through due to dependency: %s" % (str(taskdependees[dep])), log) + return False + return True + +BB_HASHCHECK_FUNCTION = "sstate_checkhashes" + +def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, **kwargs): + + found = set() + missed = set() + + valid = d.getVar("SSTATEVALID").split() + + for tid in sorted(sq_data['hash']): + n = os.path.basename(bb.runqueue.fn_from_tid(tid)).split(".")[0] + ":do_" + bb.runqueue.taskname_from_tid(tid)[3:] + print(n) + stampfile = d.expand("${TOPDIR}/%s.run" % n.replace("do_", "")) + if n in valid: + bb.note("SState: Found valid sstate for %s" % n) + found.add(tid) + elif n + ":" + sq_data['hash'][tid] in valid: + bb.note("SState: Found valid sstate for %s" % n) + found.add(tid) + elif os.path.exists(stampfile): + with open(stampfile, "r") as f: + hash = f.readline().strip() + if hash == sq_data['hash'][tid]: + bb.note("SState: Found valid sstate for %s (already run)" % n) + found.add(tid) + else: + bb.note("SState: sstate hash didn't match previous run for %s (%s vs %s)" % (n, sq_data['hash'][tid], hash)) + missed.add(tid) + else: + missed.add(tid) + bb.note("SState: Found no valid sstate for %s (%s)" % (n, sq_data['hash'][tid])) + + return found + diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/classes/image.bbclass b/poky/bitbake/lib/bb/tests/runqueue-tests/classes/image.bbclass new file mode 100644 index 0000000..da9ff11 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/classes/image.bbclass @@ -0,0 +1,5 @@ +do_rootfs[recrdeptask] += "do_package_write_deb do_package_qa" +do_rootfs[recrdeptask] += "do_package_write_ipk do_package_qa" +do_rootfs[recrdeptask] += "do_package_write_rpm do_package_qa +do_rootfs[recrdeptask] += "do_packagedata" +do_rootfs[recrdeptask] += "do_populate_lic" diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/classes/native.bbclass b/poky/bitbake/lib/bb/tests/runqueue-tests/classes/native.bbclass new file mode 100644 index 0000000..7eaaee5 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/classes/native.bbclass @@ -0,0 +1,2 @@ +RECIPERDEPTASK = "do_populate_sysroot" +do_populate_sysroot[rdeptask] = "${RECIPERDEPTASK}" diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf b/poky/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf new file mode 100644 index 0000000..05d7fd0 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf @@ -0,0 +1,17 @@ +CACHE = "${TOPDIR}/cache" +THISDIR = "${@os.path.dirname(d.getVar('FILE'))}" +COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}" +EXTRA_BBFILES ?= "" +BBFILES = "${COREBASE}/recipes/*.bb ${EXTRA_BBFILES}" +PROVIDES = "${PN}" +PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0]}" +PF = "${BB_CURRENT_MC}:${PN}" +export PATH +TMPDIR ??= "${TOPDIR}" +STAMP = "${TMPDIR}/stamps/${PN}" +T = "${TMPDIR}/workdir/${PN}/temp" +BB_NUMBER_THREADS = "4" + +BB_BASEHASH_IGNORE_VARS = "BB_CURRENT_MC BB_HASHSERVE TMPDIR TOPDIR SLOWTASKS SSTATEVALID FILE BB_CURRENTTASK" + +include conf/multiconfig/${BB_CURRENT_MC}.conf diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc-1.conf b/poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc-1.conf new file mode 100644 index 0000000..f34b8dc --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc-1.conf @@ -0,0 +1,2 @@ +TMPDIR = "${TOPDIR}/mc1/" +BBMASK += "recipes/fails-mc/fails-mc1.bb" diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc_2.conf b/poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc_2.conf new file mode 100644 index 0000000..c3360fc --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc_2.conf @@ -0,0 +1,2 @@ +TMPDIR = "${TOPDIR}/mc2/" +BBMASK += "recipes/fails-mc/fails-mc2.bb" diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/a1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/a1.bb new file mode 100644 index 0000000..e69de29 diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/b1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/b1.bb new file mode 100644 index 0000000..c0b288e --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/b1.bb @@ -0,0 +1 @@ +DEPENDS = "a1" \ No newline at end of file diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/c1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/c1.bb new file mode 100644 index 0000000..e69de29 diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/d1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/d1.bb new file mode 100644 index 0000000..5ba1975 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/d1.bb @@ -0,0 +1,3 @@ +DEPENDS = "a1" + +do_package_setscene[depends] = "a1:do_populate_sysroot_setscene" diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/e1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/e1.bb new file mode 100644 index 0000000..1588bc8 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/e1.bb @@ -0,0 +1 @@ +DEPENDS = "b1" \ No newline at end of file diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/f1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/f1.bb new file mode 100644 index 0000000..7b8fc59 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/f1.bb @@ -0,0 +1 @@ +do_install[mcdepends] = "mc:mc-1:mc_2:a1:do_build" diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc1.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc1.bb new file mode 100644 index 0000000..eed69c8 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc1.bb @@ -0,0 +1,5 @@ +python () { + if d.getVar("BB_CURRENT_MC") == "mc-1": + bb.fatal("Multiconfig is mc-1") +} + diff --git a/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc2.bb b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc2.bb new file mode 100644 index 0000000..3c172ef --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc2.bb @@ -0,0 +1,4 @@ +python () { + if d.getVar("BB_CURRENT_MC") == "mc_2": + bb.fatal("Multiconfig is mc_2") +} diff --git a/poky/bitbake/lib/bb/tests/runqueue.py b/poky/bitbake/lib/bb/tests/runqueue.py new file mode 100644 index 0000000..061a5a1 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/runqueue.py @@ -0,0 +1,401 @@ +# +# BitBake Tests for runqueue task processing +# +# Copyright (C) 2019 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import os +import tempfile +import subprocess +import sys +import time + +# +# TODO: +# Add tests on task ordering (X happens before Y after Z) +# + +class RunQueueTests(unittest.TestCase): + + alltasks = ['package', 'fetch', 'unpack', 'patch', 'prepare_recipe_sysroot', 'configure', + 'compile', 'install', 'packagedata', 'package_qa', 'package_write_rpm', 'package_write_ipk', + 'populate_sysroot', 'build'] + a1_sstatevalid = "a1:do_package a1:do_package_qa a1:do_packagedata a1:do_package_write_ipk a1:do_package_write_rpm a1:do_populate_lic a1:do_populate_sysroot" + b1_sstatevalid = "b1:do_package b1:do_package_qa b1:do_packagedata b1:do_package_write_ipk b1:do_package_write_rpm b1:do_populate_lic b1:do_populate_sysroot" + + def run_bitbakecmd(self, cmd, builddir, sstatevalid="", slowtasks="", extraenv=None, cleanup=False): + env = os.environ.copy() + env["BBPATH"] = os.path.realpath(os.path.join(os.path.dirname(__file__), "runqueue-tests")) + env["BB_ENV_PASSTHROUGH_ADDITIONS"] = "SSTATEVALID SLOWTASKS TOPDIR" + env["SSTATEVALID"] = sstatevalid + env["SLOWTASKS"] = slowtasks + env["TOPDIR"] = builddir + if extraenv: + for k in extraenv: + env[k] = extraenv[k] + env["BB_ENV_PASSTHROUGH_ADDITIONS"] = env["BB_ENV_PASSTHROUGH_ADDITIONS"] + " " + k + try: + output = subprocess.check_output(cmd, env=env, stderr=subprocess.STDOUT,universal_newlines=True, cwd=builddir) + print(output) + except subprocess.CalledProcessError as e: + self.fail("Command %s failed with %s" % (cmd, e.output)) + tasks = [] + tasklog = builddir + "/task.log" + if os.path.exists(tasklog): + with open(tasklog, "r") as f: + tasks = [line.rstrip() for line in f] + if cleanup: + os.remove(tasklog) + return tasks + + def test_no_setscenevalid(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:' + x for x in self.alltasks] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_single_setscenevalid(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + sstatevalid = "a1:do_package" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_setscene', 'a1:fetch', 'a1:unpack', 'a1:patch', 'a1:prepare_recipe_sysroot', 'a1:configure', + 'a1:compile', 'a1:install', 'a1:packagedata', 'a1:package_qa', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot', 'a1:build'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_intermediate_setscenevalid(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + sstatevalid = "a1:do_package a1:do_populate_sysroot" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_setscene', 'a1:packagedata', 'a1:package_qa', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot_setscene', 'a1:build'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_intermediate_notcovered(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + sstatevalid = "a1:do_package_qa a1:do_packagedata a1:do_package_write_ipk a1:do_package_write_rpm a1:do_populate_lic a1:do_populate_sysroot" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_write_ipk_setscene', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', + 'a1:package_qa_setscene', 'a1:build', 'a1:populate_sysroot_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_all_setscenevalid(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + sstatevalid = self.a1_sstatevalid + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_write_ipk_setscene', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', + 'a1:package_qa_setscene', 'a1:build', 'a1:populate_sysroot_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_no_settasks(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1", "-c", "patch"] + sstatevalid = self.a1_sstatevalid + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:fetch', 'a1:unpack', 'a1:patch'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_mix_covered_notcovered(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1:do_patch", "a1:do_populate_sysroot"] + sstatevalid = self.a1_sstatevalid + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:fetch', 'a1:unpack', 'a1:patch', 'a1:populate_sysroot_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + # Test targets with intermediate setscene tasks alongside a target with no intermediate setscene tasks + def test_mixed_direct_tasks_setscene_tasks(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "c1:do_patch", "a1"] + sstatevalid = self.a1_sstatevalid + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['c1:fetch', 'c1:unpack', 'c1:patch', 'a1:package_write_ipk_setscene', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', + 'a1:package_qa_setscene', 'a1:build', 'a1:populate_sysroot_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + # This test slows down the execution of do_package_setscene until after other real tasks have + # started running which tests for a bug where tasks were being lost from the buildable list of real + # tasks if they weren't in tasks_covered or tasks_notcovered + def test_slow_setscene(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + sstatevalid = "a1:do_package" + slowtasks = "a1:package_setscene" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, slowtasks) + expected = ['a1:package_setscene', 'a1:fetch', 'a1:unpack', 'a1:patch', 'a1:prepare_recipe_sysroot', 'a1:configure', + 'a1:compile', 'a1:install', 'a1:packagedata', 'a1:package_qa', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot', 'a1:build'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_setscene_ignore_tasks(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "a1"] + extraenv = { + "BB_SETSCENE_ENFORCE" : "1", + "BB_SETSCENE_ENFORCE_IGNORE_TASKS" : "a1:do_package_write_rpm a1:do_build" + } + sstatevalid = "a1:do_package a1:do_package_qa a1:do_packagedata a1:do_package_write_ipk a1:do_populate_lic a1:do_populate_sysroot" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv) + expected = ['a1:packagedata_setscene', 'a1:package_qa_setscene', 'a1:package_write_ipk_setscene', + 'a1:populate_sysroot_setscene', 'a1:package_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + # Tests for problems with dependencies between setscene tasks + def test_no_setscenevalid_harddeps(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "d1"] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package', 'a1:fetch', 'a1:unpack', 'a1:patch', 'a1:prepare_recipe_sysroot', 'a1:configure', + 'a1:compile', 'a1:install', 'a1:packagedata', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot', 'd1:package', 'd1:fetch', 'd1:unpack', 'd1:patch', 'd1:prepare_recipe_sysroot', 'd1:configure', + 'd1:compile', 'd1:install', 'd1:packagedata', 'd1:package_qa', 'd1:package_write_rpm', 'd1:package_write_ipk', + 'd1:populate_sysroot', 'd1:build'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_no_setscenevalid_withdeps(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "b1"] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:' + x for x in self.alltasks] + ['b1:' + x for x in self.alltasks] + expected.remove('a1:build') + expected.remove('a1:package_qa') + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_single_a1_setscenevalid_withdeps(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "b1"] + sstatevalid = "a1:do_package" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_setscene', 'a1:fetch', 'a1:unpack', 'a1:patch', 'a1:prepare_recipe_sysroot', 'a1:configure', + 'a1:compile', 'a1:install', 'a1:packagedata', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot'] + ['b1:' + x for x in self.alltasks] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_single_b1_setscenevalid_withdeps(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "b1"] + sstatevalid = "b1:do_package" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package', 'a1:fetch', 'a1:unpack', 'a1:patch', 'a1:prepare_recipe_sysroot', 'a1:configure', + 'a1:compile', 'a1:install', 'a1:packagedata', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot', 'b1:package_setscene'] + ['b1:' + x for x in self.alltasks] + expected.remove('b1:package') + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_intermediate_setscenevalid_withdeps(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "b1"] + sstatevalid = "a1:do_package a1:do_populate_sysroot b1:do_package" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_setscene', 'a1:packagedata', 'a1:package_write_rpm', 'a1:package_write_ipk', + 'a1:populate_sysroot_setscene', 'b1:package_setscene'] + ['b1:' + x for x in self.alltasks] + expected.remove('b1:package') + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_all_setscenevalid_withdeps(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + cmd = ["bitbake", "b1"] + sstatevalid = self.a1_sstatevalid + " " + self.b1_sstatevalid + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid) + expected = ['a1:package_write_ipk_setscene', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', + 'b1:build', 'a1:populate_sysroot_setscene', 'b1:package_write_ipk_setscene', 'b1:package_write_rpm_setscene', + 'b1:packagedata_setscene', 'b1:package_qa_setscene', 'b1:populate_sysroot_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_multiconfig_setscene_optimise(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + extraenv = { + "BBMULTICONFIG" : "mc-1 mc_2", + "BB_SIGNATURE_HANDLER" : "basic" + } + cmd = ["bitbake", "b1", "mc:mc-1:b1", "mc:mc_2:b1"] + setscenetasks = ['package_write_ipk_setscene', 'package_write_rpm_setscene', 'packagedata_setscene', + 'populate_sysroot_setscene', 'package_qa_setscene'] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv) + expected = ['a1:' + x for x in self.alltasks] + ['b1:' + x for x in self.alltasks] + \ + ['mc-1:b1:' + x for x in setscenetasks] + ['mc-1:a1:' + x for x in setscenetasks] + \ + ['mc_2:b1:' + x for x in setscenetasks] + ['mc_2:a1:' + x for x in setscenetasks] + \ + ['mc-1:b1:build', 'mc_2:b1:build'] + for x in ['mc-1:a1:package_qa_setscene', 'mc_2:a1:package_qa_setscene', 'a1:build', 'a1:package_qa']: + expected.remove(x) + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_multiconfig_bbmask(self): + # This test validates that multiconfigs can independently mask off + # recipes they do not want with BBMASK. It works by having recipes + # that will fail to parse for mc-1 and mc_2, then making each multiconfig + # build the one that does parse. This ensures that the recipes are in + # each multiconfigs BBFILES, but each is masking only the one that + # doesn't parse + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + extraenv = { + "BBMULTICONFIG" : "mc-1 mc_2", + "BB_SIGNATURE_HANDLER" : "basic", + "EXTRA_BBFILES": "${COREBASE}/recipes/fails-mc/*.bb", + } + cmd = ["bitbake", "mc:mc-1:fails-mc2", "mc:mc_2:fails-mc1"] + self.run_bitbakecmd(cmd, tempdir, "", extraenv=extraenv) + + self.shutdown(tempdir) + + def test_multiconfig_mcdepends(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + extraenv = { + "BBMULTICONFIG" : "mc-1 mc_2", + "BB_SIGNATURE_HANDLER" : "TestMulticonfigDepends", + "EXTRA_BBFILES": "${COREBASE}/recipes/fails-mc/*.bb", + } + tasks = self.run_bitbakecmd(["bitbake", "mc:mc-1:f1"], tempdir, "", extraenv=extraenv, cleanup=True) + expected = ["mc-1:f1:%s" % t for t in self.alltasks] + \ + ["mc_2:a1:%s" % t for t in self.alltasks] + self.assertEqual(set(tasks), set(expected)) + + # A rebuild does nothing + tasks = self.run_bitbakecmd(["bitbake", "mc:mc-1:f1"], tempdir, "", extraenv=extraenv, cleanup=True) + self.assertEqual(set(tasks), set()) + + # Test that a signature change in the dependent task causes + # mcdepends to rebuild + tasks = self.run_bitbakecmd(["bitbake", "mc:mc_2:a1", "-c", "compile", "-f"], tempdir, "", extraenv=extraenv, cleanup=True) + expected = ["mc_2:a1:compile"] + self.assertEqual(set(tasks), set(expected)) + + rerun_tasks = self.alltasks[:] + for x in ("fetch", "unpack", "patch", "prepare_recipe_sysroot", "configure", "compile"): + rerun_tasks.remove(x) + tasks = self.run_bitbakecmd(["bitbake", "mc:mc-1:f1"], tempdir, "", extraenv=extraenv, cleanup=True) + expected = ["mc-1:f1:%s" % t for t in rerun_tasks] + \ + ["mc_2:a1:%s" % t for t in rerun_tasks] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_hashserv_single(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + extraenv = { + "BB_HASHSERVE" : "auto", + "BB_SIGNATURE_HANDLER" : "TestEquivHash" + } + cmd = ["bitbake", "a1", "b1"] + setscenetasks = ['package_write_ipk_setscene', 'package_write_rpm_setscene', 'packagedata_setscene', + 'populate_sysroot_setscene', 'package_qa_setscene'] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + expected = ['a1:' + x for x in self.alltasks] + ['b1:' + x for x in self.alltasks] + self.assertEqual(set(tasks), set(expected)) + cmd = ["bitbake", "a1", "-c", "install", "-f"] + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + expected = ['a1:install'] + self.assertEqual(set(tasks), set(expected)) + cmd = ["bitbake", "a1", "b1"] + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + expected = ['a1:populate_sysroot', 'a1:package', 'a1:package_write_rpm_setscene', 'a1:packagedata_setscene', + 'a1:package_write_ipk_setscene', 'a1:package_qa_setscene', 'a1:build'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_hashserv_double(self): + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + extraenv = { + "BB_HASHSERVE" : "auto", + "BB_SIGNATURE_HANDLER" : "TestEquivHash" + } + cmd = ["bitbake", "a1", "b1", "e1"] + setscenetasks = ['package_write_ipk_setscene', 'package_write_rpm_setscene', 'packagedata_setscene', + 'populate_sysroot_setscene', 'package_qa_setscene'] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + expected = ['a1:' + x for x in self.alltasks] + ['b1:' + x for x in self.alltasks] + ['e1:' + x for x in self.alltasks] + self.assertEqual(set(tasks), set(expected)) + cmd = ["bitbake", "a1", "b1", "-c", "install", "-fn"] + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + cmd = ["bitbake", "e1"] + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + expected = ['a1:package', 'a1:install', 'b1:package', 'b1:install', 'a1:populate_sysroot', 'b1:populate_sysroot', + 'a1:package_write_ipk_setscene', 'b1:packagedata_setscene', 'b1:package_write_rpm_setscene', + 'a1:package_write_rpm_setscene', 'b1:package_write_ipk_setscene', 'a1:packagedata_setscene'] + self.assertEqual(set(tasks), set(expected)) + + self.shutdown(tempdir) + + def test_hashserv_multiple_setscene(self): + # Runs e1:do_package_setscene twice + with tempfile.TemporaryDirectory(prefix="runqueuetest") as tempdir: + extraenv = { + "BB_HASHSERVE" : "auto", + "BB_SIGNATURE_HANDLER" : "TestEquivHash" + } + cmd = ["bitbake", "a1", "b1", "e1"] + setscenetasks = ['package_write_ipk_setscene', 'package_write_rpm_setscene', 'packagedata_setscene', + 'populate_sysroot_setscene', 'package_qa_setscene'] + sstatevalid = "" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + expected = ['a1:' + x for x in self.alltasks] + ['b1:' + x for x in self.alltasks] + ['e1:' + x for x in self.alltasks] + self.assertEqual(set(tasks), set(expected)) + cmd = ["bitbake", "a1", "b1", "-c", "install", "-fn"] + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True) + cmd = ["bitbake", "e1"] + sstatevalid = "e1:do_package" + tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid, extraenv=extraenv, cleanup=True, slowtasks="a1:populate_sysroot b1:populate_sysroot") + expected = ['a1:package', 'a1:install', 'b1:package', 'b1:install', 'a1:populate_sysroot', 'b1:populate_sysroot', + 'a1:package_write_ipk_setscene', 'b1:packagedata_setscene', 'b1:package_write_rpm_setscene', + 'a1:package_write_rpm_setscene', 'b1:package_write_ipk_setscene', 'a1:packagedata_setscene', + 'e1:package_setscene'] + self.assertEqual(set(tasks), set(expected)) + for i in expected: + self.assertEqual(tasks.count(i), 1, "%s not in task list once" % i) + + self.shutdown(tempdir) + + def shutdown(self, tempdir): + # Wait for the hashserve socket to disappear else we'll see races with the tempdir cleanup + while (os.path.exists(tempdir + "/hashserve.sock") or os.path.exists(tempdir + "cache/hashserv.db-wal") or os.path.exists(tempdir + "/bitbake.lock")): + time.sleep(0.5) + diff --git a/poky/bitbake/lib/bb/tests/siggen.py b/poky/bitbake/lib/bb/tests/siggen.py new file mode 100644 index 0000000..c21ab4e --- /dev/null +++ b/poky/bitbake/lib/bb/tests/siggen.py @@ -0,0 +1,91 @@ +# +# BitBake Test for lib/bb/siggen.py +# +# Copyright (C) 2020 Jean-François Dagenais +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import logging +import bb +import time + +logger = logging.getLogger('BitBake.TestSiggen') + +import bb.siggen + +class SiggenTest(unittest.TestCase): + + def test_clean_basepath_simple_target_basepath(self): + basepath = '/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask' + expected_cleaned = 'helloworld/helloworld_1.2.3.bb:do_sometask' + + actual_cleaned = bb.siggen.clean_basepath(basepath) + + self.assertEqual(actual_cleaned, expected_cleaned) + + def test_clean_basepath_basic_virtual_basepath(self): + basepath = 'virtual:something:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask' + expected_cleaned = 'helloworld/helloworld_1.2.3.bb:do_sometask:virtual:something' + + actual_cleaned = bb.siggen.clean_basepath(basepath) + + self.assertEqual(actual_cleaned, expected_cleaned) + + def test_clean_basepath_mc_basepath(self): + basepath = 'mc:somemachine:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask' + expected_cleaned = 'helloworld/helloworld_1.2.3.bb:do_sometask:mc:somemachine' + + actual_cleaned = bb.siggen.clean_basepath(basepath) + + self.assertEqual(actual_cleaned, expected_cleaned) + + def test_clean_basepath_virtual_long_prefix_basepath(self): + basepath = 'virtual:something:A:B:C:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask' + expected_cleaned = 'helloworld/helloworld_1.2.3.bb:do_sometask:virtual:something:A:B:C' + + actual_cleaned = bb.siggen.clean_basepath(basepath) + + self.assertEqual(actual_cleaned, expected_cleaned) + + def test_clean_basepath_mc_virtual_basepath(self): + basepath = 'mc:somemachine:virtual:something:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask' + expected_cleaned = 'helloworld/helloworld_1.2.3.bb:do_sometask:virtual:something:mc:somemachine' + + actual_cleaned = bb.siggen.clean_basepath(basepath) + + self.assertEqual(actual_cleaned, expected_cleaned) + + def test_clean_basepath_mc_virtual_long_prefix_basepath(self): + basepath = 'mc:X:virtual:something:C:B:A:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask' + expected_cleaned = 'helloworld/helloworld_1.2.3.bb:do_sometask:virtual:something:C:B:A:mc:X' + + actual_cleaned = bb.siggen.clean_basepath(basepath) + + self.assertEqual(actual_cleaned, expected_cleaned) + + + # def test_clean_basepath_performance(self): + # input_basepaths = [ + # 'mc:X:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # 'mc:X:virtual:something:C:B:A:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # 'virtual:something:C:B:A:/different/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # 'virtual:something:A:/full/path/to/poky/meta/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # '/this/is/most/common/input/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # '/and/should/be/tested/with/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # '/more/weight/recipes-whatever/helloworld/helloworld_1.2.3.bb:do_sometask', + # ] + + # time_start = time.time() + + # i = 2000000 + # while i >= 0: + # for basepath in input_basepaths: + # bb.siggen.clean_basepath(basepath) + # i -= 1 + + # elapsed = time.time() - time_start + # print('{} ({}s)'.format(self.id(), round(elapsed, 3))) + + # self.assertTrue(False) diff --git a/poky/bitbake/lib/bb/tests/support/httpserver.py b/poky/bitbake/lib/bb/tests/support/httpserver.py new file mode 100644 index 0000000..78f7660 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/support/httpserver.py @@ -0,0 +1,65 @@ +# +# SPDX-License-Identifier: MIT +# + +import http.server +import multiprocessing +import os +import traceback +import signal +import logging +from socketserver import ThreadingMixIn + +class HTTPServer(ThreadingMixIn, http.server.HTTPServer): + + def server_start(self, root_dir, logger): + os.chdir(root_dir) + self.serve_forever() + +class HTTPRequestHandler(http.server.SimpleHTTPRequestHandler): + + def log_message(self, format_str, *args): + pass + +class HTTPService(object): + + def __init__(self, root_dir, host='', port=0, logger=None): + self.root_dir = root_dir + self.host = host + self.port = port + if not logger: + logger = logging.getLogger() + self.logger = logger + + def start(self): + print(self.root_dir) + if not os.path.exists(self.root_dir): + self.logger.info("Not starting HTTPService for directory %s which doesn't exist" % (self.root_dir)) + return + + self.server = HTTPServer((self.host, self.port), HTTPRequestHandler) + if self.port == 0: + self.port = self.server.server_port + self.process = multiprocessing.Process(target=self.server.server_start, args=[self.root_dir, self.logger]) + + # The signal handler from testimage.bbclass can cause deadlocks here + # if the HTTPServer is terminated before it can restore the standard + #signal behaviour + orig = signal.getsignal(signal.SIGTERM) + signal.signal(signal.SIGTERM, signal.SIG_DFL) + self.process.start() + signal.signal(signal.SIGTERM, orig) + + if self.logger: + self.logger.info("Started HTTPService on %s:%s" % (self.host, self.port)) + + + def stop(self): + if hasattr(self, "server"): + self.server.server_close() + if hasattr(self, "process"): + self.process.terminate() + self.process.join() + if self.logger: + self.logger.info("Stopped HTTPService on %s:%s" % (self.host, self.port)) + diff --git a/poky/bitbake/lib/bb/tests/utils.py b/poky/bitbake/lib/bb/tests/utils.py new file mode 100644 index 0000000..c363f62 --- /dev/null +++ b/poky/bitbake/lib/bb/tests/utils.py @@ -0,0 +1,686 @@ +# +# BitBake Tests for utils.py +# +# Copyright (C) 2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import unittest +import bb +import os +import tempfile +import re + +class VerCmpString(unittest.TestCase): + + def test_vercmpstring(self): + result = bb.utils.vercmp_string('1', '2') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('2', '1') + self.assertTrue(result > 0) + result = bb.utils.vercmp_string('1', '1.0') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('1', '1.1') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('1.1', '1_p2') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('1.0', '1.0+1.1-beta1') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('1.1', '1.0+1.1-beta1') + self.assertTrue(result > 0) + result = bb.utils.vercmp_string('1a', '1a1') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('1a1', '1a') + self.assertTrue(result > 0) + result = bb.utils.vercmp_string('1.', '1.1') + self.assertTrue(result < 0) + result = bb.utils.vercmp_string('1.1', '1.') + self.assertTrue(result > 0) + + def test_explode_dep_versions(self): + correctresult = {"foo" : ["= 1.10"]} + result = bb.utils.explode_dep_versions2("foo (= 1.10)") + self.assertEqual(result, correctresult) + result = bb.utils.explode_dep_versions2("foo (=1.10)") + self.assertEqual(result, correctresult) + result = bb.utils.explode_dep_versions2("foo ( = 1.10)") + self.assertEqual(result, correctresult) + result = bb.utils.explode_dep_versions2("foo ( =1.10)") + self.assertEqual(result, correctresult) + result = bb.utils.explode_dep_versions2("foo ( = 1.10 )") + self.assertEqual(result, correctresult) + result = bb.utils.explode_dep_versions2("foo ( =1.10 )") + self.assertEqual(result, correctresult) + + def test_vercmp_string_op(self): + compareops = [('1', '1', '=', True), + ('1', '1', '==', True), + ('1', '1', '!=', False), + ('1', '1', '>', False), + ('1', '1', '<', False), + ('1', '1', '>=', True), + ('1', '1', '<=', True), + ('1', '0', '=', False), + ('1', '0', '==', False), + ('1', '0', '!=', True), + ('1', '0', '>', True), + ('1', '0', '<', False), + ('1', '0', '>>', True), + ('1', '0', '<<', False), + ('1', '0', '>=', True), + ('1', '0', '<=', False), + ('0', '1', '=', False), + ('0', '1', '==', False), + ('0', '1', '!=', True), + ('0', '1', '>', False), + ('0', '1', '<', True), + ('0', '1', '>>', False), + ('0', '1', '<<', True), + ('0', '1', '>=', False), + ('0', '1', '<=', True)] + + for arg1, arg2, op, correctresult in compareops: + result = bb.utils.vercmp_string_op(arg1, arg2, op) + self.assertEqual(result, correctresult, 'vercmp_string_op("%s", "%s", "%s") != %s' % (arg1, arg2, op, correctresult)) + + # Check that clearly invalid operator raises an exception + self.assertRaises(bb.utils.VersionStringException, bb.utils.vercmp_string_op, '0', '0', '$') + + +class Path(unittest.TestCase): + def test_unsafe_delete_path(self): + checkitems = [('/', True), + ('//', True), + ('///', True), + (os.getcwd().count(os.sep) * ('..' + os.sep), True), + (os.environ.get('HOME', '/home/test'), True), + ('/home/someone', True), + ('/home/other/', True), + ('/home/other/subdir', False), + ('', False)] + for arg1, correctresult in checkitems: + result = bb.utils._check_unsafe_delete_path(arg1) + self.assertEqual(result, correctresult, '_check_unsafe_delete_path("%s") != %s' % (arg1, correctresult)) + +class Checksum(unittest.TestCase): + filler = b"Shiver me timbers square-rigged spike Gold Road galleon bilge water boatswain wherry jack pirate. Mizzenmast rum lad Privateer jack salmagundi hang the jib piracy Pieces of Eight Corsair. Parrel marooned black spot yawl provost quarterdeck cable no prey, no pay spirits lateen sail." + + def test_md5(self): + import hashlib + with tempfile.NamedTemporaryFile() as f: + f.write(self.filler) + f.flush() + checksum = bb.utils.md5_file(f.name) + self.assertEqual(checksum, "bd572cd5de30a785f4efcb6eaf5089e3") + + def test_sha1(self): + import hashlib + with tempfile.NamedTemporaryFile() as f: + f.write(self.filler) + f.flush() + checksum = bb.utils.sha1_file(f.name) + self.assertEqual(checksum, "249eb8fd654732ea836d5e702d7aa567898eca71") + + def test_sha256(self): + import hashlib + with tempfile.NamedTemporaryFile() as f: + f.write(self.filler) + f.flush() + checksum = bb.utils.sha256_file(f.name) + self.assertEqual(checksum, "fcfbae8bf6b721dbb9d2dc6a9334a58f2031a9a9b302999243f99da4d7f12d0f") + +class EditMetadataFile(unittest.TestCase): + _origfile = """ +# A comment +HELLO = "oldvalue" + +THIS = "that" + +# Another comment +NOCHANGE = "samevalue" +OTHER = 'anothervalue' + +MULTILINE = "a1 \\ + a2 \\ + a3" + +MULTILINE2 := " \\ + b1 \\ + b2 \\ + b3 \\ + " + + +MULTILINE3 = " \\ + c1 \\ + c2 \\ + c3 \\ +" + +do_functionname() { + command1 ${VAL1} ${VAL2} + command2 ${VAL3} ${VAL4} +} +""" + def _testeditfile(self, varvalues, compareto, dummyvars=None): + if dummyvars is None: + dummyvars = [] + with tempfile.NamedTemporaryFile('w', delete=False) as tf: + tf.write(self._origfile) + tf.close() + try: + varcalls = [] + def handle_file(varname, origvalue, op, newlines): + self.assertIn(varname, varvalues, 'Callback called for variable %s not in the list!' % varname) + self.assertNotIn(varname, dummyvars, 'Callback called for variable %s in dummy list!' % varname) + varcalls.append(varname) + return varvalues[varname] + + bb.utils.edit_metadata_file(tf.name, varvalues.keys(), handle_file) + with open(tf.name) as f: + modfile = f.readlines() + # Ensure the output matches the expected output + self.assertEqual(compareto.splitlines(True), modfile) + # Ensure the callback function was called for every variable we asked for + # (plus allow testing behaviour when a requested variable is not present) + self.assertEqual(sorted(varvalues.keys()), sorted(varcalls + dummyvars)) + finally: + os.remove(tf.name) + + + def test_edit_metadata_file_nochange(self): + # Test file doesn't get modified with nothing to do + self._testeditfile({}, self._origfile) + # Test file doesn't get modified with only dummy variables + self._testeditfile({'DUMMY1': ('should_not_set', None, 0, True), + 'DUMMY2': ('should_not_set_again', None, 0, True)}, self._origfile, dummyvars=['DUMMY1', 'DUMMY2']) + # Test file doesn't get modified with some the same values + self._testeditfile({'THIS': ('that', None, 0, True), + 'OTHER': ('anothervalue', None, 0, True), + 'MULTILINE3': (' c1 c2 c3 ', None, 4, False)}, self._origfile) + + def test_edit_metadata_file_1(self): + + newfile1 = """ +# A comment +HELLO = "newvalue" + +THIS = "that" + +# Another comment +NOCHANGE = "samevalue" +OTHER = 'anothervalue' + +MULTILINE = "a1 \\ + a2 \\ + a3" + +MULTILINE2 := " \\ + b1 \\ + b2 \\ + b3 \\ + " + + +MULTILINE3 = " \\ + c1 \\ + c2 \\ + c3 \\ +" + +do_functionname() { + command1 ${VAL1} ${VAL2} + command2 ${VAL3} ${VAL4} +} +""" + self._testeditfile({'HELLO': ('newvalue', None, 4, True)}, newfile1) + + + def test_edit_metadata_file_2(self): + + newfile2 = """ +# A comment +HELLO = "oldvalue" + +THIS = "that" + +# Another comment +NOCHANGE = "samevalue" +OTHER = 'anothervalue' + +MULTILINE = " \\ + d1 \\ + d2 \\ + d3 \\ + " + +MULTILINE2 := " \\ + b1 \\ + b2 \\ + b3 \\ + " + + +MULTILINE3 = "nowsingle" + +do_functionname() { + command1 ${VAL1} ${VAL2} + command2 ${VAL3} ${VAL4} +} +""" + self._testeditfile({'MULTILINE': (['d1','d2','d3'], None, 4, False), + 'MULTILINE3': ('nowsingle', None, 4, True), + 'NOTPRESENT': (['a', 'b'], None, 4, False)}, newfile2, dummyvars=['NOTPRESENT']) + + + def test_edit_metadata_file_3(self): + + newfile3 = """ +# A comment +HELLO = "oldvalue" + +# Another comment +NOCHANGE = "samevalue" +OTHER = "yetanothervalue" + +MULTILINE = "e1 \\ + e2 \\ + e3 \\ + " + +MULTILINE2 := "f1 \\ +\tf2 \\ +\t" + + +MULTILINE3 = " \\ + c1 \\ + c2 \\ + c3 \\ +" + +do_functionname() { + othercommand_one a b c + othercommand_two d e f +} +""" + + self._testeditfile({'do_functionname()': (['othercommand_one a b c', 'othercommand_two d e f'], None, 4, False), + 'MULTILINE2': (['f1', 'f2'], None, '\t', True), + 'MULTILINE': (['e1', 'e2', 'e3'], None, -1, True), + 'THIS': (None, None, 0, False), + 'OTHER': ('yetanothervalue', None, 0, True)}, newfile3) + + + def test_edit_metadata_file_4(self): + + newfile4 = """ +# A comment +HELLO = "oldvalue" + +THIS = "that" + +# Another comment +OTHER = 'anothervalue' + +MULTILINE = "a1 \\ + a2 \\ + a3" + +MULTILINE2 := " \\ + b1 \\ + b2 \\ + b3 \\ + " + + +""" + + self._testeditfile({'NOCHANGE': (None, None, 0, False), + 'MULTILINE3': (None, None, 0, False), + 'THIS': ('that', None, 0, False), + 'do_functionname()': (None, None, 0, False)}, newfile4) + + + def test_edit_metadata(self): + newfile5 = """ +# A comment +HELLO = "hithere" + +# A new comment +THIS += "that" + +# Another comment +NOCHANGE = "samevalue" +OTHER = 'anothervalue' + +MULTILINE = "a1 \\ + a2 \\ + a3" + +MULTILINE2 := " \\ + b1 \\ + b2 \\ + b3 \\ + " + + +MULTILINE3 = " \\ + c1 \\ + c2 \\ + c3 \\ +" + +NEWVAR = "value" + +do_functionname() { + command1 ${VAL1} ${VAL2} + command2 ${VAL3} ${VAL4} +} +""" + + + def handle_var(varname, origvalue, op, newlines): + if varname == 'THIS': + newlines.append('# A new comment\n') + elif varname == 'do_functionname()': + newlines.append('NEWVAR = "value"\n') + newlines.append('\n') + valueitem = varvalues.get(varname, None) + if valueitem: + return valueitem + else: + return (origvalue, op, 0, True) + + varvalues = {'HELLO': ('hithere', None, 0, True), 'THIS': ('that', '+=', 0, True)} + varlist = ['HELLO', 'THIS', 'do_functionname()'] + (updated, newlines) = bb.utils.edit_metadata(self._origfile.splitlines(True), varlist, handle_var) + self.assertTrue(updated, 'List should be updated but isn\'t') + self.assertEqual(newlines, newfile5.splitlines(True)) + + # Make sure the orig value matches what we expect it to be + def test_edit_metadata_origvalue(self): + origfile = """ +MULTILINE = " stuff \\ + morestuff" +""" + expected_value = "stuff morestuff" + global value_in_callback + value_in_callback = "" + + def handle_var(varname, origvalue, op, newlines): + global value_in_callback + value_in_callback = origvalue + return (origvalue, op, -1, False) + + bb.utils.edit_metadata(origfile.splitlines(True), + ['MULTILINE'], + handle_var) + + testvalue = re.sub(r'\s+', ' ', value_in_callback.strip()) + self.assertEqual(expected_value, testvalue) + +class EditBbLayersConf(unittest.TestCase): + + def _test_bblayers_edit(self, before, after, add, remove, notadded, notremoved): + with tempfile.NamedTemporaryFile('w', delete=False) as tf: + tf.write(before) + tf.close() + try: + actual_notadded, actual_notremoved = bb.utils.edit_bblayers_conf(tf.name, add, remove) + with open(tf.name) as f: + actual_after = f.readlines() + self.assertEqual(after.splitlines(True), actual_after) + self.assertEqual(notadded, actual_notadded) + self.assertEqual(notremoved, actual_notremoved) + finally: + os.remove(tf.name) + + + def test_bblayers_remove(self): + before = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + /home/user/path/subpath/layer3 \ + /home/user/path/layer4 \ + " +""" + after = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + /home/user/path/layer1 \ + /home/user/path/subpath/layer3 \ + /home/user/path/layer4 \ + " +""" + self._test_bblayers_edit(before, after, + None, + '/home/user/path/layer2', + [], + []) + + + def test_bblayers_add(self): + before = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + /home/user/path/subpath/layer3 \ + /home/user/path/layer4 \ + " +""" + after = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + /home/user/path/subpath/layer3 \ + /home/user/path/layer4 \ + /other/path/to/layer5 \ + " +""" + self._test_bblayers_edit(before, after, + '/other/path/to/layer5/', + None, + [], + []) + + + def test_bblayers_add_remove(self): + before = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + /home/user/path/subpath/layer3 \ + /home/user/path/layer4 \ + " +""" + after = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + /home/user/path/layer4 \ + /other/path/to/layer5 \ + " +""" + self._test_bblayers_edit(before, after, + ['/other/path/to/layer5', '/home/user/path/layer2/'], '/home/user/path/subpath/layer3/', + ['/home/user/path/layer2'], + []) + + + def test_bblayers_add_remove_home(self): + before = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + ~/path/layer1 \ + ~/path/layer2 \ + ~/otherpath/layer3 \ + ~/path/layer4 \ + " +""" + after = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS = " \ + ~/path/layer2 \ + ~/path/layer4 \ + ~/path2/layer5 \ + " +""" + self._test_bblayers_edit(before, after, + [os.environ['HOME'] + '/path/layer4', '~/path2/layer5'], + [os.environ['HOME'] + '/otherpath/layer3', '~/path/layer1', '~/path/notinlist'], + [os.environ['HOME'] + '/path/layer4'], + ['~/path/notinlist']) + + + def test_bblayers_add_remove_plusequals(self): + before = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS += " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + " +""" + after = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS += " \ + /home/user/path/layer2 \ + /home/user/path/layer3 \ + " +""" + self._test_bblayers_edit(before, after, + '/home/user/path/layer3', + '/home/user/path/layer1', + [], + []) + + + def test_bblayers_add_remove_plusequals2(self): + before = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS += " \ + /home/user/path/layer1 \ + /home/user/path/layer2 \ + /home/user/path/layer3 \ + " +BBLAYERS += "/home/user/path/layer4" +BBLAYERS += "/home/user/path/layer5" +""" + after = r""" +# A comment + +BBPATH = "${TOPDIR}" +BBFILES ?= "" +BBLAYERS += " \ + /home/user/path/layer2 \ + /home/user/path/layer3 \ + " +BBLAYERS += "/home/user/path/layer5" +BBLAYERS += "/home/user/otherpath/layer6" +""" + self._test_bblayers_edit(before, after, + ['/home/user/otherpath/layer6', '/home/user/path/layer3'], ['/home/user/path/layer1', '/home/user/path/layer4', '/home/user/path/layer7'], + ['/home/user/path/layer3'], + ['/home/user/path/layer7']) + + +class GetReferencedVars(unittest.TestCase): + def setUp(self): + self.d = bb.data.init() + + def check_referenced(self, expression, expected_layers): + vars = bb.utils.get_referenced_vars(expression, self.d) + + # Do the easy check first - is every variable accounted for? + expected_vars = set.union(set(), *expected_layers) + got_vars = set(vars) + self.assertSetEqual(got_vars, expected_vars) + + # Now test the order of the layers + start = 0 + for i, expected_layer in enumerate(expected_layers): + got_layer = set(vars[start:len(expected_layer)+start]) + start += len(expected_layer) + self.assertSetEqual(got_layer, expected_layer) + + def test_no_vars(self): + self.check_referenced("", []) + self.check_referenced(" ", []) + self.check_referenced(" no vars here! ", []) + + def test_single_layer(self): + self.check_referenced("${VAR}", [{"VAR"}]) + self.check_referenced("${VAR} ${VAR}", [{"VAR"}]) + + def test_two_layer(self): + self.d.setVar("VAR", "${B}") + self.check_referenced("${VAR}", [{"VAR"}, {"B"}]) + self.check_referenced("${@d.getVar('VAR')}", [{"VAR"}, {"B"}]) + + def test_more_complicated(self): + self.d["SRC_URI"] = "${QT_GIT}/${QT_MODULE}.git;name=${QT_MODULE};${QT_MODULE_BRANCH_PARAM};protocol=${QT_GIT_PROTOCOL}" + self.d["QT_GIT"] = "git://code.qt.io/${QT_GIT_PROJECT}" + self.d["QT_MODULE_BRANCH_PARAM"] = "branch=${QT_MODULE_BRANCH}" + self.d["QT_MODULE"] = "${BPN}" + self.d["BPN"] = "something to do with ${PN} and ${SPECIAL_PKGSUFFIX}" + + layers = [{"SRC_URI"}, {"QT_GIT", "QT_MODULE", "QT_MODULE_BRANCH_PARAM", "QT_GIT_PROTOCOL"}, {"QT_GIT_PROJECT", "QT_MODULE_BRANCH", "BPN"}, {"PN", "SPECIAL_PKGSUFFIX"}] + self.check_referenced("${SRC_URI}", layers) + + +class EnvironmentTests(unittest.TestCase): + def test_environment(self): + os.environ["A"] = "this is A" + self.assertIn("A", os.environ) + self.assertEqual(os.environ["A"], "this is A") + self.assertNotIn("B", os.environ) + + with bb.utils.environment(B="this is B"): + self.assertIn("A", os.environ) + self.assertEqual(os.environ["A"], "this is A") + self.assertIn("B", os.environ) + self.assertEqual(os.environ["B"], "this is B") + + self.assertIn("A", os.environ) + self.assertEqual(os.environ["A"], "this is A") + self.assertNotIn("B", os.environ) diff --git a/poky/bitbake/lib/bb/tinfoil.py b/poky/bitbake/lib/bb/tinfoil.py new file mode 100644 index 0000000..e68a3b8 --- /dev/null +++ b/poky/bitbake/lib/bb/tinfoil.py @@ -0,0 +1,890 @@ +# tinfoil: a simple wrapper around cooker for bitbake-based command-line utilities +# +# Copyright (C) 2012-2017 Intel Corporation +# Copyright (C) 2011 Mentor Graphics Corporation +# Copyright (C) 2006-2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import logging +import os +import sys +import atexit +import re +from collections import OrderedDict, defaultdict +from functools import partial + +import bb.cache +import bb.cooker +import bb.providers +import bb.taskdata +import bb.utils +import bb.command +import bb.remotedata +from bb.main import setup_bitbake, BitBakeConfigParameters +import bb.fetch2 + + +# We need this in order to shut down the connection to the bitbake server, +# otherwise the process will never properly exit +_server_connections = [] +def _terminate_connections(): + for connection in _server_connections: + connection.terminate() +atexit.register(_terminate_connections) + +class TinfoilUIException(Exception): + """Exception raised when the UI returns non-zero from its main function""" + def __init__(self, returncode): + self.returncode = returncode + def __repr__(self): + return 'UI module main returned %d' % self.returncode + +class TinfoilCommandFailed(Exception): + """Exception raised when run_command fails""" + +class TinfoilDataStoreConnectorVarHistory: + def __init__(self, tinfoil, dsindex): + self.tinfoil = tinfoil + self.dsindex = dsindex + + def remoteCommand(self, cmd, *args, **kwargs): + return self.tinfoil.run_command('dataStoreConnectorVarHistCmd', self.dsindex, cmd, args, kwargs) + + def emit(self, var, oval, val, o, d): + ret = self.tinfoil.run_command('dataStoreConnectorVarHistCmdEmit', self.dsindex, var, oval, val, d.dsindex) + o.write(ret) + + def __getattr__(self, name): + if not hasattr(bb.data_smart.VariableHistory, name): + raise AttributeError("VariableHistory has no such method %s" % name) + + newfunc = partial(self.remoteCommand, name) + setattr(self, name, newfunc) + return newfunc + +class TinfoilDataStoreConnectorIncHistory: + def __init__(self, tinfoil, dsindex): + self.tinfoil = tinfoil + self.dsindex = dsindex + + def remoteCommand(self, cmd, *args, **kwargs): + return self.tinfoil.run_command('dataStoreConnectorIncHistCmd', self.dsindex, cmd, args, kwargs) + + def __getattr__(self, name): + if not hasattr(bb.data_smart.IncludeHistory, name): + raise AttributeError("IncludeHistory has no such method %s" % name) + + newfunc = partial(self.remoteCommand, name) + setattr(self, name, newfunc) + return newfunc + +class TinfoilDataStoreConnector: + """ + Connector object used to enable access to datastore objects via tinfoil + Method calls are transmitted to the remote datastore for processing, if a datastore is + returned we return a connector object for the new store + """ + + def __init__(self, tinfoil, dsindex): + self.tinfoil = tinfoil + self.dsindex = dsindex + self.varhistory = TinfoilDataStoreConnectorVarHistory(tinfoil, dsindex) + self.inchistory = TinfoilDataStoreConnectorIncHistory(tinfoil, dsindex) + + def remoteCommand(self, cmd, *args, **kwargs): + ret = self.tinfoil.run_command('dataStoreConnectorCmd', self.dsindex, cmd, args, kwargs) + if isinstance(ret, bb.command.DataStoreConnectionHandle): + return TinfoilDataStoreConnector(self.tinfoil, ret.dsindex) + return ret + + def __getattr__(self, name): + if not hasattr(bb.data._dict_type, name): + raise AttributeError("Data store has no such method %s" % name) + + newfunc = partial(self.remoteCommand, name) + setattr(self, name, newfunc) + return newfunc + + def __iter__(self): + keys = self.tinfoil.run_command('dataStoreConnectorCmd', self.dsindex, "keys", [], {}) + for k in keys: + yield k + +class TinfoilCookerAdapter: + """ + Provide an adapter for existing code that expects to access a cooker object via Tinfoil, + since now Tinfoil is on the client side it no longer has direct access. + """ + + class TinfoilCookerCollectionAdapter: + """ cooker.collection adapter """ + def __init__(self, tinfoil, mc=''): + self.tinfoil = tinfoil + self.mc = mc + def get_file_appends(self, fn): + return self.tinfoil.get_file_appends(fn, self.mc) + def __getattr__(self, name): + if name == 'overlayed': + return self.tinfoil.get_overlayed_recipes(self.mc) + elif name == 'bbappends': + return self.tinfoil.run_command('getAllAppends', self.mc) + else: + raise AttributeError("%s instance has no attribute '%s'" % (self.__class__.__name__, name)) + + class TinfoilRecipeCacheAdapter: + """ cooker.recipecache adapter """ + def __init__(self, tinfoil, mc=''): + self.tinfoil = tinfoil + self.mc = mc + self._cache = {} + + def get_pkg_pn_fn(self): + pkg_pn = defaultdict(list, self.tinfoil.run_command('getRecipes', self.mc) or []) + pkg_fn = {} + for pn, fnlist in pkg_pn.items(): + for fn in fnlist: + pkg_fn[fn] = pn + self._cache['pkg_pn'] = pkg_pn + self._cache['pkg_fn'] = pkg_fn + + def __getattr__(self, name): + # Grab these only when they are requested since they aren't always used + if name in self._cache: + return self._cache[name] + elif name == 'pkg_pn': + self.get_pkg_pn_fn() + return self._cache[name] + elif name == 'pkg_fn': + self.get_pkg_pn_fn() + return self._cache[name] + elif name == 'deps': + attrvalue = defaultdict(list, self.tinfoil.run_command('getRecipeDepends', self.mc) or []) + elif name == 'rundeps': + attrvalue = defaultdict(lambda: defaultdict(list), self.tinfoil.run_command('getRuntimeDepends', self.mc) or []) + elif name == 'runrecs': + attrvalue = defaultdict(lambda: defaultdict(list), self.tinfoil.run_command('getRuntimeRecommends', self.mc) or []) + elif name == 'pkg_pepvpr': + attrvalue = self.tinfoil.run_command('getRecipeVersions', self.mc) or {} + elif name == 'inherits': + attrvalue = self.tinfoil.run_command('getRecipeInherits', self.mc) or {} + elif name == 'bbfile_priority': + attrvalue = self.tinfoil.run_command('getBbFilePriority', self.mc) or {} + elif name == 'pkg_dp': + attrvalue = self.tinfoil.run_command('getDefaultPreference', self.mc) or {} + elif name == 'fn_provides': + attrvalue = self.tinfoil.run_command('getRecipeProvides', self.mc) or {} + elif name == 'packages': + attrvalue = self.tinfoil.run_command('getRecipePackages', self.mc) or {} + elif name == 'packages_dynamic': + attrvalue = self.tinfoil.run_command('getRecipePackagesDynamic', self.mc) or {} + elif name == 'rproviders': + attrvalue = self.tinfoil.run_command('getRProviders', self.mc) or {} + else: + raise AttributeError("%s instance has no attribute '%s'" % (self.__class__.__name__, name)) + + self._cache[name] = attrvalue + return attrvalue + + def __init__(self, tinfoil): + self.tinfoil = tinfoil + self.multiconfigs = [''] + (tinfoil.config_data.getVar('BBMULTICONFIG') or '').split() + self.collections = {} + self.recipecaches = {} + for mc in self.multiconfigs: + self.collections[mc] = self.TinfoilCookerCollectionAdapter(tinfoil, mc) + self.recipecaches[mc] = self.TinfoilRecipeCacheAdapter(tinfoil, mc) + self._cache = {} + def __getattr__(self, name): + # Grab these only when they are requested since they aren't always used + if name in self._cache: + return self._cache[name] + elif name == 'skiplist': + attrvalue = self.tinfoil.get_skipped_recipes() + elif name == 'bbfile_config_priorities': + ret = self.tinfoil.run_command('getLayerPriorities') + bbfile_config_priorities = [] + for collection, pattern, regex, pri in ret: + bbfile_config_priorities.append((collection, pattern, re.compile(regex), pri)) + + attrvalue = bbfile_config_priorities + else: + raise AttributeError("%s instance has no attribute '%s'" % (self.__class__.__name__, name)) + + self._cache[name] = attrvalue + return attrvalue + + def findBestProvider(self, pn): + return self.tinfoil.find_best_provider(pn) + + +class TinfoilRecipeInfo: + """ + Provides a convenient representation of the cached information for a single recipe. + Some attributes are set on construction, others are read on-demand (which internally + may result in a remote procedure call to the bitbake server the first time). + Note that only information which is cached is available through this object - if + you need other variable values you will need to parse the recipe using + Tinfoil.parse_recipe(). + """ + def __init__(self, recipecache, d, pn, fn, fns): + self._recipecache = recipecache + self._d = d + self.pn = pn + self.fn = fn + self.fns = fns + self.inherit_files = recipecache.inherits[fn] + self.depends = recipecache.deps[fn] + (self.pe, self.pv, self.pr) = recipecache.pkg_pepvpr[fn] + self._cached_packages = None + self._cached_rprovides = None + self._cached_packages_dynamic = None + + def __getattr__(self, name): + if name == 'alternates': + return [x for x in self.fns if x != self.fn] + elif name == 'rdepends': + return self._recipecache.rundeps[self.fn] + elif name == 'rrecommends': + return self._recipecache.runrecs[self.fn] + elif name == 'provides': + return self._recipecache.fn_provides[self.fn] + elif name == 'packages': + if self._cached_packages is None: + self._cached_packages = [] + for pkg, fns in self._recipecache.packages.items(): + if self.fn in fns: + self._cached_packages.append(pkg) + return self._cached_packages + elif name == 'packages_dynamic': + if self._cached_packages_dynamic is None: + self._cached_packages_dynamic = [] + for pkg, fns in self._recipecache.packages_dynamic.items(): + if self.fn in fns: + self._cached_packages_dynamic.append(pkg) + return self._cached_packages_dynamic + elif name == 'rprovides': + if self._cached_rprovides is None: + self._cached_rprovides = [] + for pkg, fns in self._recipecache.rproviders.items(): + if self.fn in fns: + self._cached_rprovides.append(pkg) + return self._cached_rprovides + else: + raise AttributeError("%s instance has no attribute '%s'" % (self.__class__.__name__, name)) + def inherits(self, only_recipe=False): + """ + Get the inherited classes for a recipe. Returns the class names only. + Parameters: + only_recipe: True to return only the classes inherited by the recipe + itself, False to return all classes inherited within + the context for the recipe (which includes globally + inherited classes). + """ + if only_recipe: + global_inherit = [x for x in (self._d.getVar('BBINCLUDED') or '').split() if x.endswith('.bbclass')] + else: + global_inherit = [] + for clsfile in self.inherit_files: + if only_recipe and clsfile in global_inherit: + continue + clsname = os.path.splitext(os.path.basename(clsfile))[0] + yield clsname + def __str__(self): + return '%s' % self.pn + + +class Tinfoil: + """ + Tinfoil - an API for scripts and utilities to query + BitBake internals and perform build operations. + """ + + def __init__(self, output=sys.stdout, tracking=False, setup_logging=True): + """ + Create a new tinfoil object. + Parameters: + output: specifies where console output should be sent. Defaults + to sys.stdout. + tracking: True to enable variable history tracking, False to + disable it (default). Enabling this has a minor + performance impact so typically it isn't enabled + unless you need to query variable history. + setup_logging: True to setup a logger so that things like + bb.warn() will work immediately and timeout warnings + are visible; False to let BitBake do this itself. + """ + self.logger = logging.getLogger('BitBake') + self.config_data = None + self.cooker = None + self.tracking = tracking + self.ui_module = None + self.server_connection = None + self.recipes_parsed = False + self.quiet = 0 + self.oldhandlers = self.logger.handlers[:] + if setup_logging: + # This is the *client-side* logger, nothing to do with + # logging messages from the server + bb.msg.logger_create('BitBake', output) + self.localhandlers = [] + for handler in self.logger.handlers: + if handler not in self.oldhandlers: + self.localhandlers.append(handler) + + def __enter__(self): + return self + + def __exit__(self, type, value, traceback): + self.shutdown() + + def prepare(self, config_only=False, config_params=None, quiet=0, extra_features=None): + """ + Prepares the underlying BitBake system to be used via tinfoil. + This function must be called prior to calling any of the other + functions in the API. + NOTE: if you call prepare() you must absolutely call shutdown() + before your code terminates. You can use a "with" block to ensure + this happens e.g. + + with bb.tinfoil.Tinfoil() as tinfoil: + tinfoil.prepare() + ... + + Parameters: + config_only: True to read only the configuration and not load + the cache / parse recipes. This is useful if you just + want to query the value of a variable at the global + level or you want to do anything else that doesn't + involve knowing anything about the recipes in the + current configuration. False loads the cache / parses + recipes. + config_params: optionally specify your own configuration + parameters. If not specified an instance of + TinfoilConfigParameters will be created internally. + quiet: quiet level controlling console output - equivalent + to bitbake's -q/--quiet option. Default of 0 gives + the same output level as normal bitbake execution. + extra_features: extra features to be added to the feature + set requested from the server. See + CookerFeatures._feature_list for possible + features. + """ + self.quiet = quiet + + if self.tracking: + extrafeatures = [bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING] + else: + extrafeatures = [] + + if extra_features: + extrafeatures += extra_features + + if not config_params: + config_params = TinfoilConfigParameters(config_only=config_only, quiet=quiet) + + if not config_only: + # Disable local loggers because the UI module is going to set up its own + for handler in self.localhandlers: + self.logger.handlers.remove(handler) + self.localhandlers = [] + + self.server_connection, ui_module = setup_bitbake(config_params, extrafeatures) + + self.ui_module = ui_module + + # Ensure the path to bitbake's bin directory is in PATH so that things like + # bitbake-worker can be run (usually this is the case, but it doesn't have to be) + path = os.getenv('PATH').split(':') + bitbakebinpath = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..', 'bin')) + for entry in path: + if entry.endswith(os.sep): + entry = entry[:-1] + if os.path.abspath(entry) == bitbakebinpath: + break + else: + path.insert(0, bitbakebinpath) + os.environ['PATH'] = ':'.join(path) + + if self.server_connection: + _server_connections.append(self.server_connection) + if config_only: + config_params.updateToServer(self.server_connection.connection, os.environ.copy()) + self.run_command('parseConfiguration') + else: + self.run_actions(config_params) + self.recipes_parsed = True + + self.config_data = TinfoilDataStoreConnector(self, 0) + self.cooker = TinfoilCookerAdapter(self) + self.cooker_data = self.cooker.recipecaches[''] + else: + raise Exception('Failed to start bitbake server') + + def run_actions(self, config_params): + """ + Run the actions specified in config_params through the UI. + """ + ret = self.ui_module.main(self.server_connection.connection, self.server_connection.events, config_params) + if ret: + raise TinfoilUIException(ret) + + def parseRecipes(self): + """ + Legacy function - use parse_recipes() instead. + """ + self.parse_recipes() + + def parse_recipes(self): + """ + Load information on all recipes. Normally you should specify + config_only=False when calling prepare() instead of using this + function; this function is designed for situations where you need + to initialise Tinfoil and use it with config_only=True first and + then conditionally call this function to parse recipes later. + """ + config_params = TinfoilConfigParameters(config_only=False, quiet=self.quiet) + self.run_actions(config_params) + self.recipes_parsed = True + + def run_command(self, command, *params, handle_events=True): + """ + Run a command on the server (as implemented in bb.command). + Note that there are two types of command - synchronous and + asynchronous; in order to receive the results of asynchronous + commands you will need to set an appropriate event mask + using set_event_mask() and listen for the result using + wait_event() - with the correct event mask you'll at least get + bb.command.CommandCompleted and possibly other events before + that depending on the command. + """ + if not self.server_connection: + raise Exception('Not connected to server (did you call .prepare()?)') + + commandline = [command] + if params: + commandline.extend(params) + try: + result = self.server_connection.connection.runCommand(commandline) + finally: + while handle_events: + event = self.wait_event() + if not event: + break + if isinstance(event, logging.LogRecord): + if event.taskpid == 0 or event.levelno > logging.INFO: + self.logger.handle(event) + if result[1]: + raise TinfoilCommandFailed(result[1]) + return result[0] + + def set_event_mask(self, eventlist): + """Set the event mask which will be applied within wait_event()""" + if not self.server_connection: + raise Exception('Not connected to server (did you call .prepare()?)') + llevel, debug_domains = bb.msg.constructLogOptions() + ret = self.run_command('setEventMask', self.server_connection.connection.getEventHandle(), llevel, debug_domains, eventlist) + if not ret: + raise Exception('setEventMask failed') + + def wait_event(self, timeout=0): + """ + Wait for an event from the server for the specified time. + A timeout of 0 means don't wait if there are no events in the queue. + Returns the next event in the queue or None if the timeout was + reached. Note that in order to receive any events you will + first need to set the internal event mask using set_event_mask() + (otherwise whatever event mask the UI set up will be in effect). + """ + if not self.server_connection: + raise Exception('Not connected to server (did you call .prepare()?)') + return self.server_connection.events.waitEvent(timeout) + + def get_overlayed_recipes(self, mc=''): + """ + Find recipes which are overlayed (i.e. where recipes exist in multiple layers) + """ + return defaultdict(list, self.run_command('getOverlayedRecipes', mc)) + + def get_skipped_recipes(self): + """ + Find recipes which were skipped (i.e. SkipRecipe was raised + during parsing). + """ + return OrderedDict(self.run_command('getSkippedRecipes')) + + def get_all_providers(self, mc=''): + return defaultdict(list, self.run_command('allProviders', mc)) + + def find_providers(self, mc=''): + return self.run_command('findProviders', mc) + + def find_best_provider(self, pn): + return self.run_command('findBestProvider', pn) + + def get_runtime_providers(self, rdep): + return self.run_command('getRuntimeProviders', rdep) + + def get_recipe_file(self, pn): + """ + Get the file name for the specified recipe/target. Raises + bb.providers.NoProvider if there is no match or the recipe was + skipped. + """ + best = self.find_best_provider(pn) + if not best or (len(best) > 3 and not best[3]): + skiplist = self.get_skipped_recipes() + taskdata = bb.taskdata.TaskData(None, skiplist=skiplist) + skipreasons = taskdata.get_reasons(pn) + if skipreasons: + raise bb.providers.NoProvider('%s is unavailable:\n %s' % (pn, ' \n'.join(skipreasons))) + else: + raise bb.providers.NoProvider('Unable to find any recipe file matching "%s"' % pn) + return best[3] + + def get_file_appends(self, fn, mc=''): + """ + Find the bbappends for a recipe file + """ + return self.run_command('getFileAppends', fn, mc) + + def all_recipes(self, mc='', sort=True): + """ + Enable iterating over all recipes in the current configuration. + Returns an iterator over TinfoilRecipeInfo objects created on demand. + Parameters: + mc: The multiconfig, default of '' uses the main configuration. + sort: True to sort recipes alphabetically (default), False otherwise + """ + recipecache = self.cooker.recipecaches[mc] + if sort: + recipes = sorted(recipecache.pkg_pn.items()) + else: + recipes = recipecache.pkg_pn.items() + for pn, fns in recipes: + prov = self.find_best_provider(pn) + recipe = TinfoilRecipeInfo(recipecache, + self.config_data, + pn=pn, + fn=prov[3], + fns=fns) + yield recipe + + def all_recipe_files(self, mc='', variants=True, preferred_only=False): + """ + Enable iterating over all recipe files in the current configuration. + Returns an iterator over file paths. + Parameters: + mc: The multiconfig, default of '' uses the main configuration. + variants: True to include variants of recipes created through + BBCLASSEXTEND (default) or False to exclude them + preferred_only: True to include only the preferred recipe where + multiple exist providing the same PN, False to list + all recipes + """ + recipecache = self.cooker.recipecaches[mc] + if preferred_only: + files = [] + for pn in recipecache.pkg_pn.keys(): + prov = self.find_best_provider(pn) + files.append(prov[3]) + else: + files = recipecache.pkg_fn.keys() + for fn in sorted(files): + if not variants and fn.startswith('virtual:'): + continue + yield fn + + + def get_recipe_info(self, pn, mc=''): + """ + Get information on a specific recipe in the current configuration by name (PN). + Returns a TinfoilRecipeInfo object created on demand. + Parameters: + mc: The multiconfig, default of '' uses the main configuration. + """ + recipecache = self.cooker.recipecaches[mc] + prov = self.find_best_provider(pn) + fn = prov[3] + if fn: + actual_pn = recipecache.pkg_fn[fn] + recipe = TinfoilRecipeInfo(recipecache, + self.config_data, + pn=actual_pn, + fn=fn, + fns=recipecache.pkg_pn[actual_pn]) + return recipe + else: + return None + + def parse_recipe(self, pn): + """ + Parse the specified recipe and return a datastore object + representing the environment for the recipe. + """ + fn = self.get_recipe_file(pn) + return self.parse_recipe_file(fn) + + def parse_recipe_file(self, fn, appends=True, appendlist=None, config_data=None): + """ + Parse the specified recipe file (with or without bbappends) + and return a datastore object representing the environment + for the recipe. + Parameters: + fn: recipe file to parse - can be a file path or virtual + specification + appends: True to apply bbappends, False otherwise + appendlist: optional list of bbappend files to apply, if you + want to filter them + """ + if self.tracking: + # Enable history tracking just for the parse operation + self.run_command('enableDataTracking') + try: + if appends and appendlist == []: + appends = False + if config_data: + config_data = bb.data.createCopy(config_data) + dscon = self.run_command('parseRecipeFile', fn, appends, appendlist, config_data.dsindex) + else: + dscon = self.run_command('parseRecipeFile', fn, appends, appendlist) + if dscon: + return self._reconvert_type(dscon, 'DataStoreConnectionHandle') + else: + return None + finally: + if self.tracking: + self.run_command('disableDataTracking') + + def build_file(self, buildfile, task, internal=True): + """ + Runs the specified task for just a single recipe (i.e. no dependencies). + This is equivalent to bitbake -b, except with the default internal=True + no warning about dependencies will be produced, normal info messages + from the runqueue will be silenced and BuildInit, BuildStarted and + BuildCompleted events will not be fired. + """ + return self.run_command('buildFile', buildfile, task, internal) + + def build_targets(self, targets, task=None, handle_events=True, extra_events=None, event_callback=None): + """ + Builds the specified targets. This is equivalent to a normal invocation + of bitbake. Has built-in event handling which is enabled by default and + can be extended if needed. + Parameters: + targets: + One or more targets to build. Can be a list or a + space-separated string. + task: + The task to run; if None then the value of BB_DEFAULT_TASK + will be used. Default None. + handle_events: + True to handle events in a similar way to normal bitbake + invocation with knotty; False to return immediately (on the + assumption that the caller will handle the events instead). + Default True. + extra_events: + An optional list of events to add to the event mask (if + handle_events=True). If you add events here you also need + to specify a callback function in event_callback that will + handle the additional events. Default None. + event_callback: + An optional function taking a single parameter which + will be called first upon receiving any event (if + handle_events=True) so that the caller can override or + extend the event handling. Default None. + """ + if isinstance(targets, str): + targets = targets.split() + if not task: + task = self.config_data.getVar('BB_DEFAULT_TASK') + + if handle_events: + # A reasonable set of default events matching up with those we handle below + eventmask = [ + 'bb.event.BuildStarted', + 'bb.event.BuildCompleted', + 'logging.LogRecord', + 'bb.event.NoProvider', + 'bb.command.CommandCompleted', + 'bb.command.CommandFailed', + 'bb.build.TaskStarted', + 'bb.build.TaskFailed', + 'bb.build.TaskSucceeded', + 'bb.build.TaskFailedSilent', + 'bb.build.TaskProgress', + 'bb.runqueue.runQueueTaskStarted', + 'bb.runqueue.sceneQueueTaskStarted', + 'bb.event.ProcessStarted', + 'bb.event.ProcessProgress', + 'bb.event.ProcessFinished', + ] + if extra_events: + eventmask.extend(extra_events) + ret = self.set_event_mask(eventmask) + + includelogs = self.config_data.getVar('BBINCLUDELOGS') + loglines = self.config_data.getVar('BBINCLUDELOGS_LINES') + + ret = self.run_command('buildTargets', targets, task) + if handle_events: + result = False + # Borrowed from knotty, instead somewhat hackily we use the helper + # as the object to store "shutdown" on + helper = bb.ui.uihelper.BBUIHelper() + helper.shutdown = 0 + parseprogress = None + termfilter = bb.ui.knotty.TerminalFilter(helper, helper, self.logger.handlers, quiet=self.quiet) + try: + while True: + try: + event = self.wait_event(0.25) + if event: + if event_callback and event_callback(event): + continue + if helper.eventHandler(event): + if isinstance(event, bb.build.TaskFailedSilent): + self.logger.warning("Logfile for failed setscene task is %s" % event.logfile) + elif isinstance(event, bb.build.TaskFailed): + bb.ui.knotty.print_event_log(event, includelogs, loglines, termfilter) + continue + if isinstance(event, bb.event.ProcessStarted): + if self.quiet > 1: + continue + parseprogress = bb.ui.knotty.new_progress(event.processname, event.total) + parseprogress.start(False) + continue + if isinstance(event, bb.event.ProcessProgress): + if self.quiet > 1: + continue + if parseprogress: + parseprogress.update(event.progress) + else: + bb.warn("Got ProcessProgress event for something that never started?") + continue + if isinstance(event, bb.event.ProcessFinished): + if self.quiet > 1: + continue + if parseprogress: + parseprogress.finish() + parseprogress = None + continue + if isinstance(event, bb.command.CommandCompleted): + result = True + break + if isinstance(event, bb.command.CommandFailed): + self.logger.error(str(event)) + result = False + break + if isinstance(event, logging.LogRecord): + if event.taskpid == 0 or event.levelno > logging.INFO: + self.logger.handle(event) + continue + if isinstance(event, bb.event.NoProvider): + self.logger.error(str(event)) + result = False + break + + elif helper.shutdown > 1: + break + termfilter.updateFooter() + except KeyboardInterrupt: + termfilter.clearFooter() + if helper.shutdown == 1: + print("\nSecond Keyboard Interrupt, stopping...\n") + ret = self.run_command("stateForceShutdown") + if ret and ret[2]: + self.logger.error("Unable to cleanly stop: %s" % ret[2]) + elif helper.shutdown == 0: + print("\nKeyboard Interrupt, closing down...\n") + interrupted = True + ret = self.run_command("stateShutdown") + if ret and ret[2]: + self.logger.error("Unable to cleanly shutdown: %s" % ret[2]) + helper.shutdown = helper.shutdown + 1 + termfilter.clearFooter() + finally: + termfilter.finish() + if helper.failed_tasks: + result = False + return result + else: + return ret + + def shutdown(self): + """ + Shut down tinfoil. Disconnects from the server and gracefully + releases any associated resources. You must call this function if + prepare() has been called, or use a with... block when you create + the tinfoil object which will ensure that it gets called. + """ + try: + if self.server_connection: + try: + self.run_command('clientComplete') + finally: + _server_connections.remove(self.server_connection) + bb.event.ui_queue = [] + self.server_connection.terminate() + self.server_connection = None + + finally: + # Restore logging handlers to how it looked when we started + if self.oldhandlers: + for handler in self.logger.handlers: + if handler not in self.oldhandlers: + self.logger.handlers.remove(handler) + + def _reconvert_type(self, obj, origtypename): + """ + Convert an object back to the right type, in the case + that marshalling has changed it (especially with xmlrpc) + """ + supported_types = { + 'set': set, + 'DataStoreConnectionHandle': bb.command.DataStoreConnectionHandle, + } + + origtype = supported_types.get(origtypename, None) + if origtype is None: + raise Exception('Unsupported type "%s"' % origtypename) + if type(obj) == origtype: + newobj = obj + elif isinstance(obj, dict): + # New style class + newobj = origtype() + for k,v in obj.items(): + setattr(newobj, k, v) + else: + # Assume we can coerce the type + newobj = origtype(obj) + + if isinstance(newobj, bb.command.DataStoreConnectionHandle): + newobj = TinfoilDataStoreConnector(self, newobj.dsindex) + + return newobj + + +class TinfoilConfigParameters(BitBakeConfigParameters): + + def __init__(self, config_only, **options): + self.initial_options = options + # Apply some sane defaults + if not 'parse_only' in options: + self.initial_options['parse_only'] = not config_only + #if not 'status_only' in options: + # self.initial_options['status_only'] = config_only + if not 'ui' in options: + self.initial_options['ui'] = 'knotty' + if not 'argv' in options: + self.initial_options['argv'] = [] + + super(TinfoilConfigParameters, self).__init__() + + def parseCommandLine(self, argv=None): + # We don't want any parameters parsed from the command line + opts = super(TinfoilConfigParameters, self).parseCommandLine([]) + for key, val in self.initial_options.items(): + setattr(opts[0], key, val) + return opts diff --git a/poky/bitbake/lib/bb/ui/__init__.py b/poky/bitbake/lib/bb/ui/__init__.py new file mode 100644 index 0000000..4b7ac36 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/__init__.py @@ -0,0 +1,7 @@ +# +# BitBake UI Implementation +# +# Copyright (C) 2006-2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# diff --git a/poky/bitbake/lib/bb/ui/buildinfohelper.py b/poky/bitbake/lib/bb/ui/buildinfohelper.py new file mode 100644 index 0000000..129bb32 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/buildinfohelper.py @@ -0,0 +1,1982 @@ +# +# BitBake ToasterUI Implementation +# +# Copyright (C) 2013 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import sys +import bb +import re +import os + +import django +from django.utils import timezone + +import toaster +# Add toaster module to the search path to help django.setup() find the right +# modules +sys.path.insert(0, os.path.dirname(toaster.__file__)) + +#Set the DJANGO_SETTINGS_MODULE if it's not already set +os.environ["DJANGO_SETTINGS_MODULE"] =\ + os.environ.get("DJANGO_SETTINGS_MODULE", + "toaster.toastermain.settings") +# Setup django framework (needs to be done before importing modules) +django.setup() + +from orm.models import Build, Task, Recipe, Layer_Version, Layer, Target, LogMessage, HelpText +from orm.models import Target_Image_File, TargetKernelFile, TargetSDKFile +from orm.models import Variable, VariableHistory +from orm.models import Package, Package_File, Target_Installed_Package, Target_File +from orm.models import Task_Dependency, Package_Dependency +from orm.models import Recipe_Dependency, Provides +from orm.models import Project, CustomImagePackage +from orm.models import signal_runbuilds + +from bldcontrol.models import BuildEnvironment, BuildRequest +from bldcontrol.models import BRLayer +from bldcontrol import bbcontroller + +from bb.msg import BBLogFormatter as formatter +from django.db import models +from pprint import pformat +import logging +from datetime import datetime, timedelta + +from django.db import transaction + + +# pylint: disable=invalid-name +# the logger name is standard throughout BitBake +logger = logging.getLogger("ToasterLogger") + +class NotExisting(Exception): + pass + +class ORMWrapper(object): + """ This class creates the dictionaries needed to store information in the database + following the format defined by the Django models. It is also used to save this + information in the database. + """ + + def __init__(self): + self.layer_version_objects = [] + self.layer_version_built = [] + self.task_objects = {} + self.recipe_objects = {} + + @staticmethod + def _build_key(**kwargs): + key = "0" + for k in sorted(kwargs.keys()): + if isinstance(kwargs[k], models.Model): + key += "-%d" % kwargs[k].id + else: + key += "-%s" % str(kwargs[k]) + return key + + + def _cached_get_or_create(self, clazz, **kwargs): + """ This is a memory-cached get_or_create. We assume that the objects will not be created in the + database through any other means. + """ + + assert issubclass(clazz, models.Model), "_cached_get_or_create needs to get the class as first argument" + + key = ORMWrapper._build_key(**kwargs) + dictname = "objects_%s" % clazz.__name__ + if not dictname in vars(self).keys(): + vars(self)[dictname] = {} + + created = False + if not key in vars(self)[dictname].keys(): + vars(self)[dictname][key], created = \ + clazz.objects.get_or_create(**kwargs) + + return (vars(self)[dictname][key], created) + + + def _cached_get(self, clazz, **kwargs): + """ This is a memory-cached get. We assume that the objects will not change in the database between gets. + """ + assert issubclass(clazz, models.Model), "_cached_get needs to get the class as first argument" + + key = ORMWrapper._build_key(**kwargs) + dictname = "objects_%s" % clazz.__name__ + + if not dictname in vars(self).keys(): + vars(self)[dictname] = {} + + if not key in vars(self)[dictname].keys(): + vars(self)[dictname][key] = clazz.objects.get(**kwargs) + + return vars(self)[dictname][key] + + def get_similar_target_with_image_files(self, target): + """ + Get a Target object "similar" to target; i.e. with the same target + name ('core-image-minimal' etc.) and machine. + """ + return target.get_similar_target_with_image_files() + + def get_similar_target_with_sdk_files(self, target): + return target.get_similar_target_with_sdk_files() + + def clone_image_artifacts(self, target_from, target_to): + target_to.clone_image_artifacts_from(target_from) + + def clone_sdk_artifacts(self, target_from, target_to): + target_to.clone_sdk_artifacts_from(target_from) + + def _timestamp_to_datetime(self, secs): + """ + Convert timestamp in seconds to Python datetime + """ + return timezone.make_aware(datetime(1970, 1, 1) + timedelta(seconds=secs)) + + # pylint: disable=no-self-use + # we disable detection of no self use in functions because the methods actually work on the object + # even if they don't touch self anywhere + + # pylint: disable=bad-continuation + # we do not follow the python conventions for continuation indentation due to long lines here + + def get_or_create_build_object(self, brbe): + prj = None + buildrequest = None + if brbe is not None: + # Toaster-triggered build + logger.debug("buildinfohelper: brbe is %s" % brbe) + br, _ = brbe.split(":") + buildrequest = BuildRequest.objects.get(pk=br) + prj = buildrequest.project + else: + # CLI build + prj = Project.objects.get_or_create_default_project() + logger.debug("buildinfohelper: project is not specified, defaulting to %s" % prj) + + if buildrequest is not None: + # reuse existing Build object + build = buildrequest.build + build.project = prj + build.save() + else: + # create new Build object + now = timezone.now() + build = Build.objects.create( + project=prj, + started_on=now, + completed_on=now, + build_name='') + + logger.debug("buildinfohelper: build is created %s" % build) + + if buildrequest is not None: + buildrequest.build = build + buildrequest.save() + + return build + + def update_build(self, build, data_dict): + for key in data_dict: + setattr(build, key, data_dict[key]) + build.save() + + @staticmethod + def get_or_create_targets(target_info): + """ + NB get_or_create() is used here because for Toaster-triggered builds, + we already created the targets when the build was triggered. + """ + result = [] + for target in target_info['targets']: + task = '' + if ':' in target: + target, task = target.split(':', 1) + if task.startswith('do_'): + task = task[3:] + if task == 'build': + task = '' + + obj, _ = Target.objects.get_or_create(build=target_info['build'], + target=target, + task=task) + result.append(obj) + return result + + def update_build_stats_and_outcome(self, build, errors, warnings, taskfailures): + assert isinstance(build,Build) + assert isinstance(errors, int) + assert isinstance(warnings, int) + + if build.outcome == Build.CANCELLED: + return + try: + if build.buildrequest.state == BuildRequest.REQ_CANCELLING: + return + except AttributeError: + # We may not have a buildrequest if this is a command line build + pass + + outcome = Build.SUCCEEDED + if errors or taskfailures: + outcome = Build.FAILED + + build.completed_on = timezone.now() + build.outcome = outcome + build.save() + + # We force a sync point here to force the outcome status commit, + # which resolves a race condition with the build completion takedown + transaction.set_autocommit(True) + transaction.set_autocommit(False) + + signal_runbuilds() + + def update_target_set_license_manifest(self, target, license_manifest_path): + target.license_manifest_path = license_manifest_path + target.save() + + def update_target_set_package_manifest(self, target, package_manifest_path): + target.package_manifest_path = package_manifest_path + target.save() + + def update_task_object(self, build, task_name, recipe_name, task_stats): + """ + Find the task for build which matches the recipe and task name + to be stored + """ + task_to_update = Task.objects.get( + build = build, + task_name = task_name, + recipe__name = recipe_name + ) + + if 'started' in task_stats and 'ended' in task_stats: + task_to_update.started = self._timestamp_to_datetime(task_stats['started']) + task_to_update.ended = self._timestamp_to_datetime(task_stats['ended']) + task_to_update.elapsed_time = (task_stats['ended'] - task_stats['started']) + task_to_update.cpu_time_user = task_stats.get('cpu_time_user') + task_to_update.cpu_time_system = task_stats.get('cpu_time_system') + if 'disk_io_read' in task_stats and 'disk_io_write' in task_stats: + task_to_update.disk_io_read = task_stats['disk_io_read'] + task_to_update.disk_io_write = task_stats['disk_io_write'] + task_to_update.disk_io = task_stats['disk_io_read'] + task_stats['disk_io_write'] + + task_to_update.save() + + def get_update_task_object(self, task_information, must_exist = False): + assert 'build' in task_information + assert 'recipe' in task_information + assert 'task_name' in task_information + + # we use must_exist info for database look-up optimization + task_object, created = self._cached_get_or_create(Task, + build=task_information['build'], + recipe=task_information['recipe'], + task_name=task_information['task_name'] + ) + if created and must_exist: + task_information['debug'] = "build id %d, recipe id %d" % (task_information['build'].pk, task_information['recipe'].pk) + raise NotExisting("Task object created when expected to exist", task_information) + + object_changed = False + for v in vars(task_object): + if v in task_information.keys(): + if vars(task_object)[v] != task_information[v]: + vars(task_object)[v] = task_information[v] + object_changed = True + + # update setscene-related information if the task has a setscene + if task_object.outcome == Task.OUTCOME_COVERED and 1 == task_object.get_related_setscene().count(): + task_object.outcome = Task.OUTCOME_CACHED + object_changed = True + + outcome_task_setscene = Task.objects.get(task_executed=True, build = task_object.build, + recipe = task_object.recipe, task_name=task_object.task_name+"_setscene").outcome + if outcome_task_setscene == Task.OUTCOME_SUCCESS: + task_object.sstate_result = Task.SSTATE_RESTORED + object_changed = True + elif outcome_task_setscene == Task.OUTCOME_FAILED: + task_object.sstate_result = Task.SSTATE_FAILED + object_changed = True + + if object_changed: + task_object.save() + return task_object + + + def get_update_recipe_object(self, recipe_information, must_exist = False): + assert 'layer_version' in recipe_information + assert 'file_path' in recipe_information + assert 'pathflags' in recipe_information + + assert not recipe_information['file_path'].startswith("/") # we should have layer-relative paths at all times + + + def update_recipe_obj(recipe_object): + object_changed = False + for v in vars(recipe_object): + if v in recipe_information.keys(): + object_changed = True + vars(recipe_object)[v] = recipe_information[v] + + if object_changed: + recipe_object.save() + + recipe, created = self._cached_get_or_create(Recipe, layer_version=recipe_information['layer_version'], + file_path=recipe_information['file_path'], pathflags = recipe_information['pathflags']) + + update_recipe_obj(recipe) + + built_recipe = None + # Create a copy of the recipe for historical puposes and update it + for built_layer in self.layer_version_built: + if built_layer.layer == recipe_information['layer_version'].layer: + built_recipe, c = self._cached_get_or_create(Recipe, + layer_version=built_layer, + file_path=recipe_information['file_path'], + pathflags = recipe_information['pathflags']) + update_recipe_obj(built_recipe) + break + + + # If we're in analysis mode or if this is a custom recipe + # then we are wholly responsible for the data + # and therefore we return the 'real' recipe rather than the build + # history copy of the recipe. + if recipe_information['layer_version'].build is not None and \ + recipe_information['layer_version'].build.project == \ + Project.objects.get_or_create_default_project(): + return recipe + + if built_recipe is None: + return recipe + + return built_recipe + + def get_update_layer_version_object(self, build_obj, layer_obj, layer_version_information): + if isinstance(layer_obj, Layer_Version): + # We already found our layer version for this build so just + # update it with the new build information + logger.debug("We found our layer from toaster") + layer_obj.local_path = layer_version_information['local_path'] + layer_obj.save() + self.layer_version_objects.append(layer_obj) + + # create a new copy of this layer version as a snapshot for + # historical purposes + layer_copy, c = Layer_Version.objects.get_or_create( + build=build_obj, + layer=layer_obj.layer, + release=layer_obj.release, + branch=layer_version_information['branch'], + commit=layer_version_information['commit'], + local_path=layer_version_information['local_path'], + ) + + logger.debug("Created new layer version %s for build history", + layer_copy.layer.name) + + self.layer_version_built.append(layer_copy) + + return layer_obj + + assert isinstance(build_obj, Build) + assert isinstance(layer_obj, Layer) + assert 'branch' in layer_version_information + assert 'commit' in layer_version_information + assert 'priority' in layer_version_information + assert 'local_path' in layer_version_information + + # If we're doing a command line build then associate this new layer with the + # project to avoid it 'contaminating' toaster data + project = None + if build_obj.project == Project.objects.get_or_create_default_project(): + project = build_obj.project + + layer_version_object, _ = Layer_Version.objects.get_or_create( + build = build_obj, + layer = layer_obj, + branch = layer_version_information['branch'], + commit = layer_version_information['commit'], + priority = layer_version_information['priority'], + local_path = layer_version_information['local_path'], + project=project) + + self.layer_version_objects.append(layer_version_object) + + return layer_version_object + + def get_update_layer_object(self, layer_information, brbe): + assert 'name' in layer_information + assert 'layer_index_url' in layer_information + + # From command line builds we have no brbe as the request is directly + # from bitbake + if brbe is None: + # If we don't have git commit sha then we're using a non-git + # layer so set the layer_source_dir to identify it as such + if not layer_information['version']['commit']: + local_source_dir = layer_information["local_path"] + else: + local_source_dir = None + + layer_object, _ = \ + Layer.objects.get_or_create( + name=layer_information['name'], + local_source_dir=local_source_dir, + layer_index_url=layer_information['layer_index_url']) + + return layer_object + else: + br_id, be_id = brbe.split(":") + + # Find the layer version by matching the layer event information + # against the metadata we have in Toaster + + try: + br_layer = BRLayer.objects.get(req=br_id, + name=layer_information['name']) + return br_layer.layer_version + except (BRLayer.MultipleObjectsReturned, BRLayer.DoesNotExist): + # There are multiple of the same layer name or the name + # hasn't been determined by the toaster.bbclass layer + # so let's filter by the local_path + bc = bbcontroller.getBuildEnvironmentController(pk=be_id) + for br_layer in BRLayer.objects.filter(req=br_id): + if br_layer.giturl and \ + layer_information['local_path'].endswith( + bc.getGitCloneDirectory(br_layer.giturl, + br_layer.commit)): + return br_layer.layer_version + + if br_layer.local_source_dir == \ + layer_information['local_path']: + return br_layer.layer_version + + # We've reached the end of our search and couldn't find the layer + # we can continue but some data may be missing + raise NotExisting("Unidentified layer %s" % + pformat(layer_information)) + + def save_target_file_information(self, build_obj, target_obj, filedata): + assert isinstance(build_obj, Build) + assert isinstance(target_obj, Target) + dirs = filedata['dirs'] + files = filedata['files'] + syms = filedata['syms'] + + # always create the root directory as a special case; + # note that this is never displayed, so the owner, group, + # size, permission are irrelevant + tf_obj = Target_File.objects.create(target = target_obj, + path = '/', + size = 0, + owner = '', + group = '', + permission = '', + inodetype = Target_File.ITYPE_DIRECTORY) + tf_obj.save() + + # insert directories, ordered by name depth + for d in sorted(dirs, key=lambda x:len(x[-1].split("/"))): + (user, group, size) = d[1:4] + permission = d[0][1:] + path = d[4].lstrip(".") + + # we already created the root directory, so ignore any + # entry for it + if not path: + continue + + parent_path = "/".join(path.split("/")[:len(path.split("/")) - 1]) + if not parent_path: + parent_path = "/" + parent_obj = self._cached_get(Target_File, target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) + Target_File.objects.create( + target = target_obj, + path = path, + size = size, + inodetype = Target_File.ITYPE_DIRECTORY, + permission = permission, + owner = user, + group = group, + directory = parent_obj) + + + # we insert files + for d in files: + (user, group, size) = d[1:4] + permission = d[0][1:] + path = d[4].lstrip(".") + parent_path = "/".join(path.split("/")[:len(path.split("/")) - 1]) + inodetype = Target_File.ITYPE_REGULAR + if d[0].startswith('b'): + inodetype = Target_File.ITYPE_BLOCK + if d[0].startswith('c'): + inodetype = Target_File.ITYPE_CHARACTER + if d[0].startswith('p'): + inodetype = Target_File.ITYPE_FIFO + + tf_obj = Target_File.objects.create( + target = target_obj, + path = path, + size = size, + inodetype = inodetype, + permission = permission, + owner = user, + group = group) + parent_obj = self._cached_get(Target_File, target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) + tf_obj.directory = parent_obj + tf_obj.save() + + # we insert symlinks + for d in syms: + (user, group, size) = d[1:4] + permission = d[0][1:] + path = d[4].lstrip(".") + filetarget_path = d[6] + + parent_path = "/".join(path.split("/")[:len(path.split("/")) - 1]) + if not filetarget_path.startswith("/"): + # we have a relative path, get a normalized absolute one + filetarget_path = parent_path + "/" + filetarget_path + fcp = filetarget_path.split("/") + fcpl = [] + for i in fcp: + if i == "..": + fcpl.pop() + else: + fcpl.append(i) + filetarget_path = "/".join(fcpl) + + try: + filetarget_obj = Target_File.objects.get(target = target_obj, path = filetarget_path) + except Target_File.DoesNotExist: + # we might have an invalid link; no way to detect this. just set it to None + filetarget_obj = None + + parent_obj = Target_File.objects.get(target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) + + Target_File.objects.create( + target = target_obj, + path = path, + size = size, + inodetype = Target_File.ITYPE_SYMLINK, + permission = permission, + owner = user, + group = group, + directory = parent_obj, + sym_target = filetarget_obj) + + + def save_target_package_information(self, build_obj, target_obj, packagedict, pkgpnmap, recipes, built_package=False): + assert isinstance(build_obj, Build) + assert isinstance(target_obj, Target) + + errormsg = [] + for p in packagedict: + # Search name swtiches round the installed name vs package name + # by default installed name == package name + searchname = p + if p not in pkgpnmap: + logger.warning("Image packages list contains %p, but is" + " missing from all packages list where the" + " metadata comes from. Skipping...", p) + continue + + if 'OPKGN' in pkgpnmap[p].keys(): + searchname = pkgpnmap[p]['OPKGN'] + + built_recipe = recipes[pkgpnmap[p]['PN']] + + if built_package: + packagedict[p]['object'], created = Package.objects.get_or_create( build = build_obj, name = searchname ) + recipe = built_recipe + else: + packagedict[p]['object'], created = \ + CustomImagePackage.objects.get_or_create(name=searchname) + # Clear the Package_Dependency objects as we're going to update + # the CustomImagePackage with the latest dependency information + packagedict[p]['object'].package_dependencies_target.all().delete() + packagedict[p]['object'].package_dependencies_source.all().delete() + try: + recipe = self._cached_get( + Recipe, + name=built_recipe.name, + layer_version__build=None, + layer_version__release= + built_recipe.layer_version.release, + file_path=built_recipe.file_path, + version=built_recipe.version + ) + except (Recipe.DoesNotExist, + Recipe.MultipleObjectsReturned) as e: + logger.info("We did not find one recipe for the" + "configuration data package %s %s" % (p, e)) + continue + + if created or packagedict[p]['object'].size == -1: # save the data anyway we can, not just if it was not created here; bug [YOCTO #6887] + # fill in everything we can from the runtime-reverse package data + try: + packagedict[p]['object'].recipe = recipe + packagedict[p]['object'].version = pkgpnmap[p]['PV'] + packagedict[p]['object'].installed_name = p + packagedict[p]['object'].revision = pkgpnmap[p]['PR'] + packagedict[p]['object'].license = pkgpnmap[p]['LICENSE'] + packagedict[p]['object'].section = pkgpnmap[p]['SECTION'] + packagedict[p]['object'].summary = pkgpnmap[p]['SUMMARY'] + packagedict[p]['object'].description = pkgpnmap[p]['DESCRIPTION'] + packagedict[p]['object'].size = int(pkgpnmap[p]['PKGSIZE']) + + # no files recorded for this package, so save files info + packagefile_objects = [] + for targetpath in pkgpnmap[p]['FILES_INFO']: + targetfilesize = pkgpnmap[p]['FILES_INFO'][targetpath] + packagefile_objects.append(Package_File( package = packagedict[p]['object'], + path = targetpath, + size = targetfilesize)) + if packagefile_objects: + Package_File.objects.bulk_create(packagefile_objects) + except KeyError as e: + errormsg.append(" stpi: Key error, package %s key %s \n" % (p, e)) + + # save disk installed size + packagedict[p]['object'].installed_size = packagedict[p]['size'] + packagedict[p]['object'].save() + + if built_package: + Target_Installed_Package.objects.create(target = target_obj, package = packagedict[p]['object']) + + packagedeps_objs = [] + pattern_so = re.compile(r'.*\.so(\.\d*)?$') + pattern_lib = re.compile(r'.*\-suffix(\d*)?$') + pattern_ko = re.compile(r'^kernel-module-.*') + for p in packagedict: + for (px,deptype) in packagedict[p]['depends']: + if deptype == 'depends': + tdeptype = Package_Dependency.TYPE_TRDEPENDS + elif deptype == 'recommends': + tdeptype = Package_Dependency.TYPE_TRECOMMENDS + + try: + # Skip known non-package objects like libraries and kernel modules + if pattern_so.match(px) or pattern_lib.match(px): + logger.info("Toaster does not add library file dependencies to packages (%s,%s)", p, px) + continue + if pattern_ko.match(px): + logger.info("Toaster does not add kernel module dependencies to packages (%s,%s)", p, px) + continue + packagedeps_objs.append(Package_Dependency( + package = packagedict[p]['object'], + depends_on = packagedict[px]['object'], + dep_type = tdeptype, + target = target_obj)) + except KeyError as e: + logger.warning("Could not add dependency to the package %s " + "because %s is an unknown package", p, px) + + if packagedeps_objs: + Package_Dependency.objects.bulk_create(packagedeps_objs) + else: + logger.info("No package dependencies created") + + if errormsg: + logger.warning("buildinfohelper: target_package_info could not identify recipes: \n%s", "".join(errormsg)) + + def save_target_image_file_information(self, target_obj, file_name, file_size): + Target_Image_File.objects.create(target=target_obj, + file_name=file_name, file_size=file_size) + + def save_target_kernel_file(self, target_obj, file_name, file_size): + """ + Save kernel file (bzImage, modules*) information for a Target target_obj. + """ + TargetKernelFile.objects.create(target=target_obj, + file_name=file_name, file_size=file_size) + + def save_target_sdk_file(self, target_obj, file_name, file_size): + """ + Save SDK artifacts to the database, associating them with a + Target object. + """ + TargetSDKFile.objects.create(target=target_obj, file_name=file_name, + file_size=file_size) + + def create_logmessage(self, log_information): + assert 'build' in log_information + assert 'level' in log_information + assert 'message' in log_information + + log_object = LogMessage.objects.create( + build = log_information['build'], + level = log_information['level'], + message = log_information['message']) + + for v in vars(log_object): + if v in log_information.keys(): + vars(log_object)[v] = log_information[v] + + return log_object.save() + + + def save_build_package_information(self, build_obj, package_info, recipes, + built_package): + # assert isinstance(build_obj, Build) + + if not 'PN' in package_info.keys(): + # no package data to save (e.g. 'OPKGN'="lib64-*"|"lib32-*") + return None + + # create and save the object + pname = package_info['PKG'] + built_recipe = recipes[package_info['PN']] + if 'OPKGN' in package_info.keys(): + pname = package_info['OPKGN'] + + if built_package: + bp_object, _ = Package.objects.get_or_create( build = build_obj, + name = pname ) + recipe = built_recipe + else: + bp_object, created = \ + CustomImagePackage.objects.get_or_create(name=pname) + try: + recipe = self._cached_get(Recipe, + name=built_recipe.name, + layer_version__build=None, + file_path=built_recipe.file_path, + version=built_recipe.version) + + except (Recipe.DoesNotExist, Recipe.MultipleObjectsReturned): + logger.debug("We did not find one recipe for the configuration" + "data package %s" % pname) + return + + bp_object.installed_name = package_info['PKG'] + bp_object.recipe = recipe + bp_object.version = package_info['PKGV'] + bp_object.revision = package_info['PKGR'] + bp_object.summary = package_info['SUMMARY'] + bp_object.description = package_info['DESCRIPTION'] + bp_object.size = int(package_info['PKGSIZE']) + bp_object.section = package_info['SECTION'] + bp_object.license = package_info['LICENSE'] + bp_object.save() + + # save any attached file information + packagefile_objects = [] + for path in package_info['FILES_INFO']: + packagefile_objects.append(Package_File( package = bp_object, + path = path, + size = package_info['FILES_INFO'][path] )) + if packagefile_objects: + Package_File.objects.bulk_create(packagefile_objects) + + def _po_byname(p): + if built_package: + pkg, created = Package.objects.get_or_create(build=build_obj, + name=p) + else: + pkg, created = CustomImagePackage.objects.get_or_create(name=p) + + if created: + pkg.size = -1 + pkg.save() + return pkg + + packagedeps_objs = [] + # save soft dependency information + if 'RDEPENDS' in package_info and package_info['RDEPENDS']: + for p in bb.utils.explode_deps(package_info['RDEPENDS']): + packagedeps_objs.append(Package_Dependency( package = bp_object, + depends_on = _po_byname(p), dep_type = Package_Dependency.TYPE_RDEPENDS)) + if 'RPROVIDES' in package_info and package_info['RPROVIDES']: + for p in bb.utils.explode_deps(package_info['RPROVIDES']): + packagedeps_objs.append(Package_Dependency( package = bp_object, + depends_on = _po_byname(p), dep_type = Package_Dependency.TYPE_RPROVIDES)) + if 'RRECOMMENDS' in package_info and package_info['RRECOMMENDS']: + for p in bb.utils.explode_deps(package_info['RRECOMMENDS']): + packagedeps_objs.append(Package_Dependency( package = bp_object, + depends_on = _po_byname(p), dep_type = Package_Dependency.TYPE_RRECOMMENDS)) + if 'RSUGGESTS' in package_info and package_info['RSUGGESTS']: + for p in bb.utils.explode_deps(package_info['RSUGGESTS']): + packagedeps_objs.append(Package_Dependency( package = bp_object, + depends_on = _po_byname(p), dep_type = Package_Dependency.TYPE_RSUGGESTS)) + if 'RREPLACES' in package_info and package_info['RREPLACES']: + for p in bb.utils.explode_deps(package_info['RREPLACES']): + packagedeps_objs.append(Package_Dependency( package = bp_object, + depends_on = _po_byname(p), dep_type = Package_Dependency.TYPE_RREPLACES)) + if 'RCONFLICTS' in package_info and package_info['RCONFLICTS']: + for p in bb.utils.explode_deps(package_info['RCONFLICTS']): + packagedeps_objs.append(Package_Dependency( package = bp_object, + depends_on = _po_byname(p), dep_type = Package_Dependency.TYPE_RCONFLICTS)) + + if packagedeps_objs: + Package_Dependency.objects.bulk_create(packagedeps_objs) + + return bp_object + + def save_build_variables(self, build_obj, vardump): + assert isinstance(build_obj, Build) + + for k in vardump: + desc = vardump[k]['doc'] + if desc is None: + var_words = [word for word in k.split('_')] + root_var = "_".join([word for word in var_words if word.isupper()]) + if root_var and root_var != k and root_var in vardump: + desc = vardump[root_var]['doc'] + if desc is None: + desc = '' + if desc: + HelpText.objects.get_or_create(build=build_obj, + area=HelpText.VARIABLE, + key=k, text=desc) + if not bool(vardump[k]['func']): + value = vardump[k]['v'] + if value is None: + value = '' + variable_obj = Variable.objects.create( build = build_obj, + variable_name = k, + variable_value = value, + description = desc) + + varhist_objects = [] + for vh in vardump[k]['history']: + if not 'documentation.conf' in vh['file']: + varhist_objects.append(VariableHistory( variable = variable_obj, + file_name = vh['file'], + line_number = vh['line'], + operation = vh['op'])) + if varhist_objects: + VariableHistory.objects.bulk_create(varhist_objects) + + +class MockEvent(object): + """ This object is used to create event, for which normal event-processing methods can + be used, out of data that is not coming via an actual event + """ + def __init__(self): + self.msg = None + self.levelno = None + self.taskname = None + self.taskhash = None + self.pathname = None + self.lineno = None + + def getMessage(self): + """ + Simulate LogRecord message return + """ + return self.msg + + +class BuildInfoHelper(object): + """ This class gathers the build information from the server and sends it + towards the ORM wrapper for storing in the database + It is instantiated once per build + Keeps in memory all data that needs matching before writing it to the database + """ + + # tasks which produce image files; note we include '', as we set + # the task for a target to '' (i.e. 'build') if no target is + # explicitly defined + IMAGE_GENERATING_TASKS = ['', 'build', 'image', 'populate_sdk_ext'] + + # pylint: disable=protected-access + # the code will look into the protected variables of the event; no easy way around this + # pylint: disable=bad-continuation + # we do not follow the python conventions for continuation indentation due to long lines here + + def __init__(self, server, has_build_history = False, brbe = None): + self.internal_state = {} + self.internal_state['taskdata'] = {} + self.internal_state['targets'] = [] + self.task_order = 0 + self.autocommit_step = 1 + self.server = server + self.orm_wrapper = ORMWrapper() + self.has_build_history = has_build_history + self.tmp_dir = self.server.runCommand(["getVariable", "TMPDIR"])[0] + + # this is set for Toaster-triggered builds by localhostbecontroller + # via toasterui + self.brbe = brbe + + self.project = None + + logger.debug("buildinfohelper: Build info helper inited %s" % vars(self)) + + + ################### + ## methods to convert event/external info into objects that the ORM layer uses + + def _ensure_build(self): + """ + Ensure the current build object exists and is up to date with + data on the bitbake server + """ + if not 'build' in self.internal_state or not self.internal_state['build']: + # create the Build object + self.internal_state['build'] = \ + self.orm_wrapper.get_or_create_build_object(self.brbe) + + build = self.internal_state['build'] + + # update missing fields on the Build object with found data + build_info = {} + + # set to True if at least one field is going to be set + changed = False + + if not build.build_name: + build_name = self.server.runCommand(["getVariable", "BUILDNAME"])[0] + + # only reset the build name if the one on the server is actually + # a valid value for the build_name field + if build_name is not None: + build_info['build_name'] = build_name + changed = True + + if not build.machine: + build_info['machine'] = self.server.runCommand(["getVariable", "MACHINE"])[0] + changed = True + + if not build.distro: + build_info['distro'] = self.server.runCommand(["getVariable", "DISTRO"])[0] + changed = True + + if not build.distro_version: + build_info['distro_version'] = self.server.runCommand(["getVariable", "DISTRO_VERSION"])[0] + changed = True + + if not build.bitbake_version: + build_info['bitbake_version'] = self.server.runCommand(["getVariable", "BB_VERSION"])[0] + changed = True + + if changed: + self.orm_wrapper.update_build(self.internal_state['build'], build_info) + + def _get_task_information(self, event, recipe): + assert 'taskname' in vars(event) + self._ensure_build() + + task_information = {} + task_information['build'] = self.internal_state['build'] + task_information['outcome'] = Task.OUTCOME_NA + task_information['recipe'] = recipe + task_information['task_name'] = event.taskname + try: + # some tasks don't come with a hash. and that's ok + task_information['sstate_checksum'] = event.taskhash + except AttributeError: + pass + return task_information + + def _get_layer_version_for_dependency(self, pathRE): + """ Returns the layer in the toaster db that has a full regex + match to the pathRE. pathRE - the layer path passed as a regex in the + event. It is created in cooker.py as a collection for the layer + priorities. + """ + self._ensure_build() + + def _sort_longest_path(layer_version): + assert isinstance(layer_version, Layer_Version) + return len(layer_version.local_path) + + # Our paths don't append a trailing slash + if pathRE.endswith("/"): + pathRE = pathRE[:-1] + + p = re.compile(pathRE) + path=re.sub(r'[$^]',r'',pathRE) + # Heuristics: we always match recipe to the deepest layer path in + # the discovered layers + for lvo in sorted(self.orm_wrapper.layer_version_objects, + reverse=True, key=_sort_longest_path): + if p.fullmatch(os.path.abspath(lvo.local_path)): + return lvo + if lvo.layer.local_source_dir: + if p.fullmatch(os.path.abspath(lvo.layer.local_source_dir)): + return lvo + if 0 == path.find(lvo.local_path): + # sub-layer path inside existing layer + return lvo + + # if we get here, we didn't read layers correctly; + # dump whatever information we have on the error log + logger.warning("Could not match layer dependency for path %s : %s", + pathRE, + self.orm_wrapper.layer_version_objects) + return None + + def _get_layer_version_for_path(self, path): + self._ensure_build() + + def _slkey_interactive(layer_version): + assert isinstance(layer_version, Layer_Version) + return len(layer_version.local_path) + + # Heuristics: we always match recipe to the deepest layer path in the discovered layers + for lvo in sorted(self.orm_wrapper.layer_version_objects, reverse=True, key=_slkey_interactive): + # we can match to the recipe file path + if path.startswith(lvo.local_path): + return lvo + if lvo.layer.local_source_dir and \ + path.startswith(lvo.layer.local_source_dir): + return lvo + + #if we get here, we didn't read layers correctly; dump whatever information we have on the error log + logger.warning("Could not match layer version for recipe path %s : %s", path, self.orm_wrapper.layer_version_objects) + + #mockup the new layer + unknown_layer, _ = Layer.objects.get_or_create(name="Unidentified layer", layer_index_url="") + unknown_layer_version_obj, _ = Layer_Version.objects.get_or_create(layer = unknown_layer, build = self.internal_state['build']) + + # append it so we don't run into this error again and again + self.orm_wrapper.layer_version_objects.append(unknown_layer_version_obj) + + return unknown_layer_version_obj + + def _get_recipe_information_from_taskfile(self, taskfile): + localfilepath = taskfile.split(":")[-1] + filepath_flags = ":".join(sorted(taskfile.split(":")[:-1])) + layer_version_obj = self._get_layer_version_for_path(localfilepath) + + + + recipe_info = {} + recipe_info['layer_version'] = layer_version_obj + recipe_info['file_path'] = localfilepath + recipe_info['pathflags'] = filepath_flags + + if recipe_info['file_path'].startswith(recipe_info['layer_version'].local_path): + recipe_info['file_path'] = recipe_info['file_path'][len(recipe_info['layer_version'].local_path):].lstrip("/") + else: + raise RuntimeError("Recipe file path %s is not under layer version at %s" % (recipe_info['file_path'], recipe_info['layer_version'].local_path)) + + return recipe_info + + + ################################ + ## external available methods to store information + @staticmethod + def _get_data_from_event(event): + evdata = None + if '_localdata' in vars(event): + evdata = event._localdata + elif 'data' in vars(event): + evdata = event.data + else: + raise Exception("Event with neither _localdata or data properties") + return evdata + + def store_layer_info(self, event): + layerinfos = BuildInfoHelper._get_data_from_event(event) + self.internal_state['lvs'] = {} + for layer in layerinfos: + try: + self.internal_state['lvs'][self.orm_wrapper.get_update_layer_object(layerinfos[layer], self.brbe)] = layerinfos[layer]['version'] + self.internal_state['lvs'][self.orm_wrapper.get_update_layer_object(layerinfos[layer], self.brbe)]['local_path'] = layerinfos[layer]['local_path'] + except NotExisting as nee: + logger.warning("buildinfohelper: cannot identify layer exception:%s ", nee) + + def store_started_build(self): + self._ensure_build() + + def save_build_log_file_path(self, build_log_path): + self._ensure_build() + + if not self.internal_state['build'].cooker_log_path: + data_dict = {'cooker_log_path': build_log_path} + self.orm_wrapper.update_build(self.internal_state['build'], data_dict) + + def save_build_targets(self, event): + self._ensure_build() + + # create target information + assert '_pkgs' in vars(event) + target_information = {} + target_information['targets'] = event._pkgs + target_information['build'] = self.internal_state['build'] + + self.internal_state['targets'] = self.orm_wrapper.get_or_create_targets(target_information) + + def save_build_layers_and_variables(self): + self._ensure_build() + + build_obj = self.internal_state['build'] + + # save layer version information for this build + if not 'lvs' in self.internal_state: + logger.error("Layer version information not found; Check if the bitbake server was configured to inherit toaster.bbclass.") + else: + for layer_obj in self.internal_state['lvs']: + self.orm_wrapper.get_update_layer_version_object(build_obj, layer_obj, self.internal_state['lvs'][layer_obj]) + + del self.internal_state['lvs'] + + # Save build configuration + data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0] + + # convert the paths from absolute to relative to either the build directory or layer checkouts + path_prefixes = [] + + if self.brbe is not None: + _, be_id = self.brbe.split(":") + be = BuildEnvironment.objects.get(pk = be_id) + path_prefixes.append(be.builddir) + + for layer in sorted(self.orm_wrapper.layer_version_objects, key = lambda x:len(x.local_path), reverse=True): + path_prefixes.append(layer.local_path) + + # we strip the prefixes + for k in data: + if not bool(data[k]['func']): + for vh in data[k]['history']: + if not 'documentation.conf' in vh['file']: + abs_file_name = vh['file'] + for pp in path_prefixes: + if abs_file_name.startswith(pp + "/"): + # preserve layer name in relative path + vh['file']=abs_file_name[pp.rfind("/")+1:] + break + + # save the variables + self.orm_wrapper.save_build_variables(build_obj, data) + + return self.brbe + + def set_recipes_to_parse(self, num_recipes): + """ + Set the number of recipes which need to be parsed for this build. + This is set the first time ParseStarted is received by toasterui. + """ + self._ensure_build() + self.internal_state['build'].recipes_to_parse = num_recipes + self.internal_state['build'].save() + + def set_recipes_parsed(self, num_recipes): + """ + Set the number of recipes parsed so far for this build; this is updated + each time a ParseProgress or ParseCompleted event is received by + toasterui. + """ + self._ensure_build() + if num_recipes <= self.internal_state['build'].recipes_to_parse: + self.internal_state['build'].recipes_parsed = num_recipes + self.internal_state['build'].save() + + def update_target_image_file(self, event): + evdata = BuildInfoHelper._get_data_from_event(event) + + for t in self.internal_state['targets']: + if t.is_image: + output_files = list(evdata.keys()) + for output in output_files: + if t.target in output and 'rootfs' in output and not output.endswith(".manifest"): + self.orm_wrapper.save_target_image_file_information(t, output, evdata[output]) + + def update_artifact_image_file(self, event): + self._ensure_build() + evdata = BuildInfoHelper._get_data_from_event(event) + for artifact_path in evdata.keys(): + self.orm_wrapper.save_artifact_information( + self.internal_state['build'], artifact_path, + evdata[artifact_path]) + + def update_build_information(self, event, errors, warnings, taskfailures): + self._ensure_build() + self.orm_wrapper.update_build_stats_and_outcome( + self.internal_state['build'], errors, warnings, taskfailures) + + def store_started_task(self, event): + assert isinstance(event, (bb.runqueue.sceneQueueTaskStarted, bb.runqueue.runQueueTaskStarted, bb.runqueue.runQueueTaskSkipped)) + assert 'taskfile' in vars(event) + localfilepath = event.taskfile.split(":")[-1] + assert localfilepath.startswith("/") + + identifier = event.taskfile + ":" + event.taskname + + recipe_information = self._get_recipe_information_from_taskfile(event.taskfile) + recipe = self.orm_wrapper.get_update_recipe_object(recipe_information, True) + + task_information = self._get_task_information(event, recipe) + task_information['outcome'] = Task.OUTCOME_NA + + if isinstance(event, bb.runqueue.runQueueTaskSkipped): + assert 'reason' in vars(event) + task_information['task_executed'] = False + if event.reason == "covered": + task_information['outcome'] = Task.OUTCOME_COVERED + if event.reason == "existing": + task_information['outcome'] = Task.OUTCOME_PREBUILT + else: + task_information['task_executed'] = True + if 'noexec' in vars(event) and event.noexec: + task_information['task_executed'] = False + task_information['outcome'] = Task.OUTCOME_EMPTY + task_information['script_type'] = Task.CODING_NA + + # do not assign order numbers to scene tasks + if not isinstance(event, bb.runqueue.sceneQueueTaskStarted): + self.task_order += 1 + task_information['order'] = self.task_order + + self.orm_wrapper.get_update_task_object(task_information) + + self.internal_state['taskdata'][identifier] = { + 'outcome': task_information['outcome'], + } + + + def store_tasks_stats(self, event): + self._ensure_build() + task_data = BuildInfoHelper._get_data_from_event(event) + + for (task_file, task_name, task_stats, recipe_name) in task_data: + build = self.internal_state['build'] + self.orm_wrapper.update_task_object(build, task_name, recipe_name, task_stats) + + def update_and_store_task(self, event): + assert 'taskfile' in vars(event) + localfilepath = event.taskfile.split(":")[-1] + assert localfilepath.startswith("/") + + identifier = event.taskfile + ":" + event.taskname + if not identifier in self.internal_state['taskdata']: + if isinstance(event, bb.build.TaskBase): + # we do a bit of guessing + candidates = [x for x in self.internal_state['taskdata'].keys() if x.endswith(identifier)] + if len(candidates) == 1: + identifier = candidates[0] + elif len(candidates) > 1 and hasattr(event,'_package'): + if 'native-' in event._package: + identifier = 'native:' + identifier + if 'nativesdk-' in event._package: + identifier = 'nativesdk:' + identifier + candidates = [x for x in self.internal_state['taskdata'].keys() if x.endswith(identifier)] + if len(candidates) == 1: + identifier = candidates[0] + + assert identifier in self.internal_state['taskdata'] + identifierlist = identifier.split(":") + realtaskfile = ":".join(identifierlist[0:len(identifierlist)-1]) + recipe_information = self._get_recipe_information_from_taskfile(realtaskfile) + recipe = self.orm_wrapper.get_update_recipe_object(recipe_information, True) + task_information = self._get_task_information(event,recipe) + + task_information['outcome'] = self.internal_state['taskdata'][identifier]['outcome'] + + if 'logfile' in vars(event): + task_information['logfile'] = event.logfile + + if '_message' in vars(event): + task_information['message'] = event._message + + if 'taskflags' in vars(event): + # with TaskStarted, we get even more information + if 'python' in event.taskflags.keys() and event.taskflags['python'] == '1': + task_information['script_type'] = Task.CODING_PYTHON + else: + task_information['script_type'] = Task.CODING_SHELL + + if task_information['outcome'] == Task.OUTCOME_NA: + if isinstance(event, (bb.runqueue.runQueueTaskCompleted, bb.runqueue.sceneQueueTaskCompleted)): + task_information['outcome'] = Task.OUTCOME_SUCCESS + del self.internal_state['taskdata'][identifier] + + if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runqueue.sceneQueueTaskFailed)): + task_information['outcome'] = Task.OUTCOME_FAILED + del self.internal_state['taskdata'][identifier] + + # we force a sync point here, to get the progress bar to show + if self.autocommit_step % 3 == 0: + transaction.set_autocommit(True) + transaction.set_autocommit(False) + self.autocommit_step += 1 + + self.orm_wrapper.get_update_task_object(task_information, True) # must exist + + + def store_missed_state_tasks(self, event): + for (fn, taskname, taskhash, sstatefile) in BuildInfoHelper._get_data_from_event(event)['missed']: + + # identifier = fn + taskname + "_setscene" + recipe_information = self._get_recipe_information_from_taskfile(fn) + recipe = self.orm_wrapper.get_update_recipe_object(recipe_information) + mevent = MockEvent() + mevent.taskname = taskname + mevent.taskhash = taskhash + task_information = self._get_task_information(mevent,recipe) + + task_information['start_time'] = timezone.now() + task_information['outcome'] = Task.OUTCOME_NA + task_information['sstate_checksum'] = taskhash + task_information['sstate_result'] = Task.SSTATE_MISS + task_information['path_to_sstate_obj'] = sstatefile + + self.orm_wrapper.get_update_task_object(task_information) + + for (fn, taskname, taskhash, sstatefile) in BuildInfoHelper._get_data_from_event(event)['found']: + + # identifier = fn + taskname + "_setscene" + recipe_information = self._get_recipe_information_from_taskfile(fn) + recipe = self.orm_wrapper.get_update_recipe_object(recipe_information) + mevent = MockEvent() + mevent.taskname = taskname + mevent.taskhash = taskhash + task_information = self._get_task_information(mevent,recipe) + + task_information['path_to_sstate_obj'] = sstatefile + + self.orm_wrapper.get_update_task_object(task_information) + + + def store_target_package_data(self, event): + self._ensure_build() + + # for all image targets + for target in self.internal_state['targets']: + if target.is_image: + pkgdata = BuildInfoHelper._get_data_from_event(event)['pkgdata'] + imgdata = BuildInfoHelper._get_data_from_event(event)['imgdata'].get(target.target, {}) + filedata = BuildInfoHelper._get_data_from_event(event)['filedata'].get(target.target, {}) + + try: + self.orm_wrapper.save_target_package_information(self.internal_state['build'], target, imgdata, pkgdata, self.internal_state['recipes'], built_package=True) + self.orm_wrapper.save_target_package_information(self.internal_state['build'], target, imgdata.copy(), pkgdata, self.internal_state['recipes'], built_package=False) + except KeyError as e: + logger.warning("KeyError in save_target_package_information" + "%s ", e) + + # only try to find files in the image if the task for this + # target is one which produces image files; otherwise, the old + # list of files in the files-in-image.txt file will be + # appended to the target even if it didn't produce any images + if target.task in BuildInfoHelper.IMAGE_GENERATING_TASKS: + try: + self.orm_wrapper.save_target_file_information(self.internal_state['build'], target, filedata) + except KeyError as e: + logger.warning("KeyError in save_target_file_information" + "%s ", e) + + + + def cancel_cli_build(self): + """ + If a build is currently underway, set its state to CANCELLED; + note that this only gets called for command line builds which are + interrupted, so it doesn't touch any BuildRequest objects + """ + self._ensure_build() + self.internal_state['build'].outcome = Build.CANCELLED + self.internal_state['build'].save() + signal_runbuilds() + + def store_dependency_information(self, event): + assert '_depgraph' in vars(event) + assert 'layer-priorities' in event._depgraph + assert 'pn' in event._depgraph + assert 'tdepends' in event._depgraph + + errormsg = [] + + # save layer version priorities + if 'layer-priorities' in event._depgraph.keys(): + for lv in event._depgraph['layer-priorities']: + (_, path, _, priority) = lv + layer_version_obj = self._get_layer_version_for_dependency(path) + if layer_version_obj: + layer_version_obj.priority = priority + layer_version_obj.save() + + # save recipe information + self.internal_state['recipes'] = {} + for pn in event._depgraph['pn']: + + file_name = event._depgraph['pn'][pn]['filename'].split(":")[-1] + pathflags = ":".join(sorted(event._depgraph['pn'][pn]['filename'].split(":")[:-1])) + layer_version_obj = self._get_layer_version_for_path(file_name) + + assert layer_version_obj is not None + + recipe_info = {} + recipe_info['name'] = pn + recipe_info['layer_version'] = layer_version_obj + + if 'version' in event._depgraph['pn'][pn]: + recipe_info['version'] = event._depgraph['pn'][pn]['version'].lstrip(":") + + if 'summary' in event._depgraph['pn'][pn]: + recipe_info['summary'] = event._depgraph['pn'][pn]['summary'] + + if 'license' in event._depgraph['pn'][pn]: + recipe_info['license'] = event._depgraph['pn'][pn]['license'] + + if 'description' in event._depgraph['pn'][pn]: + recipe_info['description'] = event._depgraph['pn'][pn]['description'] + + if 'section' in event._depgraph['pn'][pn]: + recipe_info['section'] = event._depgraph['pn'][pn]['section'] + + if 'homepage' in event._depgraph['pn'][pn]: + recipe_info['homepage'] = event._depgraph['pn'][pn]['homepage'] + + if 'bugtracker' in event._depgraph['pn'][pn]: + recipe_info['bugtracker'] = event._depgraph['pn'][pn]['bugtracker'] + + recipe_info['file_path'] = file_name + recipe_info['pathflags'] = pathflags + + if recipe_info['file_path'].startswith(recipe_info['layer_version'].local_path): + recipe_info['file_path'] = recipe_info['file_path'][len(recipe_info['layer_version'].local_path):].lstrip("/") + else: + raise RuntimeError("Recipe file path %s is not under layer version at %s" % (recipe_info['file_path'], recipe_info['layer_version'].local_path)) + + recipe = self.orm_wrapper.get_update_recipe_object(recipe_info) + recipe.is_image = False + if 'inherits' in event._depgraph['pn'][pn].keys(): + for cls in event._depgraph['pn'][pn]['inherits']: + if cls.endswith('/image.bbclass'): + recipe.is_image = True + recipe_info['is_image'] = True + # Save the is_image state to the relevant recipe objects + self.orm_wrapper.get_update_recipe_object(recipe_info) + break + if recipe.is_image: + for t in self.internal_state['targets']: + if pn == t.target: + t.is_image = True + t.save() + self.internal_state['recipes'][pn] = recipe + + # we'll not get recipes for key w/ values listed in ASSUME_PROVIDED + + assume_provided = self.server.runCommand(["getVariable", "ASSUME_PROVIDED"])[0].split() + + # save recipe dependency + # buildtime + recipedeps_objects = [] + for recipe in event._depgraph['depends']: + target = self.internal_state['recipes'][recipe] + for dep in event._depgraph['depends'][recipe]: + if dep in assume_provided: + continue + via = None + if 'providermap' in event._depgraph and dep in event._depgraph['providermap']: + deprecipe = event._depgraph['providermap'][dep][0] + dependency = self.internal_state['recipes'][deprecipe] + via = Provides.objects.get_or_create(name=dep, + recipe=dependency)[0] + elif dep in self.internal_state['recipes']: + dependency = self.internal_state['recipes'][dep] + else: + errormsg.append(" stpd: KeyError saving recipe dependency for %s, %s \n" % (recipe, dep)) + continue + recipe_dep = Recipe_Dependency(recipe=target, + depends_on=dependency, + via=via, + dep_type=Recipe_Dependency.TYPE_DEPENDS) + recipedeps_objects.append(recipe_dep) + + Recipe_Dependency.objects.bulk_create(recipedeps_objects) + + # save all task information + def _save_a_task(taskdesc): + spec = re.split(r'\.', taskdesc) + pn = ".".join(spec[0:-1]) + taskname = spec[-1] + e = event + e.taskname = pn + recipe = self.internal_state['recipes'][pn] + task_info = self._get_task_information(e, recipe) + task_info['task_name'] = taskname + task_obj = self.orm_wrapper.get_update_task_object(task_info) + return task_obj + + # create tasks + tasks = {} + for taskdesc in event._depgraph['tdepends']: + tasks[taskdesc] = _save_a_task(taskdesc) + + # create dependencies between tasks + taskdeps_objects = [] + for taskdesc in event._depgraph['tdepends']: + target = tasks[taskdesc] + for taskdep in event._depgraph['tdepends'][taskdesc]: + if taskdep not in tasks: + # Fetch tasks info is not collected previously + dep = _save_a_task(taskdep) + else: + dep = tasks[taskdep] + taskdeps_objects.append(Task_Dependency( task = target, depends_on = dep )) + Task_Dependency.objects.bulk_create(taskdeps_objects) + + if errormsg: + logger.warning("buildinfohelper: dependency info not identify recipes: \n%s", "".join(errormsg)) + + + def store_build_package_information(self, event): + self._ensure_build() + + package_info = BuildInfoHelper._get_data_from_event(event) + self.orm_wrapper.save_build_package_information( + self.internal_state['build'], + package_info, + self.internal_state['recipes'], + built_package=True) + + self.orm_wrapper.save_build_package_information( + self.internal_state['build'], + package_info, + self.internal_state['recipes'], + built_package=False) + + def _store_build_done(self, errorcode): + logger.info("Build exited with errorcode %d", errorcode) + + if not self.brbe: + return + + br_id, be_id = self.brbe.split(":") + + br = BuildRequest.objects.get(pk = br_id) + + # if we're 'done' because we got cancelled update the build outcome + if br.state == BuildRequest.REQ_CANCELLING: + logger.info("Build cancelled") + br.build.outcome = Build.CANCELLED + br.build.save() + self.internal_state['build'] = br.build + errorcode = 0 + + if errorcode == 0: + # request archival of the project artifacts + br.state = BuildRequest.REQ_COMPLETED + else: + br.state = BuildRequest.REQ_FAILED + br.save() + + be = BuildEnvironment.objects.get(pk = be_id) + be.lock = BuildEnvironment.LOCK_FREE + be.save() + signal_runbuilds() + + def store_log_error(self, text): + mockevent = MockEvent() + mockevent.levelno = formatter.ERROR + mockevent.msg = text + mockevent.pathname = '-- None' + mockevent.lineno = LogMessage.ERROR + self.store_log_event(mockevent) + + def store_log_exception(self, text, backtrace = ""): + mockevent = MockEvent() + mockevent.levelno = -1 + mockevent.msg = text + mockevent.pathname = backtrace + mockevent.lineno = -1 + self.store_log_event(mockevent) + + def store_log_event(self, event,cli_backlog=True): + self._ensure_build() + + if event.levelno < formatter.WARNING: + return + + # early return for CLI builds + if cli_backlog and self.brbe is None: + if not 'backlog' in self.internal_state: + self.internal_state['backlog'] = [] + self.internal_state['backlog'].append(event) + return + + if 'backlog' in self.internal_state: + # if we have a backlog of events, do our best to save them here + if self.internal_state['backlog']: + tempevent = self.internal_state['backlog'].pop() + logger.debug("buildinfohelper: Saving stored event %s " + % tempevent) + self.store_log_event(tempevent,cli_backlog) + else: + logger.info("buildinfohelper: All events saved") + del self.internal_state['backlog'] + + log_information = {} + log_information['build'] = self.internal_state['build'] + if event.levelno == formatter.CRITICAL: + log_information['level'] = LogMessage.CRITICAL + elif event.levelno == formatter.ERROR: + log_information['level'] = LogMessage.ERROR + elif event.levelno == formatter.WARNING: + log_information['level'] = LogMessage.WARNING + elif event.levelno == -2: # toaster self-logging + log_information['level'] = -2 + else: + log_information['level'] = LogMessage.INFO + + log_information['message'] = event.getMessage() + log_information['pathname'] = event.pathname + log_information['lineno'] = event.lineno + logger.info("Logging error 2: %s", log_information) + + self.orm_wrapper.create_logmessage(log_information) + + def _get_filenames_from_image_license(self, image_license_manifest_path): + """ + Find the FILES line in the image_license.manifest file, + which has the basenames of the bzImage and modules files + in this format: + FILES: bzImage--4.4.11+git0+3a5f494784_53e84104c5-r0-qemux86-20160603165040.bin modules--4.4.11+git0+3a5f494784_53e84104c5-r0-qemux86-20160603165040.tgz + """ + files = [] + with open(image_license_manifest_path) as image_license: + for line in image_license: + if line.startswith('FILES'): + files_str = line.split(':')[1].strip() + files_str = re.sub(r' {2,}', ' ', files_str) + + # ignore lines like "FILES:" with no filenames + if files_str: + files += files_str.split(' ') + return files + + def _endswith(self, str_to_test, endings): + """ + Returns True if str ends with one of the strings in the list + endings, False otherwise + """ + endswith = False + for ending in endings: + if str_to_test.endswith(ending): + endswith = True + break + return endswith + + def scan_task_artifacts(self, event): + """ + The 'TaskArtifacts' event passes the manifest file content for the + tasks 'do_deploy', 'do_image_complete', 'do_populate_sdk', and + 'do_populate_sdk_ext'. The first two will be implemented later. + """ + task_vars = BuildInfoHelper._get_data_from_event(event) + task_name = task_vars['task'][task_vars['task'].find(':')+1:] + task_artifacts = task_vars['artifacts'] + + if task_name in ['do_populate_sdk', 'do_populate_sdk_ext']: + targets = [target for target in self.internal_state['targets'] \ + if target.task == task_name[3:]] + if not targets: + logger.warning("scan_task_artifacts: SDK targets not found: %s\n", task_name) + return + for artifact_path in task_artifacts: + if not os.path.isfile(artifact_path): + logger.warning("scan_task_artifacts: artifact file not found: %s\n", artifact_path) + continue + for target in targets: + # don't record the file if it's already been added + # to this target + matching_files = TargetSDKFile.objects.filter( + target=target, file_name=artifact_path) + if matching_files.count() == 0: + artifact_size = os.stat(artifact_path).st_size + self.orm_wrapper.save_target_sdk_file( + target, artifact_path, artifact_size) + + def _get_image_files(self, deploy_dir_image, image_name, image_file_extensions): + """ + Find files in deploy_dir_image whose basename starts with the + string image_name and ends with one of the strings in + image_file_extensions. + + Returns a list of file dictionaries like + + [ + { + 'path': '/path/to/image/file', + 'size': + } + ] + """ + image_files = [] + + for dirpath, _, filenames in os.walk(deploy_dir_image): + for filename in filenames: + if filename.startswith(image_name) and \ + self._endswith(filename, image_file_extensions): + image_file_path = os.path.join(dirpath, filename) + image_file_size = os.stat(image_file_path).st_size + + image_files.append({ + 'path': image_file_path, + 'size': image_file_size + }) + + return image_files + + def scan_image_artifacts(self): + """ + Scan for built image artifacts in DEPLOY_DIR_IMAGE and associate them + with a Target object in self.internal_state['targets']. + + We have two situations to handle: + + 1. This is the first time a target + machine has been built, so + add files from the DEPLOY_DIR_IMAGE to the target. + + OR + + 2. There are no new files for the target (they were already produced by + a previous build), so copy them from the most recent previous build with + the same target, task and machine. + """ + deploy_dir_image = \ + self.server.runCommand(['getVariable', 'DEPLOY_DIR_IMAGE'])[0] + + # if there's no DEPLOY_DIR_IMAGE, there aren't going to be + # any image artifacts, so we can return immediately + if not deploy_dir_image: + return + + buildname = self.server.runCommand(['getVariable', 'BUILDNAME'])[0] + machine = self.server.runCommand(['getVariable', 'MACHINE'])[0] + image_name = self.server.runCommand(['getVariable', 'IMAGE_NAME'])[0] + + # location of the manifest files for this build; + # note that this file is only produced if an image is produced + license_directory = \ + self.server.runCommand(['getVariable', 'LICENSE_DIRECTORY'])[0] + + # file name extensions for image files + image_file_extensions_unique = {} + image_fstypes = self.server.runCommand( + ['getVariable', 'IMAGE_FSTYPES'])[0] + if image_fstypes is not None: + image_types_str = image_fstypes.strip() + image_file_extensions = re.sub(r' {2,}', ' ', image_types_str) + image_file_extensions_unique = set(image_file_extensions.split(' ')) + + targets = self.internal_state['targets'] + + # filter out anything which isn't an image target + image_targets = [target for target in targets if target.is_image] + + for image_target in image_targets: + # this is set to True if we find at least one file relating to + # this target; if this remains False after the scan, we copy the + # files from the most-recent Target with the same target + machine + # onto this Target instead + has_files = False + + # we construct this because by the time we reach + # BuildCompleted, this has reset to + # 'defaultpkgname--'; + # we need to change it to + # -- + real_image_name = re.sub(r'^defaultpkgname', image_target.target, + image_name) + + image_license_manifest_path = os.path.join( + license_directory, + real_image_name, + 'image_license.manifest') + + image_package_manifest_path = os.path.join( + license_directory, + real_image_name, + 'image_license.manifest') + + # if image_license.manifest exists, we can read the names of + # bzImage, modules etc. files for this build from it, then look for + # them in the DEPLOY_DIR_IMAGE; note that this file is only produced + # if an image file was produced + if os.path.isfile(image_license_manifest_path): + has_files = True + + basenames = self._get_filenames_from_image_license( + image_license_manifest_path) + + for basename in basenames: + artifact_path = os.path.join(deploy_dir_image, basename) + if not os.path.exists(artifact_path): + logger.warning("artifact %s doesn't exist, skipping" % artifact_path) + continue + artifact_size = os.stat(artifact_path).st_size + + # note that the artifact will only be saved against this + # build if it hasn't been already + self.orm_wrapper.save_target_kernel_file(image_target, + artifact_path, artifact_size) + + # store the license manifest path on the target + # (this file is also created any time an image file is created) + license_manifest_path = os.path.join(license_directory, + real_image_name, 'license.manifest') + + self.orm_wrapper.update_target_set_license_manifest( + image_target, license_manifest_path) + + # store the package manifest path on the target (this file + # is created any time an image file is created) + package_manifest_path = os.path.join(deploy_dir_image, + real_image_name + '.rootfs.manifest') + + if os.path.exists(package_manifest_path): + self.orm_wrapper.update_target_set_package_manifest( + image_target, package_manifest_path) + + # scan the directory for image files relating to this build + # (via real_image_name); note that we don't have to set + # has_files = True, as searching for the license manifest file + # will already have set it to true if at least one image file was + # produced; note that the real_image_name includes BUILDNAME, which + # in turn includes a timestamp; so if no files were produced for + # this timestamp (i.e. the build reused existing image files already + # in the directory), no files will be recorded against this target + image_files = self._get_image_files(deploy_dir_image, + real_image_name, image_file_extensions_unique) + + for image_file in image_files: + self.orm_wrapper.save_target_image_file_information( + image_target, image_file['path'], image_file['size']) + + if not has_files: + # copy image files and build artifacts from the + # most-recently-built Target with the + # same target + machine as this Target; also copy the license + # manifest path, as that is not treated as an artifact and needs + # to be set separately + similar_target = \ + self.orm_wrapper.get_similar_target_with_image_files( + image_target) + + if similar_target: + logger.info('image artifacts for target %s cloned from ' \ + 'target %s' % (image_target.pk, similar_target.pk)) + self.orm_wrapper.clone_image_artifacts(similar_target, + image_target) + + def _get_sdk_targets(self): + """ + Return targets which could generate SDK artifacts, i.e. + "do_populate_sdk" and "do_populate_sdk_ext". + """ + return [target for target in self.internal_state['targets'] \ + if target.task in ['populate_sdk', 'populate_sdk_ext']] + + def scan_sdk_artifacts(self, event): + """ + Note that we have to intercept an SDKArtifactInfo event from + toaster.bbclass (via toasterui) to get hold of the SDK variables we + need to be able to scan for files accurately: this is because + variables like TOOLCHAIN_OUTPUTNAME have reset to None by the time + BuildCompleted is fired by bitbake, so we have to get those values + while the build is still in progress. + + For populate_sdk_ext, this runs twice, with two different + TOOLCHAIN_OUTPUTNAME settings, each of which will capture some of the + files in the SDK output directory. + """ + sdk_vars = BuildInfoHelper._get_data_from_event(event) + toolchain_outputname = sdk_vars['TOOLCHAIN_OUTPUTNAME'] + + # targets which might have created SDK artifacts + sdk_targets = self._get_sdk_targets() + + # location of SDK artifacts + tmpdir = self.server.runCommand(['getVariable', 'TMPDIR'])[0] + sdk_dir = os.path.join(tmpdir, 'deploy', 'sdk') + + # all files in the SDK directory + artifacts = [] + for dir_path, _, filenames in os.walk(sdk_dir): + for filename in filenames: + full_path = os.path.join(dir_path, filename) + if not os.path.islink(full_path): + artifacts.append(full_path) + + for sdk_target in sdk_targets: + # find files in the SDK directory which haven't already been + # recorded against a Target and whose basename matches + # TOOLCHAIN_OUTPUTNAME + for artifact_path in artifacts: + basename = os.path.basename(artifact_path) + + toolchain_match = basename.startswith(toolchain_outputname) + + # files which match the name of the target which produced them; + # for example, + # poky-glibc-x86_64-core-image-sato-i586-toolchain-ext-2.1+snapshot.sh + target_match = re.search(sdk_target.target, basename) + + # targets which produce "*-nativesdk-*" files + is_ext_sdk_target = sdk_target.task in \ + ['do_populate_sdk_ext', 'populate_sdk_ext'] + + # SDK files which don't match the target name, i.e. + # x86_64-nativesdk-libc.* + # poky-glibc-x86_64-buildtools-tarball-i586-buildtools-nativesdk-standalone-2.1+snapshot* + is_ext_sdk_file = re.search('-nativesdk-', basename) + + file_from_target = (toolchain_match and target_match) or \ + (is_ext_sdk_target and is_ext_sdk_file) + + if file_from_target: + # don't record the file if it's already been added to this + # target + matching_files = TargetSDKFile.objects.filter( + target=sdk_target, file_name=artifact_path) + + if matching_files.count() == 0: + artifact_size = os.stat(artifact_path).st_size + + self.orm_wrapper.save_target_sdk_file( + sdk_target, artifact_path, artifact_size) + + def clone_required_sdk_artifacts(self): + """ + If an SDK target doesn't have any SDK artifacts, this means that + the postfuncs of populate_sdk or populate_sdk_ext didn't fire, which + in turn means that the targets of this build didn't generate any new + artifacts. + + In this case, clone SDK artifacts for targets in the current build + from existing targets for this build. + """ + sdk_targets = self._get_sdk_targets() + for sdk_target in sdk_targets: + # only clone for SDK targets which have no TargetSDKFiles yet + if sdk_target.targetsdkfile_set.all().count() == 0: + similar_target = \ + self.orm_wrapper.get_similar_target_with_sdk_files( + sdk_target) + if similar_target: + logger.info('SDK artifacts for target %s cloned from ' \ + 'target %s' % (sdk_target.pk, similar_target.pk)) + self.orm_wrapper.clone_sdk_artifacts(similar_target, + sdk_target) + + def close(self, errorcode): + self._store_build_done(errorcode) + + if 'backlog' in self.internal_state: + # we save missed events in the database for the current build + tempevent = self.internal_state['backlog'].pop() + # Do not skip command line build events + self.store_log_event(tempevent,False) + + + # unset the brbe; this is to prevent subsequent command-line builds + # being incorrectly attached to the previous Toaster-triggered build; + # see https://bugzilla.yoctoproject.org/show_bug.cgi?id=9021 + self.brbe = None + + # unset the internal Build object to prevent it being reused for the + # next build + self.internal_state['build'] = None diff --git a/poky/bitbake/lib/bb/ui/icons/images/images_display.png b/poky/bitbake/lib/bb/ui/icons/images/images_display.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f87101af19926116cee7c07af877759896f7e0 GIT binary patch literal 6898 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 M07*qoM6N<$f+1vQ^#A|> literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/indicators/confirmation.png b/poky/bitbake/lib/bb/ui/icons/indicators/confirmation.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5402d1e35a414e215ead3f92f7bc861eccd54d GIT binary patch literal 5789 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 bjsF_}wfAZIOHfOu00000NkvXXu0mjfwD15u literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/indicators/denied.png b/poky/bitbake/lib/bb/ui/icons/indicators/denied.png new file mode 100644 index 0000000000000000000000000000000000000000..ee35c7defae28ae2ab4484e8cdacce9d493bda2f GIT binary patch literal 3955 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 N002ovPDHLkV1fp&a(w^* literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/indicators/error.png b/poky/bitbake/lib/bb/ui/icons/indicators/error.png new file mode 100644 index 0000000000000000000000000000000000000000..d06a8c151a3f8ee8d7608f66841d82dc916df329 GIT binary patch literal 6482 zcmV-Y8Lj4tP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z000hsNkl=*boZLpV306qXM01^Ol0NMZq z0kjT$V`nz|RCTu@kGM9OwZhNCN; zbL@1^{zcAVTL8S?nav*ilYsa%EiOyaS4>S=>{jJbeqGiIeI`nRE<{{9G+BZwQ5cE@ zhYREwN6umBNac|1&!D9zgQlJoI?_(ApNaQ-`cfOY5YGbW?8;`v7Y^dnv=AladberZ z?N!L+gx?~SVK>S{Zj=OE$oHCXYceECArU~P6kG@}A;7pm%4X=z*l6$1;%HYt_9uJr zak3YUoqg!G#p|g|?#B*e>qiPRA`ri(x&l7$<1QJuCp?lYQ9T+=cBYI&iGdPA0qipUgSV_qwt<`;vqBHMP`Z z8EZ-c){XU1k2;|+fSRZmQI`%=l^{_HGD3Ga1;x>yV`%P4V`p<0-aFck?I*f;Q*Y+! zR5tgWu52!I$)Z+3*F4dHZ*74^7tSaRVMI>MGlw;W2YINC!UpQhf|mCdn>2Jx$^H{^BwOPO0G9>?iasz zjefG(RT{8B0dOuLNc%rUO?^jeDzou|OO%MI#}j^Q<H-Iq}++O1$iEtefw9o%>_G5&;T* z2Bw#UFs0C^RTak81a&QXK_Grj(+k6a$0}VYnN;9I%%y?|4yklZTj-95{@ctic>=(R zb-Pbs)zr$3{%dYstzNNcpCcd`V;Jgi&CHo|@7xiXwd7#{n*cN!1?4Nfi~nw;2*!IP z2o!oXOfB-G+#+?wd69cB2qYd2Pb;vb+s5X55%=hz1jyJ98uvHk{%h6pe+SS30DIed z@Xnzm?wwM;Avk;KgXYz@?c;=gzGW26Rwm5*$TwxdDk>|l4p7@-6qKz}r{3_6%@|}# zQ0y}?p}>bikN(#&%P1N#NJT+(>A0vRR|YNU62KWlI%i||#|H}D{OupsB|K&=0AwA8 zW8EoiI-JC}FE4v7IP13ijjL{J;DoY4Eg`Fpd+uEyM&>Vn_@0R+n@>mKvvNaq-q;OK zK2qM5%7QZnQzobmStxfQQd?Pa>xe)K-9{uN*|SGQT<{wbxZrR&0}~t)1t@na4P9I3 z*VK9duo=hk?ld+ZZpSw#muw8rS$e-Q^VS9j;0|XvbC_n>+T{xy0@D`WchAJ)SGP5u z{FL61p^oWr=u-z;0Ty9s>2onvbZ~HYR0fZswzrn2T3*_F;z$a7~^1! zLm@zk*T5A;0n`Nbim1=^0wH9y0FYw>$GX$le53>4m{`0qHt#DBdS)+c;DT_*IJl%Z zzH9H?o`2m}AG-UpqAgpGbfCF6JD~JY=Y&134S6~$3%xoti44$75O-?`(`@;uin8iq zhu?ybe|}u*dz2{zY7fk8Cb*qC1VPjRIevQ1sd} z?>7o&+fVfV?u~?N(!4`~sq-HA+W5pfzdhcCrrr!3e#)!-x;nln;{Ue_H!YlAoX2L}xi6=8J9J{Wo(VcH3OwL{A#qjtbl{CV$;eb~L@WygvW<`%OJ) z?#-UHgha{If{^d2au?#$5+2lqOt=*a!8ry~>rn~33NIU5UmG40q^PhkVs#xbWjeSu z&b3TU*aQ~>0$o*r^?h<*Y z+{uJ_jys(znnd7JU}ar;XvjO_^}5|g50_6}@*!(AxD|q$paI4?IPa=v!dTzllU~4u zIFMrkt^GN)r))4GaHi0f2)Q=qcYVLoBjrsk@SrN7!!48ZTH=$35P-w^u<9jCC8$0FBf2XK3akHW`$v196ao+ea0avr5+Rs1W7;hH$nJ`1g&tG| z4VVf66C6XA&jJbsF*MaZB#3F6Hl>o_JO^h49fnIGs4tG?X5ahBf#S(mAFL@YL6&{? zhtOq;pZ)w-?{0hknU7Cyc&6NvKn3S;hM~h@0+axOV9*&7#O3jIJG!3bEUhsyd=RP{ zPT8ErdundH{XPI&B?=7YCxif0lGb0bY=ynwlpjC3{^?3)=cM82;7mYLHQVL!whsvs zDNMArHTZgSC)+*BFhOLOH&=Yiw?0Z-b<>(#tAoG(uq}lg;}EBOMLs>_Y6pOf!!Rmf zh|6NuhM(?f7tC=UKfLaT)nIJM7Qki#syEne_yR3MX7>4umnBtyq{(Isj1PT;tg_fO zx9%;QfBSukVXfcZ+K;yWPok4$ne~RQJxhS`0AO>0mVO)WxAb92bzo!l;uQ~;ELzdP z3B*vka?F7{UV0#2TG29`%$|{4{)TkUnJB5B|079; z$^!+Zo2Ohor*l}fRqD_s8U=k*grw{iuumo}8oUAl5nxp)1}wlvxXKu82*;sNj4 zViT1UqB@EVUKw;5uTX+I0C2cKTk7nc-B7c5#r z%v^lun@S|n?y$l838Gte)za_m7rRwlPS9<<8dr0pCdG72 z&eJh5rlZ&r6+yT0(m_Fa{Otxts5n=r%{Y{3$+1Mun2$!%k2Druv0!t? zao{lasbe#SlI!l?Te)D_0{~v!mCT&Aga8O3sLu;{))twfXlz(TsaHZoCn)pE7#G%% zFnDFaW&Df~)C`g~Hq_mA@9L^0EBA3i`9Qr{sycb&XZ*6Ttg>@Njn$ZWi@$FakM276 z!li8oA8dMS50&J10H8g?z=QxGpeoXgfT_F@S2ER?g%y-|C`?I!fWwpo%Dfcg!U_@w ztM*&kE0l=ZK~%psX6ecYw0L><8J!Mih)$Y)tZvrzKLNl;1Y&vp@6|6|^`?+@=S*L~ z7)M{0VbhkaODcWJqXXT85=@JDthL1!;`KoV#cm2y!l|-@aR|;~P@vQ;VQff2k-;nc zmcGud(E5RT%RGwrrc$f+@S#I$&N=m2*&jTR_Jn> zl6i5D_O+NvVab3H5V1*fT1U-a_9Jg7a^zxXzoDbsw?6UfhwfOC>1feUxf9Tq;n>~D zaHxmDqY%^uWE8t8ESZ1~qafe{=ywDT_Au<|U}(;elR9C+8o!LuJ_#Y6AW~l2edX#O zJ{=!D{xJYOmtu%raB$mO|G8<+Ju}iBZQ4MXmXv@Y196MOt&kB7vbg~I9D&AOj${2C zmP}CYp@#U{LCYH^;0(&)=z#8!2Zt*vtP(o7eEBS*po;1 z-_W$<-RiDm2lJbEy&Fh(pH%vjO}eZZthe>JVTJNCLU3ZI`=wxUb$_U$zSj&y`+P+e zjs8UC&S+)*FBMJSd3qQB$6rqaz*SL#w_Ak|KskU!Z?bt}`{BI>ie`j*+m0jC-4XW{ zmL2Une#qsH#7VSz+zuki`xMfCr_|>Og~dLIoNCENy~>bcR1m0`_M4viVk!ksEaoFq>%w*V@c@XARd=5#syhHe%i$;_OoIb1pHG);%^1{J1BRW z6PP3rvB2g~xG4jUMu5>MC;|n?qOc}lBpd;UA&@XQ#uNd^nPYHp1o+njQFs$EeQ?fX z$}eAvlNH2IA`#+Xu)x4TXrLKXAo7JFuvjb%j)WnRrV0&HaWG#(4>IM8*ZsCYW{DXh zwot+r@WHbd>D~gV#0sK_^zRgSLK^KK!+h~Cq7;E?K~k@>qO{J=qGPxPda+ zOdJtqizT5@6f7KxKwBUXL^J|Puq6>N=H?_@3$(>=8-K#uVk`(`Gzy79kZchMTLqSa zq>xE)gaw?8CXi6SvG#nigwAKMe*0xB{Qkls{uPTOiCA=rK;$YAaDR7zlb=8$5c>&) zV3LbD6al8u8EpQnWVS$m=SyaZ*!x&aib%i%|6~}){zC*5GKPXcU{G)j5J;6tI z1gtlyuOcX!YxCyjfhyj6Q8+W_QX(AkYxCR)u1Q4>jhttO+VRFj6i-NAx?T;8q&3$X45=P%E?%*0 zQ&b~2WBjVVz1pEV+Zd}tRa5OmOI`deZz*ogh8n_1yZ!ZW$xFK{htCt0k3l}r@}1=! zb(_CWlc@%a*kzvg*kWW%gOlTDMoe32;#cR~1{M64k}k1OUk@7Pifb&LWJ2y7@6f(O zhDqy2yT@mKY@FxZ2lenlt=!b&Glqs7ijUf2usAmWVB*4;+2KyO;q|pumnAk{Uh*b9 zzR5BC{mdud8vcb_#e8-O*zxeP0dg%3Al0CTix`>sTLpq(&t0>dxh}RFPnfS?=m5f=Y9VihS}+` zp+zUe!>vR=%AVOkE?CFKS+)?fwbYekfRyZk#etNOGa-KX>PAmJrO8+zXg75EoTqE{ zQ5XsO=NuDw=PlEo?aF_|);z!^A3F?ar!V+uZLu^gP{<{0__a-mvI+M zOOImDXhKz=%;OR@@I(8=r-57BX(u)3FV-x(P`~8#nRMof6DPPFPT};IheJu!{{7TM zD(w=nO9u3QsmgdhA(tkWoEgCh z;?z{{7$M^O;SQAb%Z$W64H3;dhNruRdY}6)PtBP$4&QuR6Meo@m7>wAN>ZM<_Uhj7 zQqK#QE}3<`*+Mi84uKvigPog0V4k zJ4%*1!P)D^<;wBIneb6e3;wXdYY!6#vj6Dld^gTqo%-yA9&a9xS5R1JOjB~~>h6ZM zRX-&oyQfrC`olP#E;i@rLwGw`i%Qt-jE>dSUau$a#D2zE&3tS-lG`@){OU{^U!%Sc z>RDa&Wyq$M=T>yS0C}<=91-JR5PY`nqKCBT!{cCT&Cb-jF`*7nTcc31SR9QHix?|t z5j0e-eY$a``cu=Jdub8x^~R_`Kpo0pxylZNTK(rNT6viuh%ZOypM2=obMvj7vG(0I z&G9=0%h5G)bDi{KX-Tv?gS3_M@JRWXNB?$^LGi)eS3S$ghLasf-fh;2UN%VHwn{_0 z0kmktfddDJg@6koONVF*_cGLRa60Y|>{3b_Gm>Rre(&mWqbn!nR^eQ$YnLCj$C91K z8yNw*n*imW`>JNJ2%`^Uk%pJ&^lDU`H`%}CuKc@m*5V~FKZK~Q%2=yetD-C@?=7Hw zGdlQ4>Zxr;#o{sFzUCe>YECw}ENy=A{Xrmqo{BL(a@(MBZo;c{v(&7$Nn>g)_0uT> zEYzy$qWPXRbJt|S;vN#sinR8$ZdEP_cFZX2qn(%{e|ccUYkg4@x+8j}pSi=aEEOZT z`3Q2SGga+Y`!jt=p}pV`=ID+~6_6HWKTHLA>@O2)QICiq6LGR@N2M&TR9Wlp;L96ysK`1cuGOAO?OCNOeSpTjB8r{sl(s)bMk9t+iGq-UW81l37z;M zCB$`RS%o_0;_erh>E*d`LNngv>v*N->D-{OZ~cYvv#Y*-{p&$>5HYwdgLF`HN{MXO zM_|Xk6TGV4`M_m$@WAFv%``bl?&ewIe^?Iy`BYX^NZTJ~#trA_8^u_)cXXuuC9PDJ zFUKn@D|77D>`x5R7x<;Mk0%|vqgr!&z4GKKW~3jNqt(o0@J+#y~1}0-Fo)| zSR=t}*Hu2Pb}ARso!uM0@U=S~+xcp_W0vK$!jh7$X*UL}o0~k)QF(ftXkDXEshVhPwGPW*T(`Qo1_!UBlxyn=&&qVG^k{qx8v(HIq}?cD*$nx{ft^Zaa5o zVD}BWm)6$mZrCBy>uh^|p{=d0>p_;)!1a*vLS6NY0XxEdo38ZI#GD++<7dxS%Bse( z8g-7JdvmQ96dT}3k(HiR!iHBbU-I77b;9W4(AwARWB&9_l9p5EY|%&n@&o;P(#tO{ z>U(bIY?Tglb(FtaRRerhZaabpm*&W1%@z-B&YeB7g-RlkcBk!qwm-HsB^Og}$A zm9~%49GgX%(|40)8}Dw^X`DaowrJA&#*d7&1E=G&nyf9h6@N3-u3aUX=`DX?89Gn5 uSa$X8sD*FD?q??=3WGs?Yb$2d;Q;ih!3EB=U&rh(h`p^N`4Vw&^nU;w6|waI literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/indicators/issues.png b/poky/bitbake/lib/bb/ui/icons/indicators/issues.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c7461334bfcd616552e317af3ac7f2715dec09 GIT binary patch literal 4549 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 LNkvXXu0mjf0|Q_@ literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/indicators/remove.png b/poky/bitbake/lib/bb/ui/icons/indicators/remove.png new file mode 100644 index 0000000000000000000000000000000000000000..05c3c293d4bc0d9e8aac7b28fb25e43ff8a03320 GIT binary patch literal 1971 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 literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/info/info_display.png b/poky/bitbake/lib/bb/ui/icons/info/info_display.png new file mode 100644 index 0000000000000000000000000000000000000000..5afbba29f578425ca337161130297daf47189e2a GIT binary patch literal 4117 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 TI+U>%00000NkvXXu0mjfT4L7x literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/info/info_hover.png b/poky/bitbake/lib/bb/ui/icons/info/info_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..f9d294dfae2a3a74086018fbbf140a500a622d7f GIT binary patch literal 4167 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 P00000NkvXXu0mjfGp*(6 literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/packages/packages_display.png b/poky/bitbake/lib/bb/ui/icons/packages/packages_display.png new file mode 100644 index 0000000000000000000000000000000000000000..f5d0a5064d358cf1b03460d0372fc802a464c291 GIT binary patch literal 7011 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 literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/settings/settings_display.png b/poky/bitbake/lib/bb/ui/icons/settings/settings_display.png new file mode 100644 index 0000000000000000000000000000000000000000..88c464db041ed98115a0e44d68cb6aba4c99107d GIT binary patch literal 6076 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 literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/templates/templates_display.png b/poky/bitbake/lib/bb/ui/icons/templates/templates_display.png new file mode 100644 index 0000000000000000000000000000000000000000..153c7afb621a3a9562f57b3e7908e5d7409aabf0 GIT binary patch literal 5651 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 literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/icons/templates/templates_hover.png b/poky/bitbake/lib/bb/ui/icons/templates/templates_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..afb7165fe5ff8f54083a37533f085787e266825a GIT binary patch literal 5791 zcma)9Wn0u=wEZD9bV%a}2uOE#44qO^QX=I@m(# z1^}Xm{{3tJ8!CSYqe_0t%|bw~70XhzKyA=Np{k0*I9M2qotPLFPi??U97i~h zzr|9V82LFiZuoj5=reS-9sO(Uu3=7or}8YX4u#(hB2L#3F%SzQE>nI?u^u_lhuqlW zR}3d)^8m;}b+1^wZ&|T`OPH)I&y#NaP5|reG!Y2s*3Ib_d=!Hr+gHwdffW{o)$Nlk zsSOIF0u%!il}i9cHLS3_%%?^`Ar4?WV*hdzc*Y0Va)kbx2Ey_#vx2Yy%TyL>tioh~ z`JqFs3g9dQRHB~8sRCw#0F|S5pA<092MB7KI%)vlnt<+ca-v!QL<|TT#71)gI6;8z zAS>%zASw%>Qad%3{lim5zQcXbR93BQ3!9W`xFv|s6W`R7|1sydCM^$@xZMN0Y(@U> z0a^6I;i6>gXQKd6m`r_t+q2uZsnEt;Nr{Kt)I(Z`mBh3&1ad96NWOS@sy zkUOXEHr=MTZ?0gnH|UG?&Yx`I!dBtxIG5|+N6&TOk5HcoqFyflN>aaRBEsB&r=Rp` zzHBk$rrI>1^h{LAjz1HIKY6eGiL0M|3iImc8t*l>{F)f>?X^5sP%__FD|_s}+8pF& zKHWdj0C3vo-t&VKgdOG_xqoG9F?7qSCkj+&o50l->?jo)~2yYU|N;4b$N-PnppDYNx`S0+~`d=>V{%a*G$LYed3*f%h@t-udOuxPh|^Scxe zQvUBI&7^W3WdH0y`8}NN;RHBJgP@0YEQ_&NFXPNu6G60D(U&Ye8aR|6*qDc6sSKWI zCyQwa8O9kin`nSf<-8t9#k^2!O_mu1gd=X=wW|xIhSwU%{UC0Dw0xCdh*B#int0_S zl$}IVm^0y3&mb2sUbHh&;Y_xeBo7%7?B1or7wLN=$dBw*u94&=NU7f95P%NZRf{pS$M3|%H;{(l_FUC`pQ)*LghOB$MWjUf6 z46G?bi?5)y_)@97%shk9TX|c(TOwPGTP&xRgn2I&J-=KU{p2(peyv5nO};Iz+i>M;kuil>l7%v&sL`<6Am-~sQQvH-u}B(CZ8)MhZJNQE)*0}F4jn$76TLrOb*4@U{qzU=0b@Z4p@YnwEV3+j z6Ep5c?qKTVVZt=6w5Mr|+ycgBKhi5q%JZHb z7%>_-mC1aKDR=tnZmjSHW`6q~&%9TsS0D1lps>bfvmMDyWKUoBmX`%eQt{3=T&(YD z&DcV)A9q{kEx7H2TzOfM6huTz#I(-vEY(o~e>2nbGS^3sV286b;|vzJN_E2ZlZ&xL zRHsGA;RUojJtN($LZiZ%YZQ7QBsL8=D<8 zYqu;)%#Rz}-J&g|%;9Dx7FKm?h&%-QY#XAjl%ljnFGa5+f7Yq@+n>gv#D zOI3}ojUjeUFKL~c`m1`6Q#w*YT0;_U9)Ux)ZHai+AK%?1%T-5hMH=^87iB$d$p4EiIo5Ppgf< zsf)avx}5JvUze(n#gAQ%W0ng>MGLs{%|*N?dIurv2HTSgL^5iIDP z%<<%L7t-iwu-(}Se7j$EA9`WL9MLh+rtcIIJz~umCWSJ@{3n+o-fJrVRMJ&ebDV_q zrK2yV%SUt(q-%8}%UuojmPapcTClUsH2Y+{ZA}}dF89NVo z!Tnh8RD)YL@Y7*(yI25QzX+UnyCsUF>|?tQiOx!nbUsbCAG52loOFj!Kb42-_a^q7Y{GGNbAK2_yN9Aj&T3OG4CBjW=T%LE&@hWAT z;~KeLXY?zMOf#xr9Zv&wq2bm&!x23VSkMC^6T-Nq=f?kx#gC^}8tmpS-6oG2gWCU! z9?mRTwxe(5hdP%`uuODk9A_M^HLvT?3RUmR_b$_~U9Av$uAWB&*i+cI_^hOjb1gq+ zz*BO@hDozL2kN8)Or3XmC;ogS;v^;sxyYZa9x4G_duW0+^kWj~MZfr<$_@N!CO@zf zSm3pC_Gz|Sj#2itA@s;zAfIl>t*_nJPxs{HyKzDRM`eKb{1?I(Z zJ3i93;LmZ4XxDGIIafSVT7ay?%qUpiEzh4UhraIiFFc!ER!8GSN22bMFOtY0xJg+_ zBkxGw9pp>OOG*7y@Vec*DTSb3p`PZ`-WA`CRMFB1z%FMF=Ef&8CyO#pGg7)-gW2C!yhjL<^uWBxgCQ7eU=u=WKIM|tI zH})cYOZR@0*h$);cJ-j5Dzswf%1 zT|CT%#)5YO1~4ZMRXd}(brmZrjj0TjmR_z1zi9ph)iQ|djxs}oD1`x$TMC^Q7k_>I z*F<~M`7bI=Y%Sz*nnj*RbWut+#J)nF+i605Oox;P8jC*?csyQdFV4Jf*cmT#DcCe-+Z3}W7m+1<~$DD;0puhE5d~gi@t;C2!(v0^4y9#SA{{J8h+Aa1O zYwkZ-XYd$v{$C(zb|fZ+eWu;5mtH50IcT=DLfu*pc*1hLk13TE72V2n8oqs-Rpw&< zl3E?7e6w&Za)NouH}^!M)m%hgIFT8I+?2dSGZTyB*a35%O7yra67-T#yZZ2t56rV! zP^Vc}BWM1d*Q;&bkR-`9bj_Z9&Yke@ND@Y*ICI>S%WyK}ye_?`1$4_iF*+J|)GC+J zy=f`*!Fn46pEe4s@y*I~Wvr|c!cVp2A&K7bKdW^HcRoZ4q=WufmT0s$E%~c=#+7g~u z;LiD0$2F$ap9fNy=h-8yE;=xl36Et9yh+(jq)bs@Hxn=unCz!syUQjr0kbVh3SzNM z4JUs9J*w@c!$ycn?vzjOvAJa98ET;|_Fm+vgC=t%+~wC!(2*Z#1rm)z(Xs+Nx!U%l z7e(P=!g1Esv_eQ*1TLH^*V|(}hKQfIHpR|K&eCT6+RXObT}~hQlPeXSK1FfcvC)x387wS_m2(bbx3&mhnGc-T}H9KHOfT zG2T?Fbxg0u1v)Q(o}flYx^|xjD_H^I5Lu<>c@XVQGNbfx<5lAHN^2 zw4oLJ4(Idko=-QiYYOv3N6iM#q{8FBZ;%GBF}XG^S)tB`p>)_#Ufx5Go_+ejpZmFh)+H0P^!9h^Gm`5`u(LX3t7Aavr8muqSf> zaH{wki_cZKiQd)+?ja#{dh4=tk(>7;fnW56_X4S?8O=N5aedT;DLrV#_#EGQXXa(8 zvJhUv2&6SBkFQ}_{McdXCR&zj&3iu5?^CCSYDbwS%qaQ|3`+O8ap?GZ4Ajb~Y8?!$ z+hCHtdL~+XpPCoht+-XfMK$f}v+hQ*3xsF|toz_s+7nv6bdkIxA9tiUqJF^2%c~+| zYS@iYXMGSdIiH&`iM8dw{|>585OKW{ofipA>IUbl_yMyVdbyW}3w2Hk(r<4Y_@&%O z2Tb%yX^`oQjy?oC%U9kf7lCqYnh~-i+MuaO@&{zW|H7y9cU-HUe2WlMP+;o3{kxPy zZ~v|2h3PNuotQ3vI)opOU@NceqO+{;VHu|;C6#K;>plwdXIdMQ_jN8cc$CoWwzm{7 zF#>;C?FpKx@Q?s)Oyc5^38p%lLJe|)cP#V)cUG}ckHoO z$CM%z!4kD@I8<%Z8BCx1$E%}Ev{trF0(BMy^{6m0(JE@dW5Ln;_2X{L*+_k5q9@JE zuA0&Z%IE0hbQ04qESGHfMAuNqwIGl$(H=($K%K2$J+?s59Jd}+DGb&Ur>03b*=cv- z8VYQHKp^&pU4iVa16us?^o0^``&l@X=|xjI0UsAf4%-k%bMJ{=d`AymMTKj2iQp`= zu2FLp(VXw(>xPLVzZDUu@f*F;rSP2~+jtWSdn6J`$r7DXQl{`M*O=q@mErI~$$s(B zFT>$=trYq5Sdm#?_*bhbA~o%Ttsr^nyz#oTj9*QjLVN|D{cDcFoNpMhva+58hjBIK2mH!H zSvPywMK;hZ?p{nbbL--d1a1G2n}bxWM97@1QuI&0Zy)TcOc+l!79%g$n)GYN2FNVu zIS$zAtj;Zw#hiqJyAwsB;3dJoLiWU<;kdVl^Fq@n7c5cDRY<8sY!v#FWE|^&Z`Jsx zBHEa6V?n{;`8gzi+h#(m;AvEF)8L1PS`}|5Z4%n@+p570O!1qStCDdP@9bQ^ zCI~&VPy%geafN!^-CPNWXwrMSq{E~IykeCVD`rAo`0^=(yf~^aY7!gm7}t9=D&|5y z=&yJ_!m$gxS9W%45Q}AVZ-MsoxfItnaag?f9WG0-(VY3L9hXB& zp>?Lc%XT+?jOVBr?Y;>$_{~#eH`^6MUqMy;=yV~xH8jP5Cy6jIgiZ4S{6}*`V-zD! zY%$1_Lv8szMO06%INANMXBen~%!P;F{TMSeZJAILs8~g2T0~Zy@xGz%iCr|PVWw?| z!Y^Y^Ht`G_0wbbQ_tx>{6`z&3wMD;HvhKN%C4;TAf*ufOZ}2cFQ*)V!6#i?`YT5U0 zn4QpC!pH3Pgy!Vtw)-UPq4f0i-Gh!7c8)7`E+&pN5EP~=w(P?*P;#7ShG`N6menla z(ibOQNN9nWGrMigA$o?${>_lOg|Q?3r1Ou0+}xXe)4NL^1q7iwZrgsUWTHq9U62(h zoHLG}Y$ee+Mm%uOEO$4}B*B|>Gs^*-#GSy&H-@NjG^wfTU#pt`iLiKP%ccD{)CHqY zOGERqge%opJEX->_^AbAmW$lyDF+9NN%rmUXx|0zX2Z?r!f7UPCMAE>{*peIF@=&C zfavT;;o2F35)v`6E;255PPhk{R*6mrOVR}aUa50JMXNs!*t*U=+nGa@lRhsiKPL-X z(&sV>YK3(r-9PB(K_Q&*bxG1UwxzObGFh)plPx7r8jT{6T0p>p!Ki#~=_{b-xOJ@_^1ZvRc`+{sn%tQ0#np+Vsw(JPmC zen0ph2i?@rE*|~0(OH%=sKn!YxZu$fa_3#3e=kgfbU|6AD{qS??~ z{NEBw$BWO|ZgFOiiH5JuzmR~Jiy$$uyT!6OSje9NdHA`*fakB^wU|w5+f=@WaQVvO zX9%MNe#I>-}l~0y!e__$iH*5>NzM6ywf;j zsAQ1`eE2HZY^MI-a6h7H^)?KNVFy-E} Q`yT+Hsj8<^rEDAVKdzq=*Z=?k literal 0 HcmV?d00001 diff --git a/poky/bitbake/lib/bb/ui/knotty.py b/poky/bitbake/lib/bb/ui/knotty.py new file mode 100644 index 0000000..61cf0a3 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/knotty.py @@ -0,0 +1,915 @@ +# +# BitBake (No)TTY UI Implementation +# +# Handling output to TTYs or files (no TTY) +# +# Copyright (C) 2006-2012 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +from __future__ import division + +import os +import sys +import logging +import progressbar +import signal +import bb.msg +import time +import fcntl +import struct +import copy +import atexit +from itertools import groupby + +from bb.ui import uihelper + +featureSet = [bb.cooker.CookerFeatures.SEND_SANITYEVENTS, bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING] + +logger = logging.getLogger("BitBake") +interactive = sys.stdout.isatty() + +class BBProgress(progressbar.ProgressBar): + def __init__(self, msg, maxval, widgets=None, extrapos=-1, resize_handler=None): + self.msg = msg + self.extrapos = extrapos + if not widgets: + widgets = [': ', progressbar.Percentage(), ' ', progressbar.Bar(), + ' ', progressbar.ETA()] + self.extrapos = 5 + + if resize_handler: + self._resize_default = resize_handler + else: + self._resize_default = signal.getsignal(signal.SIGWINCH) + progressbar.ProgressBar.__init__(self, maxval, [self.msg] + widgets, fd=sys.stdout) + + def _handle_resize(self, signum=None, frame=None): + progressbar.ProgressBar._handle_resize(self, signum, frame) + if self._resize_default: + self._resize_default(signum, frame) + + def finish(self): + progressbar.ProgressBar.finish(self) + if self._resize_default: + signal.signal(signal.SIGWINCH, self._resize_default) + + def setmessage(self, msg): + self.msg = msg + self.widgets[0] = msg + + def setextra(self, extra): + if self.extrapos > -1: + if extra: + extrastr = str(extra) + if extrastr[0] != ' ': + extrastr = ' ' + extrastr + else: + extrastr = '' + self.widgets[self.extrapos] = extrastr + + def _need_update(self): + # We always want the bar to print when update() is called + return True + +class NonInteractiveProgress(object): + fobj = sys.stdout + + def __init__(self, msg, maxval): + self.msg = msg + self.maxval = maxval + self.finished = False + + def start(self, update=True): + self.fobj.write("%s..." % self.msg) + self.fobj.flush() + return self + + def update(self, value): + pass + + def finish(self): + if self.finished: + return + self.fobj.write("done.\n") + self.fobj.flush() + self.finished = True + +def new_progress(msg, maxval): + if interactive: + return BBProgress(msg, maxval) + else: + return NonInteractiveProgress(msg, maxval) + +def pluralise(singular, plural, qty): + if(qty == 1): + return singular % qty + else: + return plural % qty + + +class InteractConsoleLogFilter(logging.Filter): + def __init__(self, tf): + self.tf = tf + + def filter(self, record): + if record.levelno == bb.msg.BBLogFormatter.NOTE and (record.msg.startswith("Running") or record.msg.startswith("recipe ")): + return False + self.tf.clearFooter() + return True + +class TerminalFilter(object): + rows = 25 + columns = 80 + + def sigwinch_handle(self, signum, frame): + self.rows, self.columns = self.getTerminalColumns() + if self._sigwinch_default: + self._sigwinch_default(signum, frame) + + def getTerminalColumns(self): + def ioctl_GWINSZ(fd): + try: + cr = struct.unpack('hh', fcntl.ioctl(fd, self.termios.TIOCGWINSZ, '1234')) + except: + return None + return cr + cr = ioctl_GWINSZ(sys.stdout.fileno()) + if not cr: + try: + fd = os.open(os.ctermid(), os.O_RDONLY) + cr = ioctl_GWINSZ(fd) + os.close(fd) + except: + pass + if not cr: + try: + cr = (os.environ['LINES'], os.environ['COLUMNS']) + except: + cr = (25, 80) + return cr + + def __init__(self, main, helper, handlers, quiet): + self.main = main + self.helper = helper + self.cuu = None + self.stdinbackup = None + self.interactive = sys.stdout.isatty() + self.footer_present = False + self.lastpids = [] + self.lasttime = None + self.quiet = quiet + + if not self.interactive: + return + + try: + import curses + except ImportError: + sys.exit("FATAL: The knotty ui could not load the required curses python module.") + + import termios + self.curses = curses + self.termios = termios + try: + fd = sys.stdin.fileno() + self.stdinbackup = termios.tcgetattr(fd) + new = copy.deepcopy(self.stdinbackup) + new[3] = new[3] & ~termios.ECHO + termios.tcsetattr(fd, termios.TCSADRAIN, new) + curses.setupterm() + if curses.tigetnum("colors") > 2: + for h in handlers: + try: + h.formatter.enable_color() + except AttributeError: + pass + self.ed = curses.tigetstr("ed") + if self.ed: + self.cuu = curses.tigetstr("cuu") + try: + self._sigwinch_default = signal.getsignal(signal.SIGWINCH) + signal.signal(signal.SIGWINCH, self.sigwinch_handle) + except: + pass + self.rows, self.columns = self.getTerminalColumns() + except: + self.cuu = None + if not self.cuu: + self.interactive = False + bb.note("Unable to use interactive mode for this terminal, using fallback") + return + + for h in handlers: + h.addFilter(InteractConsoleLogFilter(self)) + + self.main_progress = None + + def clearFooter(self): + if self.footer_present: + lines = self.footer_present + sys.stdout.buffer.write(self.curses.tparm(self.cuu, lines)) + sys.stdout.buffer.write(self.curses.tparm(self.ed)) + sys.stdout.flush() + self.footer_present = False + + def elapsed(self, sec): + hrs = int(sec / 3600.0) + sec -= hrs * 3600 + min = int(sec / 60.0) + sec -= min * 60 + if hrs > 0: + return "%dh%dm%ds" % (hrs, min, sec) + elif min > 0: + return "%dm%ds" % (min, sec) + else: + return "%ds" % (sec) + + def keepAlive(self, t): + if not self.cuu: + print("Bitbake still alive (no events for %ds). Active tasks:" % t) + for t in self.helper.running_tasks: + print(t) + sys.stdout.flush() + + def updateFooter(self): + if not self.cuu: + return + activetasks = self.helper.running_tasks + failedtasks = self.helper.failed_tasks + runningpids = self.helper.running_pids + currenttime = time.time() + if not self.lasttime or (currenttime - self.lasttime > 5): + self.helper.needUpdate = True + self.lasttime = currenttime + if self.footer_present and not self.helper.needUpdate: + return + self.helper.needUpdate = False + if self.footer_present: + self.clearFooter() + if (not self.helper.tasknumber_total or self.helper.tasknumber_current == self.helper.tasknumber_total) and not len(activetasks): + return + tasks = [] + for t in runningpids: + start_time = activetasks[t].get("starttime", None) + if start_time: + msg = "%s - %s (pid %s)" % (activetasks[t]["title"], self.elapsed(currenttime - start_time), activetasks[t]["pid"]) + else: + msg = "%s (pid %s)" % (activetasks[t]["title"], activetasks[t]["pid"]) + progress = activetasks[t].get("progress", None) + if progress is not None: + pbar = activetasks[t].get("progressbar", None) + rate = activetasks[t].get("rate", None) + if not pbar or pbar.bouncing != (progress < 0): + if progress < 0: + pbar = BBProgress("0: %s" % msg, 100, widgets=[' ', progressbar.BouncingSlider(), ''], extrapos=3, resize_handler=self.sigwinch_handle) + pbar.bouncing = True + else: + pbar = BBProgress("0: %s" % msg, 100, widgets=[' ', progressbar.Percentage(), ' ', progressbar.Bar(), ''], extrapos=5, resize_handler=self.sigwinch_handle) + pbar.bouncing = False + activetasks[t]["progressbar"] = pbar + tasks.append((pbar, msg, progress, rate, start_time)) + else: + tasks.append(msg) + + if self.main.shutdown: + content = pluralise("Waiting for %s running task to finish", + "Waiting for %s running tasks to finish", len(activetasks)) + if not self.quiet: + content += ':' + print(content) + else: + scene_tasks = "%s of %s" % (self.helper.setscene_current, self.helper.setscene_total) + cur_tasks = "%s of %s" % (self.helper.tasknumber_current, self.helper.tasknumber_total) + + content = '' + if not self.quiet: + msg = "Setscene tasks: %s" % scene_tasks + content += msg + "\n" + print(msg) + + if self.quiet: + msg = "Running tasks (%s, %s)" % (scene_tasks, cur_tasks) + elif not len(activetasks): + msg = "No currently running tasks (%s)" % cur_tasks + else: + msg = "Currently %2s running tasks (%s)" % (len(activetasks), cur_tasks) + maxtask = self.helper.tasknumber_total + if not self.main_progress or self.main_progress.maxval != maxtask: + widgets = [' ', progressbar.Percentage(), ' ', progressbar.Bar()] + self.main_progress = BBProgress("Running tasks", maxtask, widgets=widgets, resize_handler=self.sigwinch_handle) + self.main_progress.start(False) + self.main_progress.setmessage(msg) + progress = max(0, self.helper.tasknumber_current - 1) + content += self.main_progress.update(progress) + print('') + lines = self.getlines(content) + if not self.quiet: + for tasknum, task in enumerate(tasks[:(self.rows - 1 - lines)]): + if isinstance(task, tuple): + pbar, msg, progress, rate, start_time = task + if not pbar.start_time: + pbar.start(False) + if start_time: + pbar.start_time = start_time + pbar.setmessage('%s: %s' % (tasknum, msg)) + pbar.setextra(rate) + if progress > -1: + content = pbar.update(progress) + else: + content = pbar.update(1) + print('') + else: + content = "%s: %s" % (tasknum, task) + print(content) + lines = lines + self.getlines(content) + self.footer_present = lines + self.lastpids = runningpids[:] + self.lastcount = self.helper.tasknumber_current + + def getlines(self, content): + lines = 0 + for line in content.split("\n"): + lines = lines + 1 + int(len(line) / (self.columns + 1)) + return lines + + def finish(self): + if self.stdinbackup: + fd = sys.stdin.fileno() + self.termios.tcsetattr(fd, self.termios.TCSADRAIN, self.stdinbackup) + +def print_event_log(event, includelogs, loglines, termfilter): + # FIXME refactor this out further + logfile = event.logfile + if logfile and os.path.exists(logfile): + termfilter.clearFooter() + bb.error("Logfile of failure stored in: %s" % logfile) + if includelogs and not event.errprinted: + print("Log data follows:") + f = open(logfile, "r") + lines = [] + while True: + l = f.readline() + if l == '': + break + l = l.rstrip() + if loglines: + lines.append(' | %s' % l) + if len(lines) > int(loglines): + lines.pop(0) + else: + print('| %s' % l) + f.close() + if lines: + for line in lines: + print(line) + +def _log_settings_from_server(server, observe_only): + # Get values of variables which control our output + includelogs, error = server.runCommand(["getVariable", "BBINCLUDELOGS"]) + if error: + logger.error("Unable to get the value of BBINCLUDELOGS variable: %s" % error) + raise BaseException(error) + loglines, error = server.runCommand(["getVariable", "BBINCLUDELOGS_LINES"]) + if error: + logger.error("Unable to get the value of BBINCLUDELOGS_LINES variable: %s" % error) + raise BaseException(error) + if observe_only: + cmd = 'getVariable' + else: + cmd = 'getSetVariable' + consolelogfile, error = server.runCommand([cmd, "BB_CONSOLELOG"]) + if error: + logger.error("Unable to get the value of BB_CONSOLELOG variable: %s" % error) + raise BaseException(error) + logconfigfile, error = server.runCommand([cmd, "BB_LOGCONFIG"]) + if error: + logger.error("Unable to get the value of BB_LOGCONFIG variable: %s" % error) + raise BaseException(error) + return includelogs, loglines, consolelogfile, logconfigfile + +_evt_list = [ "bb.runqueue.runQueueExitWait", "bb.event.LogExecTTY", "logging.LogRecord", + "bb.build.TaskFailed", "bb.build.TaskBase", "bb.event.ParseStarted", + "bb.event.ParseProgress", "bb.event.ParseCompleted", "bb.event.CacheLoadStarted", + "bb.event.CacheLoadProgress", "bb.event.CacheLoadCompleted", "bb.command.CommandFailed", + "bb.command.CommandExit", "bb.command.CommandCompleted", "bb.cooker.CookerExit", + "bb.event.MultipleProviders", "bb.event.NoProvider", "bb.runqueue.sceneQueueTaskStarted", + "bb.runqueue.runQueueTaskStarted", "bb.runqueue.runQueueTaskFailed", "bb.runqueue.sceneQueueTaskFailed", + "bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent", + "bb.build.TaskProgress", "bb.event.ProcessStarted", "bb.event.ProcessProgress", "bb.event.ProcessFinished"] + +def drain_events_errorhandling(eventHandler): + # We don't have logging setup, we do need to show any events we see before exiting + event = True + logger = bb.msg.logger_create('bitbake', sys.stdout) + while event: + event = eventHandler.waitEvent(0) + if isinstance(event, logging.LogRecord): + logger.handle(event) + +def main(server, eventHandler, params, tf = TerminalFilter): + + try: + if not params.observe_only: + params.updateToServer(server, os.environ.copy()) + + includelogs, loglines, consolelogfile, logconfigfile = _log_settings_from_server(server, params.observe_only) + + loglevel, _ = bb.msg.constructLogOptions() + except bb.BBHandledException: + drain_events_errorhandling(eventHandler) + return 1 + + if params.options.quiet == 0: + console_loglevel = loglevel + elif params.options.quiet > 2: + console_loglevel = bb.msg.BBLogFormatter.ERROR + else: + console_loglevel = bb.msg.BBLogFormatter.WARNING + + logconfig = { + "version": 1, + "handlers": { + "BitBake.console": { + "class": "logging.StreamHandler", + "formatter": "BitBake.consoleFormatter", + "level": console_loglevel, + "stream": "ext://sys.stdout", + "filters": ["BitBake.stdoutFilter"], + ".": { + "is_console": True, + }, + }, + "BitBake.errconsole": { + "class": "logging.StreamHandler", + "formatter": "BitBake.consoleFormatter", + "level": loglevel, + "stream": "ext://sys.stderr", + "filters": ["BitBake.stderrFilter"], + ".": { + "is_console": True, + }, + }, + # This handler can be used if specific loggers should print on + # the console at a lower severity than the default. It will + # display any messages sent to it that are lower than then + # BitBake.console logging level (so as to prevent duplication of + # messages). Nothing is attached to this handler by default + "BitBake.verbconsole": { + "class": "logging.StreamHandler", + "formatter": "BitBake.consoleFormatter", + "level": 1, + "stream": "ext://sys.stdout", + "filters": ["BitBake.verbconsoleFilter"], + ".": { + "is_console": True, + }, + }, + }, + "formatters": { + # This format instance will get color output enabled by the + # terminal + "BitBake.consoleFormatter" : { + "()": "bb.msg.BBLogFormatter", + "format": "%(levelname)s: %(message)s" + }, + # The file log requires a separate instance so that it doesn't get + # color enabled + "BitBake.logfileFormatter": { + "()": "bb.msg.BBLogFormatter", + "format": "%(levelname)s: %(message)s" + } + }, + "filters": { + "BitBake.stdoutFilter": { + "()": "bb.msg.LogFilterLTLevel", + "level": "ERROR" + }, + "BitBake.stderrFilter": { + "()": "bb.msg.LogFilterGEQLevel", + "level": "ERROR" + }, + "BitBake.verbconsoleFilter": { + "()": "bb.msg.LogFilterLTLevel", + "level": console_loglevel + }, + }, + "loggers": { + "BitBake": { + "level": loglevel, + "handlers": ["BitBake.console", "BitBake.errconsole"], + } + }, + "disable_existing_loggers": False + } + + # Enable the console log file if enabled + if consolelogfile and not params.options.show_environment and not params.options.show_versions: + logconfig = bb.msg.mergeLoggingConfig(logconfig, { + "version": 1, + "handlers" : { + "BitBake.consolelog": { + "class": "logging.FileHandler", + "formatter": "BitBake.logfileFormatter", + "level": loglevel, + "filename": consolelogfile, + }, + # Just like verbconsole, anything sent here will go to the + # log file, unless it would go to BitBake.consolelog + "BitBake.verbconsolelog" : { + "class": "logging.FileHandler", + "formatter": "BitBake.logfileFormatter", + "level": 1, + "filename": consolelogfile, + "filters": ["BitBake.verbconsolelogFilter"], + }, + }, + "filters": { + "BitBake.verbconsolelogFilter": { + "()": "bb.msg.LogFilterLTLevel", + "level": loglevel, + }, + }, + "loggers": { + "BitBake": { + "handlers": ["BitBake.consolelog"], + }, + + # Other interesting things that we want to keep an eye on + # in the log files in case someone has an issue, but not + # necessarily show to the user on the console + "BitBake.SigGen.HashEquiv": { + "level": "VERBOSE", + "handlers": ["BitBake.verbconsolelog"], + }, + "BitBake.RunQueue.HashEquiv": { + "level": "VERBOSE", + "handlers": ["BitBake.verbconsolelog"], + } + } + }) + + bb.utils.mkdirhier(os.path.dirname(consolelogfile)) + loglink = os.path.join(os.path.dirname(consolelogfile), 'console-latest.log') + bb.utils.remove(loglink) + try: + os.symlink(os.path.basename(consolelogfile), loglink) + except OSError: + pass + + # Add the logging domains specified by the user on the command line + for (domainarg, iterator) in groupby(params.debug_domains): + dlevel = len(tuple(iterator)) + l = logconfig["loggers"].setdefault("BitBake.%s" % domainarg, {}) + l["level"] = logging.DEBUG - dlevel + 1 + l.setdefault("handlers", []).extend(["BitBake.verbconsole"]) + + conf = bb.msg.setLoggingConfig(logconfig, logconfigfile) + + if sys.stdin.isatty() and sys.stdout.isatty(): + log_exec_tty = True + else: + log_exec_tty = False + + helper = uihelper.BBUIHelper() + + # Look for the specially designated handlers which need to be passed to the + # terminal handler + console_handlers = [h for h in conf.config['handlers'].values() if getattr(h, 'is_console', False)] + + bb.utils.set_process_name("KnottyUI") + + if params.options.remote_server and params.options.kill_server: + server.terminateServer() + return + + llevel, debug_domains = bb.msg.constructLogOptions() + server.runCommand(["setEventMask", server.getEventHandle(), llevel, debug_domains, _evt_list]) + + # The logging_tree module is *extremely* helpful in debugging logging + # domains. Uncomment here to dump the logging tree when bitbake starts + #import logging_tree + #logging_tree.printout() + + universe = False + if not params.observe_only: + params.updateFromServer(server) + cmdline = params.parseActions() + if not cmdline: + print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.") + return 1 + if 'msg' in cmdline and cmdline['msg']: + logger.error(cmdline['msg']) + return 1 + if cmdline['action'][0] == "buildTargets" and "universe" in cmdline['action'][1]: + universe = True + + ret, error = server.runCommand(cmdline['action']) + if error: + logger.error("Command '%s' failed: %s" % (cmdline, error)) + return 1 + elif not ret: + logger.error("Command '%s' failed: returned %s" % (cmdline, ret)) + return 1 + + + parseprogress = None + cacheprogress = None + main.shutdown = 0 + interrupted = False + return_value = 0 + errors = 0 + warnings = 0 + taskfailures = [] + + printintervaldelta = 10 * 60 # 10 minutes + printinterval = printintervaldelta + lastprint = time.time() + + termfilter = tf(main, helper, console_handlers, params.options.quiet) + atexit.register(termfilter.finish) + + while True: + try: + if (lastprint + printinterval) <= time.time(): + termfilter.keepAlive(printinterval) + printinterval += printintervaldelta + event = eventHandler.waitEvent(0) + if event is None: + if main.shutdown > 1: + break + if not parseprogress: + termfilter.updateFooter() + event = eventHandler.waitEvent(0.25) + if event is None: + continue + helper.eventHandler(event) + if isinstance(event, bb.runqueue.runQueueExitWait): + if not main.shutdown: + main.shutdown = 1 + continue + if isinstance(event, bb.event.LogExecTTY): + if log_exec_tty: + tries = event.retries + while tries: + print("Trying to run: %s" % event.prog) + if os.system(event.prog) == 0: + break + time.sleep(event.sleep_delay) + tries -= 1 + if tries: + continue + logger.warning(event.msg) + continue + + if isinstance(event, logging.LogRecord): + lastprint = time.time() + printinterval = printintervaldelta + if event.levelno >= bb.msg.BBLogFormatter.ERRORONCE: + errors = errors + 1 + return_value = 1 + elif event.levelno == bb.msg.BBLogFormatter.WARNING: + warnings = warnings + 1 + + if event.taskpid != 0: + # For "normal" logging conditions, don't show note logs from tasks + # but do show them if the user has changed the default log level to + # include verbose/debug messages + if event.levelno <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or (event.levelno == bb.msg.BBLogFormatter.NOTE and llevel != bb.msg.BBLogFormatter.VERBOSE)): + continue + + # Prefix task messages with recipe/task + if event.taskpid in helper.pidmap and event.levelno not in [bb.msg.BBLogFormatter.PLAIN, bb.msg.BBLogFormatter.WARNONCE, bb.msg.BBLogFormatter.ERRORONCE]: + taskinfo = helper.running_tasks[helper.pidmap[event.taskpid]] + event.msg = taskinfo['title'] + ': ' + event.msg + if hasattr(event, 'fn') and event.levelno not in [bb.msg.BBLogFormatter.WARNONCE, bb.msg.BBLogFormatter.ERRORONCE]: + event.msg = event.fn + ': ' + event.msg + logging.getLogger(event.name).handle(event) + continue + + if isinstance(event, bb.build.TaskFailedSilent): + logger.warning("Logfile for failed setscene task is %s" % event.logfile) + continue + if isinstance(event, bb.build.TaskFailed): + return_value = 1 + print_event_log(event, includelogs, loglines, termfilter) + if isinstance(event, bb.build.TaskBase): + logger.info(event._message) + continue + if isinstance(event, bb.event.ParseStarted): + if params.options.quiet > 1: + continue + if event.total == 0: + continue + termfilter.clearFooter() + parseprogress = new_progress("Parsing recipes", event.total).start() + continue + if isinstance(event, bb.event.ParseProgress): + if params.options.quiet > 1: + continue + if parseprogress: + parseprogress.update(event.current) + else: + bb.warn("Got ParseProgress event for parsing that never started?") + continue + if isinstance(event, bb.event.ParseCompleted): + if params.options.quiet > 1: + continue + if not parseprogress: + continue + parseprogress.finish() + parseprogress = None + if params.options.quiet == 0: + print(("Parsing of %d .bb files complete (%d cached, %d parsed). %d targets, %d skipped, %d masked, %d errors." + % ( event.total, event.cached, event.parsed, event.virtuals, event.skipped, event.masked, event.errors))) + continue + + if isinstance(event, bb.event.CacheLoadStarted): + if params.options.quiet > 1: + continue + cacheprogress = new_progress("Loading cache", event.total).start() + continue + if isinstance(event, bb.event.CacheLoadProgress): + if params.options.quiet > 1: + continue + cacheprogress.update(event.current) + continue + if isinstance(event, bb.event.CacheLoadCompleted): + if params.options.quiet > 1: + continue + cacheprogress.finish() + if params.options.quiet == 0: + print("Loaded %d entries from dependency cache." % event.num_entries) + continue + + if isinstance(event, bb.command.CommandFailed): + return_value = event.exitcode + if event.error: + errors = errors + 1 + logger.error(str(event)) + main.shutdown = 2 + continue + if isinstance(event, bb.command.CommandExit): + if not return_value: + return_value = event.exitcode + main.shutdown = 2 + continue + if isinstance(event, (bb.command.CommandCompleted, bb.cooker.CookerExit)): + main.shutdown = 2 + continue + if isinstance(event, bb.event.MultipleProviders): + logger.info(str(event)) + continue + if isinstance(event, bb.event.NoProvider): + # For universe builds, only show these as warnings, not errors + if not universe: + return_value = 1 + errors = errors + 1 + logger.error(str(event)) + else: + logger.warning(str(event)) + continue + + if isinstance(event, bb.runqueue.sceneQueueTaskStarted): + logger.info("Running setscene task %d of %d (%s)" % (event.stats.setscene_covered + event.stats.setscene_active + event.stats.setscene_notcovered + 1, event.stats.setscene_total, event.taskstring)) + continue + + if isinstance(event, bb.runqueue.runQueueTaskStarted): + if event.noexec: + tasktype = 'noexec task' + else: + tasktype = 'task' + logger.info("Running %s %d of %d (%s)", + tasktype, + event.stats.completed + event.stats.active + + event.stats.failed + 1, + event.stats.total, event.taskstring) + continue + + if isinstance(event, bb.runqueue.runQueueTaskFailed): + return_value = 1 + taskfailures.append(event.taskstring) + logger.error(str(event)) + continue + + if isinstance(event, bb.runqueue.sceneQueueTaskFailed): + logger.warning(str(event)) + continue + + if isinstance(event, bb.event.DepTreeGenerated): + continue + + if isinstance(event, bb.event.ProcessStarted): + if params.options.quiet > 1: + continue + termfilter.clearFooter() + parseprogress = new_progress(event.processname, event.total) + parseprogress.start(False) + continue + if isinstance(event, bb.event.ProcessProgress): + if params.options.quiet > 1: + continue + if parseprogress: + parseprogress.update(event.progress) + else: + bb.warn("Got ProcessProgress event for someting that never started?") + continue + if isinstance(event, bb.event.ProcessFinished): + if params.options.quiet > 1: + continue + if parseprogress: + parseprogress.finish() + parseprogress = None + continue + + # ignore + if isinstance(event, (bb.event.BuildBase, + bb.event.MetadataEvent, + bb.event.ConfigParsed, + bb.event.MultiConfigParsed, + bb.event.RecipeParsed, + bb.event.RecipePreFinalise, + bb.runqueue.runQueueEvent, + bb.event.OperationStarted, + bb.event.OperationCompleted, + bb.event.OperationProgress, + bb.event.DiskFull, + bb.event.HeartbeatEvent, + bb.build.TaskProgress)): + continue + + logger.error("Unknown event: %s", event) + + except EnvironmentError as ioerror: + termfilter.clearFooter() + # ignore interrupted io + if ioerror.args[0] == 4: + continue + sys.stderr.write(str(ioerror)) + if not params.observe_only: + _, error = server.runCommand(["stateForceShutdown"]) + main.shutdown = 2 + except KeyboardInterrupt: + termfilter.clearFooter() + if params.observe_only: + print("\nKeyboard Interrupt, exiting observer...") + main.shutdown = 2 + + def state_force_shutdown(): + print("\nSecond Keyboard Interrupt, stopping...\n") + _, error = server.runCommand(["stateForceShutdown"]) + if error: + logger.error("Unable to cleanly stop: %s" % error) + + if not params.observe_only and main.shutdown == 1: + state_force_shutdown() + + if not params.observe_only and main.shutdown == 0: + print("\nKeyboard Interrupt, closing down...\n") + interrupted = True + # Capture the second KeyboardInterrupt during stateShutdown is running + try: + _, error = server.runCommand(["stateShutdown"]) + if error: + logger.error("Unable to cleanly shutdown: %s" % error) + except KeyboardInterrupt: + state_force_shutdown() + + main.shutdown = main.shutdown + 1 + except Exception as e: + import traceback + sys.stderr.write(traceback.format_exc()) + if not params.observe_only: + _, error = server.runCommand(["stateForceShutdown"]) + main.shutdown = 2 + return_value = 1 + try: + termfilter.clearFooter() + summary = "" + if taskfailures: + summary += pluralise("\nSummary: %s task failed:", + "\nSummary: %s tasks failed:", len(taskfailures)) + for failure in taskfailures: + summary += "\n %s" % failure + if warnings: + summary += pluralise("\nSummary: There was %s WARNING message.", + "\nSummary: There were %s WARNING messages.", warnings) + if return_value and errors: + summary += pluralise("\nSummary: There was %s ERROR message, returning a non-zero exit code.", + "\nSummary: There were %s ERROR messages, returning a non-zero exit code.", errors) + if summary and params.options.quiet == 0: + print(summary) + + if interrupted: + print("Execution was interrupted, returning a non-zero exit code.") + if return_value == 0: + return_value = 1 + except IOError as e: + import errno + if e.errno == errno.EPIPE: + pass + + logging.shutdown() + + return return_value diff --git a/poky/bitbake/lib/bb/ui/ncurses.py b/poky/bitbake/lib/bb/ui/ncurses.py new file mode 100644 index 0000000..cf1c876 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/ncurses.py @@ -0,0 +1,364 @@ +# +# BitBake Curses UI Implementation +# +# Implements an ncurses frontend for the BitBake utility. +# +# Copyright (C) 2006 Michael 'Mickey' Lauer +# Copyright (C) 2006-2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +""" + We have the following windows: + + 1.) Main Window: Shows what we are ultimately building and how far we are. Includes status bar + 2.) Thread Activity Window: Shows one status line for every concurrent bitbake thread. + 3.) Command Line Window: Contains an interactive command line where you can interact w/ Bitbake. + + Basic window layout is like that: + + |---------------------------------------------------------| + |
    | | + | | 0: foo do_compile complete| + | Building Gtk+-2.6.10 | 1: bar do_patch complete | + | Status: 60% | ... | + | | ... | + | | ... | + |---------------------------------------------------------| + | | + |>>> which virtual/kernel | + |openzaurus-kernel | + |>>> _ | + |---------------------------------------------------------| + +""" + + + +import logging +import os, sys, itertools, time + +try: + import curses +except ImportError: + sys.exit("FATAL: The ncurses ui could not load the required curses python module.") + +import bb +import xmlrpc.client +from bb.ui import uihelper + +logger = logging.getLogger(__name__) + +parsespin = itertools.cycle( r'|/-\\' ) + +X = 0 +Y = 1 +WIDTH = 2 +HEIGHT = 3 + +MAXSTATUSLENGTH = 32 + +class NCursesUI: + """ + NCurses UI Class + """ + class Window: + """Base Window Class""" + def __init__( self, x, y, width, height, fg=curses.COLOR_BLACK, bg=curses.COLOR_WHITE ): + self.win = curses.newwin( height, width, y, x ) + self.dimensions = ( x, y, width, height ) + """ + if curses.has_colors(): + color = 1 + curses.init_pair( color, fg, bg ) + self.win.bkgdset( ord(' '), curses.color_pair(color) ) + else: + self.win.bkgdset( ord(' '), curses.A_BOLD ) + """ + self.erase() + self.setScrolling() + self.win.noutrefresh() + + def erase( self ): + self.win.erase() + + def setScrolling( self, b = True ): + self.win.scrollok( b ) + self.win.idlok( b ) + + def setBoxed( self ): + self.boxed = True + self.win.box() + self.win.noutrefresh() + + def setText( self, x, y, text, *args ): + self.win.addstr( y, x, text, *args ) + self.win.noutrefresh() + + def appendText( self, text, *args ): + self.win.addstr( text, *args ) + self.win.noutrefresh() + + def drawHline( self, y ): + self.win.hline( y, 0, curses.ACS_HLINE, self.dimensions[WIDTH] ) + self.win.noutrefresh() + + class DecoratedWindow( Window ): + """Base class for windows with a box and a title bar""" + def __init__( self, title, x, y, width, height, fg=curses.COLOR_BLACK, bg=curses.COLOR_WHITE ): + NCursesUI.Window.__init__( self, x+1, y+3, width-2, height-4, fg, bg ) + self.decoration = NCursesUI.Window( x, y, width, height, fg, bg ) + self.decoration.setBoxed() + self.decoration.win.hline( 2, 1, curses.ACS_HLINE, width-2 ) + self.setTitle( title ) + + def setTitle( self, title ): + self.decoration.setText( 1, 1, title.center( self.dimensions[WIDTH]-2 ), curses.A_BOLD ) + + #-------------------------------------------------------------------------# +# class TitleWindow( Window ): + #-------------------------------------------------------------------------# +# """Title Window""" +# def __init__( self, x, y, width, height ): +# NCursesUI.Window.__init__( self, x, y, width, height ) +# version = bb.__version__ +# title = "BitBake %s" % version +# credit = "(C) 2003-2007 Team BitBake" +# #self.win.hline( 2, 1, curses.ACS_HLINE, width-2 ) +# self.win.border() +# self.setText( 1, 1, title.center( self.dimensions[WIDTH]-2 ), curses.A_BOLD ) +# self.setText( 1, 2, credit.center( self.dimensions[WIDTH]-2 ), curses.A_BOLD ) + + #-------------------------------------------------------------------------# + class ThreadActivityWindow( DecoratedWindow ): + #-------------------------------------------------------------------------# + """Thread Activity Window""" + def __init__( self, x, y, width, height ): + NCursesUI.DecoratedWindow.__init__( self, "Thread Activity", x, y, width, height ) + + def setStatus( self, thread, text ): + line = "%02d: %s" % ( thread, text ) + width = self.dimensions[WIDTH] + if ( len(line) > width ): + line = line[:width-3] + "..." + else: + line = line.ljust( width ) + self.setText( 0, thread, line ) + + #-------------------------------------------------------------------------# + class MainWindow( DecoratedWindow ): + #-------------------------------------------------------------------------# + """Main Window""" + def __init__( self, x, y, width, height ): + self.StatusPosition = width - MAXSTATUSLENGTH + NCursesUI.DecoratedWindow.__init__( self, None, x, y, width, height ) + curses.nl() + + def setTitle( self, title ): + title = "BitBake %s" % bb.__version__ + self.decoration.setText( 2, 1, title, curses.A_BOLD ) + self.decoration.setText( self.StatusPosition - 8, 1, "Status:", curses.A_BOLD ) + + def setStatus(self, status): + while len(status) < MAXSTATUSLENGTH: + status = status + " " + self.decoration.setText( self.StatusPosition, 1, status, curses.A_BOLD ) + + + #-------------------------------------------------------------------------# + class ShellOutputWindow( DecoratedWindow ): + #-------------------------------------------------------------------------# + """Interactive Command Line Output""" + def __init__( self, x, y, width, height ): + NCursesUI.DecoratedWindow.__init__( self, "Command Line Window", x, y, width, height ) + + #-------------------------------------------------------------------------# + class ShellInputWindow( Window ): + #-------------------------------------------------------------------------# + """Interactive Command Line Input""" + def __init__( self, x, y, width, height ): + NCursesUI.Window.__init__( self, x, y, width, height ) + +# put that to the top again from curses.textpad import Textbox +# self.textbox = Textbox( self.win ) +# t = threading.Thread() +# t.run = self.textbox.edit +# t.start() + + #-------------------------------------------------------------------------# + def main(self, stdscr, server, eventHandler, params): + #-------------------------------------------------------------------------# + height, width = stdscr.getmaxyx() + + # for now split it like that: + # MAIN_y + THREAD_y = 2/3 screen at the top + # MAIN_x = 2/3 left, THREAD_y = 1/3 right + # CLI_y = 1/3 of screen at the bottom + # CLI_x = full + + main_left = 0 + main_top = 0 + main_height = ( height // 3 * 2 ) + main_width = ( width // 3 ) * 2 + clo_left = main_left + clo_top = main_top + main_height + clo_height = height - main_height - main_top - 1 + clo_width = width + cli_left = main_left + cli_top = clo_top + clo_height + cli_height = 1 + cli_width = width + thread_left = main_left + main_width + thread_top = main_top + thread_height = main_height + thread_width = width - main_width + + #tw = self.TitleWindow( 0, 0, width, main_top ) + mw = self.MainWindow( main_left, main_top, main_width, main_height ) + taw = self.ThreadActivityWindow( thread_left, thread_top, thread_width, thread_height ) + clo = self.ShellOutputWindow( clo_left, clo_top, clo_width, clo_height ) + cli = self.ShellInputWindow( cli_left, cli_top, cli_width, cli_height ) + cli.setText( 0, 0, "BB>" ) + + mw.setStatus("Idle") + + helper = uihelper.BBUIHelper() + shutdown = 0 + + try: + params.updateFromServer(server) + cmdline = params.parseActions() + if not cmdline: + print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.") + return 1 + if 'msg' in cmdline and cmdline['msg']: + logger.error(cmdline['msg']) + return 1 + cmdline = cmdline['action'] + ret, error = server.runCommand(cmdline) + if error: + print("Error running command '%s': %s" % (cmdline, error)) + return + elif not ret: + print("Couldn't get default commandlind! %s" % ret) + return + except xmlrpc.client.Fault as x: + print("XMLRPC Fault getting commandline:\n %s" % x) + return + + exitflag = False + while not exitflag: + try: + event = eventHandler.waitEvent(0.25) + if not event: + continue + + helper.eventHandler(event) + if isinstance(event, bb.build.TaskBase): + mw.appendText("NOTE: %s\n" % event._message) + if isinstance(event, logging.LogRecord): + mw.appendText(logging.getLevelName(event.levelno) + ': ' + event.getMessage() + '\n') + + if isinstance(event, bb.event.CacheLoadStarted): + self.parse_total = event.total + if isinstance(event, bb.event.CacheLoadProgress): + x = event.current + y = self.parse_total + mw.setStatus("Loading Cache: %s [%2d %%]" % ( next(parsespin), x*100/y ) ) + if isinstance(event, bb.event.CacheLoadCompleted): + mw.setStatus("Idle") + mw.appendText("Loaded %d entries from dependency cache.\n" + % ( event.num_entries)) + + if isinstance(event, bb.event.ParseStarted): + self.parse_total = event.total + if isinstance(event, bb.event.ParseProgress): + x = event.current + y = self.parse_total + mw.setStatus("Parsing Recipes: %s [%2d %%]" % ( next(parsespin), x*100/y ) ) + if isinstance(event, bb.event.ParseCompleted): + mw.setStatus("Idle") + mw.appendText("Parsing finished. %d cached, %d parsed, %d skipped, %d masked.\n" + % ( event.cached, event.parsed, event.skipped, event.masked )) + +# if isinstance(event, bb.build.TaskFailed): +# if event.logfile: +# if data.getVar("BBINCLUDELOGS", d): +# bb.error("log data follows (%s)" % logfile) +# number_of_lines = data.getVar("BBINCLUDELOGS_LINES", d) +# if number_of_lines: +# subprocess.check_call('tail -n%s %s' % (number_of_lines, logfile), shell=True) +# else: +# f = open(logfile, "r") +# while True: +# l = f.readline() +# if l == '': +# break +# l = l.rstrip() +# print '| %s' % l +# f.close() +# else: +# bb.error("see log in %s" % logfile) + + if isinstance(event, bb.command.CommandCompleted): + # stop so the user can see the result of the build, but + # also allow them to now exit with a single ^C + shutdown = 2 + if isinstance(event, bb.command.CommandFailed): + mw.appendText(str(event)) + time.sleep(2) + exitflag = True + if isinstance(event, bb.command.CommandExit): + exitflag = True + if isinstance(event, bb.cooker.CookerExit): + exitflag = True + + if isinstance(event, bb.event.LogExecTTY): + mw.appendText('WARN: ' + event.msg + '\n') + if helper.needUpdate: + activetasks, failedtasks = helper.getTasks() + taw.erase() + taw.setText(0, 0, "") + if activetasks: + taw.appendText("Active Tasks:\n") + for task in activetasks.values(): + taw.appendText(task["title"] + '\n') + if failedtasks: + taw.appendText("Failed Tasks:\n") + for task in failedtasks: + taw.appendText(task["title"] + '\n') + + curses.doupdate() + except EnvironmentError as ioerror: + # ignore interrupted io + if ioerror.args[0] == 4: + pass + + except KeyboardInterrupt: + if shutdown == 2: + mw.appendText("Third Keyboard Interrupt, exit.\n") + exitflag = True + if shutdown == 1: + mw.appendText("Second Keyboard Interrupt, stopping...\n") + _, error = server.runCommand(["stateForceShutdown"]) + if error: + print("Unable to cleanly stop: %s" % error) + if shutdown == 0: + mw.appendText("Keyboard Interrupt, closing down...\n") + _, error = server.runCommand(["stateShutdown"]) + if error: + print("Unable to cleanly shutdown: %s" % error) + shutdown = shutdown + 1 + pass + +def main(server, eventHandler, params): + if not os.isatty(sys.stdout.fileno()): + print("FATAL: Unable to run 'ncurses' UI without a TTY.") + return + ui = NCursesUI() + try: + curses.wrapper(ui.main, server, eventHandler, params) + except: + import traceback + traceback.print_exc() diff --git a/poky/bitbake/lib/bb/ui/taskexp.py b/poky/bitbake/lib/bb/ui/taskexp.py new file mode 100644 index 0000000..c00eaf6 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/taskexp.py @@ -0,0 +1,341 @@ +# +# BitBake Graphical GTK based Dependency Explorer +# +# Copyright (C) 2007 Ross Burton +# Copyright (C) 2007 - 2008 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import sys +import traceback + +try: + import gi + gi.require_version('Gtk', '3.0') + from gi.repository import Gtk, Gdk, GObject +except ValueError: + sys.exit("FATAL: Gtk version needs to be 3.0") +except ImportError: + sys.exit("FATAL: Gtk ui could not load the required gi python module") + +import threading +from xmlrpc import client +import bb +import bb.event + +# Package Model +(COL_PKG_NAME) = (0) + +# Dependency Model +(TYPE_DEP, TYPE_RDEP) = (0, 1) +(COL_DEP_TYPE, COL_DEP_PARENT, COL_DEP_PACKAGE) = (0, 1, 2) + + +class PackageDepView(Gtk.TreeView): + def __init__(self, model, dep_type, label): + Gtk.TreeView.__init__(self) + self.current = None + self.dep_type = dep_type + self.filter_model = model.filter_new() + self.filter_model.set_visible_func(self._filter, data=None) + self.set_model(self.filter_model) + self.append_column(Gtk.TreeViewColumn(label, Gtk.CellRendererText(), text=COL_DEP_PACKAGE)) + + def _filter(self, model, iter, data): + this_type = model[iter][COL_DEP_TYPE] + package = model[iter][COL_DEP_PARENT] + if this_type != self.dep_type: return False + return package == self.current + + def set_current_package(self, package): + self.current = package + self.filter_model.refilter() + + +class PackageReverseDepView(Gtk.TreeView): + def __init__(self, model, label): + Gtk.TreeView.__init__(self) + self.current = None + self.filter_model = model.filter_new() + self.filter_model.set_visible_func(self._filter) + # The introspected API was fixed but we can't rely on a pygobject that hides this. + # https://gitlab.gnome.org/GNOME/pygobject/-/commit/9cdbc56fbac4db2de78dc080934b8f0a7efc892a + if hasattr(Gtk.TreeModelSort, "new_with_model"): + self.sort_model = Gtk.TreeModelSort.new_with_model(self.filter_model) + else: + self.sort_model = self.filter_model.sort_new_with_model() + self.sort_model.set_sort_column_id(COL_DEP_PARENT, Gtk.SortType.ASCENDING) + self.set_model(self.sort_model) + self.append_column(Gtk.TreeViewColumn(label, Gtk.CellRendererText(), text=COL_DEP_PARENT)) + + def _filter(self, model, iter, data): + package = model[iter][COL_DEP_PACKAGE] + return package == self.current + + def set_current_package(self, package): + self.current = package + self.filter_model.refilter() + + +class DepExplorer(Gtk.Window): + def __init__(self): + Gtk.Window.__init__(self) + self.set_title("Task Dependency Explorer") + self.set_default_size(500, 500) + self.connect("delete-event", Gtk.main_quit) + + # Create the data models + self.pkg_model = Gtk.ListStore(GObject.TYPE_STRING) + self.pkg_model.set_sort_column_id(COL_PKG_NAME, Gtk.SortType.ASCENDING) + self.depends_model = Gtk.ListStore(GObject.TYPE_INT, GObject.TYPE_STRING, GObject.TYPE_STRING) + self.depends_model.set_sort_column_id(COL_DEP_PACKAGE, Gtk.SortType.ASCENDING) + + pane = Gtk.HPaned() + pane.set_position(250) + self.add(pane) + + # The master list of packages + scrolled = Gtk.ScrolledWindow() + scrolled.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC) + scrolled.set_shadow_type(Gtk.ShadowType.IN) + + self.pkg_treeview = Gtk.TreeView(self.pkg_model) + self.pkg_treeview.get_selection().connect("changed", self.on_cursor_changed) + column = Gtk.TreeViewColumn("Package", Gtk.CellRendererText(), text=COL_PKG_NAME) + self.pkg_treeview.append_column(column) + scrolled.add(self.pkg_treeview) + + self.search_entry = Gtk.SearchEntry.new() + self.pkg_treeview.set_search_entry(self.search_entry) + + left_panel = Gtk.VPaned() + left_panel.add(self.search_entry) + left_panel.add(scrolled) + pane.add1(left_panel) + + box = Gtk.VBox(homogeneous=True, spacing=4) + + # Task Depends + scrolled = Gtk.ScrolledWindow() + scrolled.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC) + scrolled.set_shadow_type(Gtk.ShadowType.IN) + self.dep_treeview = PackageDepView(self.depends_model, TYPE_DEP, "Dependencies") + self.dep_treeview.connect("row-activated", self.on_package_activated, COL_DEP_PACKAGE) + scrolled.add(self.dep_treeview) + box.add(scrolled) + pane.add2(box) + + # Reverse Task Depends + scrolled = Gtk.ScrolledWindow() + scrolled.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC) + scrolled.set_shadow_type(Gtk.ShadowType.IN) + self.revdep_treeview = PackageReverseDepView(self.depends_model, "Dependent Tasks") + self.revdep_treeview.connect("row-activated", self.on_package_activated, COL_DEP_PARENT) + scrolled.add(self.revdep_treeview) + box.add(scrolled) + pane.add2(box) + + self.show_all() + self.search_entry.grab_focus() + + def on_package_activated(self, treeview, path, column, data_col): + model = treeview.get_model() + package = model.get_value(model.get_iter(path), data_col) + + pkg_path = [] + def finder(model, path, iter, needle): + package = model.get_value(iter, COL_PKG_NAME) + if package == needle: + pkg_path.append(path) + return True + else: + return False + self.pkg_model.foreach(finder, package) + if pkg_path: + self.pkg_treeview.get_selection().select_path(pkg_path[0]) + self.pkg_treeview.scroll_to_cell(pkg_path[0]) + + def on_cursor_changed(self, selection): + (model, it) = selection.get_selected() + if it is None: + current_package = None + else: + current_package = model.get_value(it, COL_PKG_NAME) + self.dep_treeview.set_current_package(current_package) + self.revdep_treeview.set_current_package(current_package) + + + def parse(self, depgraph): + for task in depgraph["tdepends"]: + self.pkg_model.insert(0, (task,)) + for depend in depgraph["tdepends"][task]: + self.depends_model.insert (0, (TYPE_DEP, task, depend)) + + +class gtkthread(threading.Thread): + quit = threading.Event() + def __init__(self, shutdown): + threading.Thread.__init__(self) + self.setDaemon(True) + self.shutdown = shutdown + if not Gtk.init_check()[0]: + sys.stderr.write("Gtk+ init failed. Make sure DISPLAY variable is set.\n") + gtkthread.quit.set() + + def run(self): + GObject.threads_init() + Gdk.threads_init() + Gtk.main() + gtkthread.quit.set() + + +def main(server, eventHandler, params): + shutdown = 0 + + gtkgui = gtkthread(shutdown) + gtkgui.start() + + try: + params.updateToServer(server, os.environ.copy()) + params.updateFromServer(server) + cmdline = params.parseActions() + if not cmdline: + print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.") + return 1 + if 'msg' in cmdline and cmdline['msg']: + print(cmdline['msg']) + return 1 + cmdline = cmdline['action'] + if not cmdline or cmdline[0] != "generateDotGraph": + print("This UI requires the -g option") + return 1 + ret, error = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]]) + if error: + print("Error running command '%s': %s" % (cmdline, error)) + return 1 + elif not ret: + print("Error running command '%s': returned %s" % (cmdline, ret)) + return 1 + except client.Fault as x: + print("XMLRPC Fault getting commandline:\n %s" % x) + return + except Exception as e: + print("Exception in startup:\n %s" % traceback.format_exc()) + return + + if gtkthread.quit.isSet(): + return + + Gdk.threads_enter() + dep = DepExplorer() + bardialog = Gtk.Dialog(parent=dep, + flags=Gtk.DialogFlags.MODAL|Gtk.DialogFlags.DESTROY_WITH_PARENT) + bardialog.set_default_size(400, 50) + box = bardialog.get_content_area() + pbar = Gtk.ProgressBar() + box.pack_start(pbar, True, True, 0) + bardialog.show_all() + bardialog.connect("delete-event", Gtk.main_quit) + Gdk.threads_leave() + + progress_total = 0 + while True: + try: + event = eventHandler.waitEvent(0.25) + if gtkthread.quit.isSet(): + _, error = server.runCommand(["stateForceShutdown"]) + if error: + print('Unable to cleanly stop: %s' % error) + break + + if event is None: + continue + + if isinstance(event, bb.event.CacheLoadStarted): + progress_total = event.total + Gdk.threads_enter() + bardialog.set_title("Loading Cache") + pbar.set_fraction(0.0) + Gdk.threads_leave() + + if isinstance(event, bb.event.CacheLoadProgress): + x = event.current + Gdk.threads_enter() + pbar.set_fraction(x * 1.0 / progress_total) + Gdk.threads_leave() + continue + + if isinstance(event, bb.event.CacheLoadCompleted): + continue + + if isinstance(event, bb.event.ParseStarted): + progress_total = event.total + if progress_total == 0: + continue + Gdk.threads_enter() + pbar.set_fraction(0.0) + bardialog.set_title("Processing recipes") + Gdk.threads_leave() + + if isinstance(event, bb.event.ParseProgress): + x = event.current + Gdk.threads_enter() + pbar.set_fraction(x * 1.0 / progress_total) + Gdk.threads_leave() + continue + + if isinstance(event, bb.event.ParseCompleted): + Gdk.threads_enter() + bardialog.set_title("Generating dependency tree") + Gdk.threads_leave() + continue + + if isinstance(event, bb.event.DepTreeGenerated): + Gdk.threads_enter() + bardialog.hide() + dep.parse(event._depgraph) + Gdk.threads_leave() + + if isinstance(event, bb.command.CommandCompleted): + continue + + if isinstance(event, bb.event.NoProvider): + print(str(event)) + + _, error = server.runCommand(["stateShutdown"]) + if error: + print('Unable to cleanly shutdown: %s' % error) + break + + if isinstance(event, bb.command.CommandFailed): + print(str(event)) + return event.exitcode + + if isinstance(event, bb.command.CommandExit): + return event.exitcode + + if isinstance(event, bb.cooker.CookerExit): + break + + continue + except EnvironmentError as ioerror: + # ignore interrupted io + if ioerror.args[0] == 4: + pass + except KeyboardInterrupt: + if shutdown == 2: + print("\nThird Keyboard Interrupt, exit.\n") + break + if shutdown == 1: + print("\nSecond Keyboard Interrupt, stopping...\n") + _, error = server.runCommand(["stateForceShutdown"]) + if error: + print('Unable to cleanly stop: %s' % error) + if shutdown == 0: + print("\nKeyboard Interrupt, closing down...\n") + _, error = server.runCommand(["stateShutdown"]) + if error: + print('Unable to cleanly shutdown: %s' % error) + shutdown = shutdown + 1 + pass diff --git a/poky/bitbake/lib/bb/ui/teamcity.py b/poky/bitbake/lib/bb/ui/teamcity.py new file mode 100644 index 0000000..fca46c2 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/teamcity.py @@ -0,0 +1,396 @@ +# +# TeamCity UI Implementation +# +# Implements a TeamCity frontend for the BitBake utility, via service messages. +# See https://www.jetbrains.com/help/teamcity/build-script-interaction-with-teamcity.html +# +# Based on ncurses.py and knotty.py, variously by Michael Lauer and Richard Purdie +# +# Copyright (C) 2006 Michael 'Mickey' Lauer +# Copyright (C) 2006-2012 Richard Purdie +# Copyright (C) 2018-2020 Agilent Technologies, Inc. +# +# SPDX-License-Identifier: GPL-2.0-only +# +# Author: Chris Laplante + +from __future__ import division + +import datetime +import logging +import math +import os +import re +import sys +import xmlrpc.client +from collections import deque + +import bb +import bb.build +import bb.command +import bb.cooker +import bb.event +import bb.exceptions +import bb.runqueue +from bb.ui import uihelper + +logger = logging.getLogger("BitBake") + + +class TeamCityUI: + def __init__(self): + self._block_stack = [] + self._last_progress_state = None + + @classmethod + def escape_service_value(cls, value): + """ + Escape a value for inclusion in a service message. TeamCity uses the vertical pipe character for escaping. + See: https://confluence.jetbrains.com/display/TCD10/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-Escapedvalues + """ + return re.sub(r"(['|\[\]])", r"|\1", value).replace("\n", "|n").replace("\r", "|r") + + @classmethod + def emit_service_message(cls, message_type, **kwargs): + print(cls.format_service_message(message_type, **kwargs), flush=True) + + @classmethod + def format_service_message(cls, message_type, **kwargs): + payload = " ".join(["{0}='{1}'".format(k, cls.escape_service_value(v)) for k, v in kwargs.items()]) + return "##teamcity[{0} {1}]".format(message_type, payload) + + @classmethod + def emit_simple_service_message(cls, message_type, message): + print(cls.format_simple_service_message(message_type, message), flush=True) + + @classmethod + def format_simple_service_message(cls, message_type, message): + return "##teamcity[{0} '{1}']".format(message_type, cls.escape_service_value(message)) + + @classmethod + def format_build_message(cls, text, status): + return cls.format_service_message("message", text=text, status=status) + + def block_start(self, name): + self._block_stack.append(name) + self.emit_service_message("blockOpened", name=name) + + def block_end(self): + if self._block_stack: + name = self._block_stack.pop() + self.emit_service_message("blockClosed", name=name) + + def progress(self, message, percent, extra=None): + now = datetime.datetime.now() + percent = "{0: >3.0f}".format(percent) + + report = False + if not self._last_progress_state \ + or (self._last_progress_state[0] == message + and self._last_progress_state[1] != percent + and (now - self._last_progress_state[2]).microseconds >= 5000) \ + or self._last_progress_state[0] != message: + report = True + self._last_progress_state = (message, percent, now) + + if report or percent in [0, 100]: + self.emit_simple_service_message("progressMessage", "{0}: {1}%{2}".format(message, percent, extra or "")) + + +class TeamcityLogFormatter(logging.Formatter): + def format(self, record): + details = "" + if hasattr(record, 'bb_exc_formatted'): + details = ''.join(record.bb_exc_formatted) + elif hasattr(record, 'bb_exc_info'): + etype, value, tb = record.bb_exc_info + formatted = bb.exceptions.format_exception(etype, value, tb, limit=5) + details = ''.join(formatted) + + if record.levelno in [bb.msg.BBLogFormatter.ERROR, bb.msg.BBLogFormatter.CRITICAL]: + # ERROR gets a separate errorDetails field + msg = TeamCityUI.format_service_message("message", text=record.getMessage(), status="ERROR", + errorDetails=details) + else: + payload = record.getMessage() + if details: + payload += "\n" + details + if record.levelno == bb.msg.BBLogFormatter.PLAIN: + msg = payload + elif record.levelno == bb.msg.BBLogFormatter.WARNING: + msg = TeamCityUI.format_service_message("message", text=payload, status="WARNING") + else: + msg = TeamCityUI.format_service_message("message", text=payload, status="NORMAL") + + return msg + + +_evt_list = ["bb.runqueue.runQueueExitWait", "bb.event.LogExecTTY", "logging.LogRecord", + "bb.build.TaskFailed", "bb.build.TaskBase", "bb.event.ParseStarted", + "bb.event.ParseProgress", "bb.event.ParseCompleted", "bb.event.CacheLoadStarted", + "bb.event.CacheLoadProgress", "bb.event.CacheLoadCompleted", "bb.command.CommandFailed", + "bb.command.CommandExit", "bb.command.CommandCompleted", "bb.cooker.CookerExit", + "bb.event.MultipleProviders", "bb.event.NoProvider", "bb.runqueue.sceneQueueTaskStarted", + "bb.runqueue.runQueueTaskStarted", "bb.runqueue.runQueueTaskFailed", "bb.runqueue.sceneQueueTaskFailed", + "bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent", + "bb.build.TaskProgress", "bb.event.ProcessStarted", "bb.event.ProcessProgress", "bb.event.ProcessFinished"] + + +def _log_settings_from_server(server): + # Get values of variables which control our output + includelogs, error = server.runCommand(["getVariable", "BBINCLUDELOGS"]) + if error: + logger.error("Unable to get the value of BBINCLUDELOGS variable: %s" % error) + raise BaseException(error) + loglines, error = server.runCommand(["getVariable", "BBINCLUDELOGS_LINES"]) + if error: + logger.error("Unable to get the value of BBINCLUDELOGS_LINES variable: %s" % error) + raise BaseException(error) + return includelogs, loglines + + +def main(server, eventHandler, params): + params.updateToServer(server, os.environ.copy()) + + includelogs, loglines = _log_settings_from_server(server) + + ui = TeamCityUI() + + helper = uihelper.BBUIHelper() + + console = logging.StreamHandler(sys.stdout) + errconsole = logging.StreamHandler(sys.stderr) + format = TeamcityLogFormatter() + if params.options.quiet == 0: + forcelevel = None + elif params.options.quiet > 2: + forcelevel = bb.msg.BBLogFormatter.ERROR + else: + forcelevel = bb.msg.BBLogFormatter.WARNING + console.setFormatter(format) + errconsole.setFormatter(format) + if not bb.msg.has_console_handler(logger): + logger.addHandler(console) + logger.addHandler(errconsole) + + if params.options.remote_server and params.options.kill_server: + server.terminateServer() + return + + if params.observe_only: + logger.error("Observe-only mode not supported in this UI") + return 1 + + llevel, debug_domains = bb.msg.constructLogOptions() + server.runCommand(["setEventMask", server.getEventHandle(), llevel, debug_domains, _evt_list]) + + try: + params.updateFromServer(server) + cmdline = params.parseActions() + if not cmdline: + logger.error("No task given") + return 1 + if 'msg' in cmdline and cmdline['msg']: + logger.error(cmdline['msg']) + return 1 + cmdline = cmdline['action'] + ret, error = server.runCommand(cmdline) + if error: + logger.error("{0}: {1}".format(cmdline, error)) + return 1 + elif not ret: + logger.error("Couldn't get default commandline: {0}".format(re)) + return 1 + except xmlrpc.client.Fault as x: + logger.error("XMLRPC Fault getting commandline: {0}".format(x)) + return 1 + + active_process_total = None + is_tasks_running = False + + while True: + try: + event = eventHandler.waitEvent(0.25) + if not event: + continue + + helper.eventHandler(event) + + if isinstance(event, bb.build.TaskBase): + logger.info(event._message) + if isinstance(event, logging.LogRecord): + # Don't report sstate failures as errors, since Yocto will just run the tasks for real + if event.msg == "No suitable staging package found" or (event.msg.startswith( + "Fetcher failure: Unable to find file") and "downloadfilename" in event.msg and "sstate" in event.msg): + event.levelno = bb.msg.BBLogFormatter.WARNING + if event.taskpid != 0: + # For "normal" logging conditions, don't show note logs from tasks + # but do show them if the user has changed the default log level to + # include verbose/debug messages + if event.levelno <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or ( + event.levelno == bb.msg.BBLogFormatter.NOTE and llevel != bb.msg.BBLogFormatter.VERBOSE)): + continue + + # Prefix task messages with recipe/task + if event.taskpid in helper.running_tasks and event.levelno != bb.msg.BBLogFormatter.PLAIN: + taskinfo = helper.running_tasks[event.taskpid] + event.msg = taskinfo['title'] + ': ' + event.msg + if hasattr(event, 'fn'): + event.msg = event.fn + ': ' + event.msg + logger.handle(event) + if isinstance(event, bb.build.TaskFailedSilent): + logger.warning("Logfile for failed setscene task is %s" % event.logfile) + continue + if isinstance(event, bb.build.TaskFailed): + rt = "{0}-{1}:{2}".format(event.pn, event.pv.replace("AUTOINC", "0"), event.task) + + logfile = event.logfile + if not logfile or not os.path.exists(logfile): + TeamCityUI.emit_service_message("buildProblem", description="{0}\nUnknown failure (no log file available)".format(rt)) + if not event.task.endswith("_setscene"): + server.runCommand(["stateForceShutdown"]) + continue + + details = deque(maxlen=loglines) + error_lines = [] + if includelogs and not event.errprinted: + with open(logfile, "r") as f: + while True: + line = f.readline() + if not line: + break + line = line.rstrip() + details.append(' | %s' % line) + # TODO: a less stupid check for errors + if (event.task == "do_compile") and ("error:" in line): + error_lines.append(line) + + if error_lines: + TeamCityUI.emit_service_message("compilationStarted", compiler=rt) + for line in error_lines: + TeamCityUI.emit_service_message("message", text=line, status="ERROR") + TeamCityUI.emit_service_message("compilationFinished", compiler=rt) + else: + TeamCityUI.emit_service_message("buildProblem", description=rt) + + err = "Logfile of failure stored in: %s" % logfile + if details: + ui.block_start("{0} task log".format(rt)) + # TeamCity seems to choke on service messages longer than about 63800 characters, so if error + # details is longer than, say, 60000, batch it up into several messages. + first_message = True + while details: + detail_len = 0 + batch = deque() + while details and detail_len < 60000: + # TODO: This code doesn't bother to handle lines that themselves are extremely long. + line = details.popleft() + batch.append(line) + detail_len += len(line) + + if first_message: + batch.appendleft("Log data follows:") + first_message = False + TeamCityUI.emit_service_message("message", text=err, status="ERROR", + errorDetails="\n".join(batch)) + else: + TeamCityUI.emit_service_message("message", text="[continued]", status="ERROR", + errorDetails="\n".join(batch)) + ui.block_end() + else: + TeamCityUI.emit_service_message("message", text=err, status="ERROR", errorDetails="") + + if not event.task.endswith("_setscene"): + server.runCommand(["stateForceShutdown"]) + + if isinstance(event, bb.event.ProcessStarted): + if event.processname in ["Initialising tasks", "Checking sstate mirror object availability"]: + active_process_total = event.total + ui.block_start(event.processname) + if isinstance(event, bb.event.ProcessFinished): + if event.processname in ["Initialising tasks", "Checking sstate mirror object availability"]: + ui.progress(event.processname, 100) + ui.block_end() + if isinstance(event, bb.event.ProcessProgress): + if event.processname in ["Initialising tasks", + "Checking sstate mirror object availability"] and active_process_total != 0: + ui.progress(event.processname, event.progress * 100 / active_process_total) + if isinstance(event, bb.event.CacheLoadStarted): + ui.block_start("Loading cache") + if isinstance(event, bb.event.CacheLoadProgress): + if event.total != 0: + ui.progress("Loading cache", math.floor(event.current * 100 / event.total)) + if isinstance(event, bb.event.CacheLoadCompleted): + ui.progress("Loading cache", 100) + ui.block_end() + if isinstance(event, bb.event.ParseStarted): + ui.block_start("Parsing recipes and checking upstream revisions") + if isinstance(event, bb.event.ParseProgress): + if event.total != 0: + ui.progress("Parsing recipes", math.floor(event.current * 100 / event.total)) + if isinstance(event, bb.event.ParseCompleted): + ui.progress("Parsing recipes", 100) + ui.block_end() + if isinstance(event, bb.command.CommandCompleted): + return + if isinstance(event, bb.command.CommandFailed): + logger.error(str(event)) + return 1 + if isinstance(event, bb.event.MultipleProviders): + logger.warning(str(event)) + continue + if isinstance(event, bb.event.NoProvider): + logger.error(str(event)) + continue + if isinstance(event, bb.command.CommandExit): + return + if isinstance(event, bb.cooker.CookerExit): + return + if isinstance(event, bb.runqueue.sceneQueueTaskStarted): + if not is_tasks_running: + is_tasks_running = True + ui.block_start("Running tasks") + if event.stats.total != 0: + ui.progress("Running setscene tasks", ( + event.stats.completed + event.stats.active + event.stats.failed + 1) * 100 / event.stats.total) + if isinstance(event, bb.runqueue.runQueueTaskStarted): + if not is_tasks_running: + is_tasks_running = True + ui.block_start("Running tasks") + if event.stats.total != 0: + pseudo_total = event.stats.total - event.stats.skipped + pseudo_complete = event.stats.completed + event.stats.active - event.stats.skipped + event.stats.failed + 1 + # TODO: sometimes this gives over 100% + ui.progress("Running runqueue tasks", (pseudo_complete) * 100 / pseudo_total, + " ({0}/{1})".format(pseudo_complete, pseudo_total)) + if isinstance(event, bb.runqueue.sceneQueueTaskFailed): + logger.warning(str(event)) + continue + if isinstance(event, bb.runqueue.runQueueTaskFailed): + logger.error(str(event)) + return 1 + if isinstance(event, bb.event.LogExecTTY): + pass + except EnvironmentError as ioerror: + # ignore interrupted io + if ioerror.args[0] == 4: + pass + except Exception as ex: + logger.error(str(ex)) + + # except KeyboardInterrupt: + # if shutdown == 2: + # mw.appendText("Third Keyboard Interrupt, exit.\n") + # exitflag = True + # if shutdown == 1: + # mw.appendText("Second Keyboard Interrupt, stopping...\n") + # _, error = server.runCommand(["stateForceShutdown"]) + # if error: + # print("Unable to cleanly stop: %s" % error) + # if shutdown == 0: + # mw.appendText("Keyboard Interrupt, closing down...\n") + # _, error = server.runCommand(["stateShutdown"]) + # if error: + # print("Unable to cleanly shutdown: %s" % error) + # shutdown = shutdown + 1 + # pass diff --git a/poky/bitbake/lib/bb/ui/toasterui.py b/poky/bitbake/lib/bb/ui/toasterui.py new file mode 100644 index 0000000..ec5bd4f --- /dev/null +++ b/poky/bitbake/lib/bb/ui/toasterui.py @@ -0,0 +1,479 @@ +# +# BitBake ToasterUI Implementation +# based on (No)TTY UI Implementation by Richard Purdie +# +# Handling output to TTYs or files (no TTY) +# +# Copyright (C) 2006-2012 Richard Purdie +# Copyright (C) 2013 Intel Corporation +# +# SPDX-License-Identifier: GPL-2.0-only +# + +from __future__ import division +import time +import sys +try: + import bb +except RuntimeError as exc: + sys.exit(str(exc)) + +from bb.ui import uihelper +from bb.ui.buildinfohelper import BuildInfoHelper + +import bb.msg +import logging +import os + +# pylint: disable=invalid-name +# module properties for UI modules are read by bitbake and the contract should not be broken + + +featureSet = [bb.cooker.CookerFeatures.HOB_EXTRA_CACHES, bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING, bb.cooker.CookerFeatures.SEND_SANITYEVENTS] + +logger = logging.getLogger("ToasterLogger") +interactive = sys.stdout.isatty() + +def _log_settings_from_server(server): + # Get values of variables which control our output + includelogs, error = server.runCommand(["getVariable", "BBINCLUDELOGS"]) + if error: + logger.error("Unable to get the value of BBINCLUDELOGS variable: %s", error) + raise BaseException(error) + loglines, error = server.runCommand(["getVariable", "BBINCLUDELOGS_LINES"]) + if error: + logger.error("Unable to get the value of BBINCLUDELOGS_LINES variable: %s", error) + raise BaseException(error) + consolelogfile, error = server.runCommand(["getVariable", "BB_CONSOLELOG"]) + if error: + logger.error("Unable to get the value of BB_CONSOLELOG variable: %s", error) + raise BaseException(error) + return consolelogfile + +# create a log file for a single build and direct the logger at it; +# log file name is timestamped to the millisecond (depending +# on system clock accuracy) to ensure it doesn't overlap with +# other log file names +# +# returns (log file, path to log file) for a build +def _open_build_log(log_dir): + format_str = "%(levelname)s: %(message)s" + + now = time.time() + now_ms = int((now - int(now)) * 1000) + time_str = time.strftime('build_%Y%m%d_%H%M%S', time.localtime(now)) + log_file_name = time_str + ('.%d.log' % now_ms) + build_log_file_path = os.path.join(log_dir, log_file_name) + + build_log = logging.FileHandler(build_log_file_path) + + logformat = bb.msg.BBLogFormatter(format_str) + build_log.setFormatter(logformat) + + bb.msg.addDefaultlogFilter(build_log) + logger.addHandler(build_log) + + return (build_log, build_log_file_path) + +# stop logging to the build log if it exists +def _close_build_log(build_log): + if build_log: + build_log.flush() + build_log.close() + logger.removeHandler(build_log) + +_evt_list = [ + "bb.build.TaskBase", + "bb.build.TaskFailed", + "bb.build.TaskFailedSilent", + "bb.build.TaskStarted", + "bb.build.TaskSucceeded", + "bb.command.CommandCompleted", + "bb.command.CommandExit", + "bb.command.CommandFailed", + "bb.cooker.CookerExit", + "bb.event.BuildInit", + "bb.event.BuildCompleted", + "bb.event.BuildStarted", + "bb.event.CacheLoadCompleted", + "bb.event.CacheLoadProgress", + "bb.event.CacheLoadStarted", + "bb.event.ConfigParsed", + "bb.event.DepTreeGenerated", + "bb.event.LogExecTTY", + "bb.event.MetadataEvent", + "bb.event.MultipleProviders", + "bb.event.NoProvider", + "bb.event.ParseCompleted", + "bb.event.ParseProgress", + "bb.event.ParseStarted", + "bb.event.RecipeParsed", + "bb.event.SanityCheck", + "bb.event.SanityCheckPassed", + "bb.event.TreeDataPreparationCompleted", + "bb.event.TreeDataPreparationStarted", + "bb.runqueue.runQueueTaskCompleted", + "bb.runqueue.runQueueTaskFailed", + "bb.runqueue.runQueueTaskSkipped", + "bb.runqueue.runQueueTaskStarted", + "bb.runqueue.sceneQueueTaskCompleted", + "bb.runqueue.sceneQueueTaskFailed", + "bb.runqueue.sceneQueueTaskStarted", + "logging.LogRecord"] + +def main(server, eventHandler, params): + # set to a logging.FileHandler instance when a build starts; + # see _open_build_log() + build_log = None + + # set to the log path when a build starts + build_log_file_path = None + + helper = uihelper.BBUIHelper() + + if not params.observe_only: + params.updateToServer(server, os.environ.copy()) + params.updateFromServer(server) + + # TODO don't use log output to determine when bitbake has started + # + # WARNING: this log handler cannot be removed, as localhostbecontroller + # relies on output in the toaster_ui.log file to determine whether + # the bitbake server has started, which only happens if + # this logger is setup here (see the TODO in the loop below) + console = logging.StreamHandler(sys.stdout) + format_str = "%(levelname)s: %(message)s" + formatter = bb.msg.BBLogFormatter(format_str) + bb.msg.addDefaultlogFilter(console) + console.setFormatter(formatter) + logger.addHandler(console) + logger.setLevel(logging.INFO) + llevel, debug_domains = bb.msg.constructLogOptions() + result, error = server.runCommand(["setEventMask", server.getEventHandle(), llevel, debug_domains, _evt_list]) + if not result or error: + logger.error("can't set event mask: %s", error) + return 1 + + # verify and warn + build_history_enabled = True + inheritlist, _ = server.runCommand(["getVariable", "INHERIT"]) + + if not "buildhistory" in inheritlist.split(" "): + logger.warning("buildhistory is not enabled. Please enable INHERIT += \"buildhistory\" to see image details.") + build_history_enabled = False + + if not "buildstats" in inheritlist.split(" "): + logger.warning("buildstats is not enabled. Please enable INHERIT += \"buildstats\" to generate build statistics.") + + if not params.observe_only: + cmdline = params.parseActions() + if not cmdline: + print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.") + return 1 + if 'msg' in cmdline and cmdline['msg']: + logger.error(cmdline['msg']) + return 1 + + ret, error = server.runCommand(cmdline['action']) + if error: + logger.error("Command '%s' failed: %s" % (cmdline, error)) + return 1 + elif not ret: + logger.error("Command '%s' failed: returned %s" % (cmdline, ret)) + return 1 + + # set to 1 when toasterui needs to shut down + main.shutdown = 0 + + interrupted = False + return_value = 0 + errors = 0 + warnings = 0 + taskfailures = [] + first = True + + buildinfohelper = BuildInfoHelper(server, build_history_enabled, + os.getenv('TOASTER_BRBE')) + + # write our own log files into bitbake's log directory; + # we're only interested in the path to the parent directory of + # this file, as we're writing our own logs into the same directory + consolelogfile = _log_settings_from_server(server) + log_dir = os.path.dirname(consolelogfile) + bb.utils.mkdirhier(log_dir) + + while True: + try: + event = eventHandler.waitEvent(0.25) + if first: + first = False + + # TODO don't use log output to determine when bitbake has started + # + # this is the line localhostbecontroller needs to + # see in toaster_ui.log which it uses to decide whether + # the bitbake server has started... + logger.info("ToasterUI waiting for events") + + if event is None: + if main.shutdown > 0: + # if shutting down, close any open build log first + _close_build_log(build_log) + + break + continue + + helper.eventHandler(event) + + # pylint: disable=protected-access + # the code will look into the protected variables of the event; no easy way around this + + if isinstance(event, bb.event.HeartbeatEvent): + continue + + if isinstance(event, bb.event.ParseStarted): + if not (build_log and build_log_file_path): + build_log, build_log_file_path = _open_build_log(log_dir) + + buildinfohelper.store_started_build() + buildinfohelper.save_build_log_file_path(build_log_file_path) + buildinfohelper.set_recipes_to_parse(event.total) + continue + + # create a build object in buildinfohelper from either BuildInit + # (if available) or BuildStarted (for jethro and previous versions) + if isinstance(event, (bb.event.BuildStarted, bb.event.BuildInit)): + if not (build_log and build_log_file_path): + build_log, build_log_file_path = _open_build_log(log_dir) + + buildinfohelper.save_build_targets(event) + buildinfohelper.save_build_log_file_path(build_log_file_path) + + # get additional data from BuildStarted + if isinstance(event, bb.event.BuildStarted): + buildinfohelper.save_build_layers_and_variables() + continue + + if isinstance(event, bb.event.ParseProgress): + buildinfohelper.set_recipes_parsed(event.current) + continue + + if isinstance(event, bb.event.ParseCompleted): + buildinfohelper.set_recipes_parsed(event.total) + continue + + if isinstance(event, (bb.build.TaskStarted, bb.build.TaskSucceeded, bb.build.TaskFailedSilent)): + buildinfohelper.update_and_store_task(event) + logger.info("Logfile for task %s", event.logfile) + continue + + if isinstance(event, bb.build.TaskBase): + logger.info(event._message) + + if isinstance(event, bb.event.LogExecTTY): + logger.info(event.msg) + continue + + if isinstance(event, logging.LogRecord): + if event.levelno == -1: + event.levelno = formatter.ERROR + + buildinfohelper.store_log_event(event) + + if event.levelno >= formatter.ERROR: + errors = errors + 1 + elif event.levelno == formatter.WARNING: + warnings = warnings + 1 + + # For "normal" logging conditions, don't show note logs from tasks + # but do show them if the user has changed the default log level to + # include verbose/debug messages + if event.taskpid != 0 and event.levelno <= formatter.NOTE: + continue + + logger.handle(event) + continue + + if isinstance(event, bb.build.TaskFailed): + buildinfohelper.update_and_store_task(event) + logfile = event.logfile + if logfile and os.path.exists(logfile): + bb.error("Logfile of failure stored in: %s" % logfile) + continue + + # these events are unprocessed now, but may be used in the future to log + # timing and error informations from the parsing phase in Toaster + if isinstance(event, (bb.event.SanityCheckPassed, bb.event.SanityCheck)): + continue + if isinstance(event, bb.event.CacheLoadStarted): + continue + if isinstance(event, bb.event.CacheLoadProgress): + continue + if isinstance(event, bb.event.CacheLoadCompleted): + continue + if isinstance(event, bb.event.MultipleProviders): + logger.info(str(event)) + continue + + if isinstance(event, bb.event.NoProvider): + errors = errors + 1 + text = str(event) + logger.error(text) + buildinfohelper.store_log_error(text) + continue + + if isinstance(event, bb.event.ConfigParsed): + continue + if isinstance(event, bb.event.RecipeParsed): + continue + + # end of saved events + + if isinstance(event, (bb.runqueue.sceneQueueTaskStarted, bb.runqueue.runQueueTaskStarted, bb.runqueue.runQueueTaskSkipped)): + buildinfohelper.store_started_task(event) + continue + + if isinstance(event, bb.runqueue.runQueueTaskCompleted): + buildinfohelper.update_and_store_task(event) + continue + + if isinstance(event, bb.runqueue.runQueueTaskFailed): + buildinfohelper.update_and_store_task(event) + taskfailures.append(event.taskstring) + logger.error(str(event)) + continue + + if isinstance(event, (bb.runqueue.sceneQueueTaskCompleted, bb.runqueue.sceneQueueTaskFailed)): + buildinfohelper.update_and_store_task(event) + continue + + + if isinstance(event, (bb.event.TreeDataPreparationStarted, bb.event.TreeDataPreparationCompleted)): + continue + + if isinstance(event, (bb.event.BuildCompleted, bb.command.CommandFailed)): + + errorcode = 0 + if isinstance(event, bb.command.CommandFailed): + errors += 1 + errorcode = 1 + logger.error(str(event)) + elif isinstance(event, bb.event.BuildCompleted): + buildinfohelper.scan_image_artifacts() + buildinfohelper.clone_required_sdk_artifacts() + + # turn off logging to the current build log + _close_build_log(build_log) + + # reset ready for next BuildStarted + build_log = None + + # update the build info helper on BuildCompleted, not on CommandXXX + buildinfohelper.update_build_information(event, errors, warnings, taskfailures) + + brbe = buildinfohelper.brbe + buildinfohelper.close(errorcode) + + # we start a new build info + if params.observe_only: + logger.debug("ToasterUI prepared for new build") + errors = 0 + warnings = 0 + taskfailures = [] + buildinfohelper = BuildInfoHelper(server, build_history_enabled) + else: + main.shutdown = 1 + + logger.info("ToasterUI build done, brbe: %s", brbe) + continue + + if isinstance(event, (bb.command.CommandCompleted, + bb.command.CommandFailed, + bb.command.CommandExit)): + if params.observe_only: + errorcode = 0 + else: + main.shutdown = 1 + + continue + + if isinstance(event, bb.event.MetadataEvent): + if event.type == "SinglePackageInfo": + buildinfohelper.store_build_package_information(event) + elif event.type == "LayerInfo": + buildinfohelper.store_layer_info(event) + elif event.type == "BuildStatsList": + buildinfohelper.store_tasks_stats(event) + elif event.type == "ImagePkgList": + buildinfohelper.store_target_package_data(event) + elif event.type == "MissedSstate": + buildinfohelper.store_missed_state_tasks(event) + elif event.type == "SDKArtifactInfo": + buildinfohelper.scan_sdk_artifacts(event) + elif event.type == "SetBRBE": + buildinfohelper.brbe = buildinfohelper._get_data_from_event(event) + elif event.type == "TaskArtifacts": + buildinfohelper.scan_task_artifacts(event) + elif event.type == "OSErrorException": + logger.error(event) + else: + logger.error("Unprocessed MetadataEvent %s", event.type) + continue + + if isinstance(event, bb.cooker.CookerExit): + # shutdown when bitbake server shuts down + main.shutdown = 1 + continue + + if isinstance(event, bb.event.DepTreeGenerated): + buildinfohelper.store_dependency_information(event) + continue + + logger.warning("Unknown event: %s", event) + return_value += 1 + + except EnvironmentError as ioerror: + logger.warning("EnvironmentError: %s" % ioerror) + # ignore interrupted io system calls + if ioerror.args[0] == 4: # errno 4 is EINTR + logger.warning("Skipped EINTR: %s" % ioerror) + else: + raise + except KeyboardInterrupt: + if params.observe_only: + print("\nKeyboard Interrupt, exiting observer...") + main.shutdown = 2 + if not params.observe_only and main.shutdown == 1: + print("\nSecond Keyboard Interrupt, stopping...\n") + _, error = server.runCommand(["stateForceShutdown"]) + if error: + logger.error("Unable to cleanly stop: %s" % error) + if not params.observe_only and main.shutdown == 0: + print("\nKeyboard Interrupt, closing down...\n") + interrupted = True + _, error = server.runCommand(["stateShutdown"]) + if error: + logger.error("Unable to cleanly shutdown: %s" % error) + buildinfohelper.cancel_cli_build() + main.shutdown = main.shutdown + 1 + except Exception as e: + # print errors to log + import traceback + from pprint import pformat + exception_data = traceback.format_exc() + logger.error("%s\n%s" , e, exception_data) + + # save them to database, if possible; if it fails, we already logged to console. + try: + buildinfohelper.store_log_exception("%s\n%s" % (str(e), exception_data)) + except Exception as ce: + logger.error("CRITICAL - Failed to to save toaster exception to the database: %s", str(ce)) + + # make sure we return with an error + return_value += 1 + + if interrupted and return_value == 0: + return_value += 1 + + logger.warning("Return value is %d", return_value) + return return_value diff --git a/poky/bitbake/lib/bb/ui/uievent.py b/poky/bitbake/lib/bb/ui/uievent.py new file mode 100644 index 0000000..d595f17 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/uievent.py @@ -0,0 +1,152 @@ +# +# Copyright (C) 2006 - 2007 Michael 'Mickey' Lauer +# Copyright (C) 2006 - 2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +""" +Use this class to fork off a thread to recieve event callbacks from the bitbake +server and queue them for the UI to process. This process must be used to avoid +client/server deadlocks. +""" + +import collections, logging, pickle, socket, threading +from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler + +import bb + +logger = logging.getLogger(__name__) + +class BBUIEventQueue: + def __init__(self, BBServer, clientinfo=("localhost, 0")): + + self.eventQueue = [] + self.eventQueueLock = threading.Lock() + self.eventQueueNotify = threading.Event() + + self.BBServer = BBServer + self.clientinfo = clientinfo + + server = UIXMLRPCServer(self.clientinfo) + self.host, self.port = server.socket.getsockname() + + server.register_function( self.system_quit, "event.quit" ) + server.register_function( self.send_event, "event.sendpickle" ) + server.socket.settimeout(1) + + self.EventHandle = None + + # the event handler registration may fail here due to cooker being in invalid state + # this is a transient situation, and we should retry a couple of times before + # giving up + + for count_tries in range(5): + ret = self.BBServer.registerEventHandler(self.host, self.port) + + if isinstance(ret, collections.abc.Iterable): + self.EventHandle, error = ret + else: + self.EventHandle = ret + error = "" + + if self.EventHandle is not None: + break + + errmsg = "Could not register UI event handler. Error: %s, host %s, "\ + "port %d" % (error, self.host, self.port) + bb.warn("%s, retry" % errmsg) + + import time + time.sleep(1) + else: + raise Exception(errmsg) + + self.server = server + + self.t = threading.Thread() + self.t.setDaemon(True) + self.t.run = self.startCallbackHandler + self.t.start() + + def getEvent(self): + + self.eventQueueLock.acquire() + + if not self.eventQueue: + self.eventQueueLock.release() + return None + + item = self.eventQueue.pop(0) + + if not self.eventQueue: + self.eventQueueNotify.clear() + + self.eventQueueLock.release() + return item + + def waitEvent(self, delay): + self.eventQueueNotify.wait(delay) + return self.getEvent() + + def queue_event(self, event): + self.eventQueueLock.acquire() + self.eventQueue.append(event) + self.eventQueueNotify.set() + self.eventQueueLock.release() + + def send_event(self, event): + self.queue_event(pickle.loads(event)) + + def startCallbackHandler(self): + + self.server.timeout = 1 + bb.utils.set_process_name("UIEventQueue") + while not self.server.quit: + try: + self.server.handle_request() + except Exception as e: + import traceback + logger.error("BBUIEventQueue.startCallbackHandler: Exception while trying to handle request: %s\n%s" % (e, traceback.format_exc())) + + self.server.server_close() + + def system_quit( self ): + """ + Shut down the callback thread + """ + try: + self.BBServer.unregisterEventHandler(self.EventHandle) + except: + pass + self.server.quit = True + +class UIXMLRPCServer (SimpleXMLRPCServer): + + def __init__( self, interface ): + self.quit = False + SimpleXMLRPCServer.__init__( self, + interface, + requestHandler=SimpleXMLRPCRequestHandler, + logRequests=False, allow_none=True, use_builtin_types=True) + + def get_request(self): + while not self.quit: + try: + sock, addr = self.socket.accept() + sock.settimeout(1) + return (sock, addr) + except socket.timeout: + pass + return (None, None) + + def close_request(self, request): + if request is None: + return + SimpleXMLRPCServer.close_request(self, request) + + def process_request(self, request, client_address): + if request is None: + return + SimpleXMLRPCServer.process_request(self, request, client_address) + diff --git a/poky/bitbake/lib/bb/ui/uihelper.py b/poky/bitbake/lib/bb/ui/uihelper.py new file mode 100644 index 0000000..82913e0 --- /dev/null +++ b/poky/bitbake/lib/bb/ui/uihelper.py @@ -0,0 +1,69 @@ +# +# Copyright (C) 2006 - 2007 Michael 'Mickey' Lauer +# Copyright (C) 2006 - 2007 Richard Purdie +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import bb.build +import time + +class BBUIHelper: + def __init__(self): + self.needUpdate = False + self.running_tasks = {} + # Running PIDs preserves the order tasks were executed in + self.running_pids = [] + self.failed_tasks = [] + self.pidmap = {} + self.tasknumber_current = 0 + self.tasknumber_total = 0 + + def eventHandler(self, event): + # PIDs are a bad idea as they can be reused before we process all UI events. + # We maintain a 'fuzzy' match for TaskProgress since there is no other way to match + def removetid(pid, tid): + self.running_pids.remove(tid) + del self.running_tasks[tid] + if self.pidmap[pid] == tid: + del self.pidmap[pid] + self.needUpdate = True + + if isinstance(event, bb.build.TaskStarted): + tid = event._fn + ":" + event._task + if event._mc != "default": + self.running_tasks[tid] = { 'title' : "mc:%s:%s %s" % (event._mc, event._package, event._task), 'starttime' : time.time(), 'pid' : event.pid } + else: + self.running_tasks[tid] = { 'title' : "%s %s" % (event._package, event._task), 'starttime' : time.time(), 'pid' : event.pid } + self.running_pids.append(tid) + self.pidmap[event.pid] = tid + self.needUpdate = True + elif isinstance(event, bb.build.TaskSucceeded): + tid = event._fn + ":" + event._task + removetid(event.pid, tid) + elif isinstance(event, bb.build.TaskFailedSilent): + tid = event._fn + ":" + event._task + removetid(event.pid, tid) + # Don't add to the failed tasks list since this is e.g. a setscene task failure + elif isinstance(event, bb.build.TaskFailed): + tid = event._fn + ":" + event._task + removetid(event.pid, tid) + self.failed_tasks.append( { 'title' : "%s %s" % (event._package, event._task)}) + elif isinstance(event, bb.runqueue.runQueueTaskStarted) or isinstance(event, bb.runqueue.sceneQueueTaskStarted): + self.tasknumber_current = event.stats.completed + event.stats.active + event.stats.failed + self.tasknumber_total = event.stats.total + self.setscene_current = event.stats.setscene_active + event.stats.setscene_covered + event.stats.setscene_notcovered + self.setscene_total = event.stats.setscene_total + self.needUpdate = True + elif isinstance(event, bb.build.TaskProgress): + if event.pid > 0 and event.pid in self.pidmap: + self.running_tasks[self.pidmap[event.pid]]['progress'] = event.progress + self.running_tasks[self.pidmap[event.pid]]['rate'] = event.rate + self.needUpdate = True + else: + return False + return True + + def getTasks(self): + self.needUpdate = False + return (self.running_tasks, self.failed_tasks) diff --git a/poky/bitbake/lib/bb/utils.py b/poky/bitbake/lib/bb/utils.py new file mode 100644 index 0000000..3f7f82d --- /dev/null +++ b/poky/bitbake/lib/bb/utils.py @@ -0,0 +1,1800 @@ +""" +BitBake Utility Functions +""" + +# Copyright (C) 2004 Michael Lauer +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import re, fcntl, os, string, stat, shutil, time +import sys +import errno +import logging +import bb +import bb.msg +import locale +import multiprocessing +import fcntl +import importlib +import importlib.machinery +import importlib.util +import itertools +import subprocess +import glob +import fnmatch +import traceback +import errno +import signal +import collections +import copy +import ctypes +import random +import tempfile +from subprocess import getstatusoutput +from contextlib import contextmanager +from ctypes import cdll + +logger = logging.getLogger("BitBake.Util") +python_extensions = importlib.machinery.all_suffixes() + + +def clean_context(): + return { + "os": os, + "bb": bb, + "time": time, + } + +def get_context(): + return _context + + +def set_context(ctx): + _context = ctx + +# Context used in better_exec, eval +_context = clean_context() + +class VersionStringException(Exception): + """Exception raised when an invalid version specification is found""" + +def explode_version(s): + r = [] + alpha_regexp = re.compile(r'^([a-zA-Z]+)(.*)$') + numeric_regexp = re.compile(r'^(\d+)(.*)$') + while (s != ''): + if s[0] in string.digits: + m = numeric_regexp.match(s) + r.append((0, int(m.group(1)))) + s = m.group(2) + continue + if s[0] in string.ascii_letters: + m = alpha_regexp.match(s) + r.append((1, m.group(1))) + s = m.group(2) + continue + if s[0] == '~': + r.append((-1, s[0])) + else: + r.append((2, s[0])) + s = s[1:] + return r + +def split_version(s): + """Split a version string into its constituent parts (PE, PV, PR)""" + s = s.strip(" <>=") + e = 0 + if s.count(':'): + e = int(s.split(":")[0]) + s = s.split(":")[1] + r = "" + if s.count('-'): + r = s.rsplit("-", 1)[1] + s = s.rsplit("-", 1)[0] + v = s + return (e, v, r) + +def vercmp_part(a, b): + va = explode_version(a) + vb = explode_version(b) + while True: + if va == []: + (oa, ca) = (0, None) + else: + (oa, ca) = va.pop(0) + if vb == []: + (ob, cb) = (0, None) + else: + (ob, cb) = vb.pop(0) + if (oa, ca) == (0, None) and (ob, cb) == (0, None): + return 0 + if oa < ob: + return -1 + elif oa > ob: + return 1 + elif ca is None: + return -1 + elif cb is None: + return 1 + elif ca < cb: + return -1 + elif ca > cb: + return 1 + +def vercmp(ta, tb): + (ea, va, ra) = ta + (eb, vb, rb) = tb + + r = int(ea or 0) - int(eb or 0) + if (r == 0): + r = vercmp_part(va, vb) + if (r == 0): + r = vercmp_part(ra, rb) + return r + +def vercmp_string(a, b): + """ Split version strings and compare them """ + ta = split_version(a) + tb = split_version(b) + return vercmp(ta, tb) + +def vercmp_string_op(a, b, op): + """ + Compare two versions and check if the specified comparison operator matches the result of the comparison. + This function is fairly liberal about what operators it will accept since there are a variety of styles + depending on the context. + """ + res = vercmp_string(a, b) + if op in ('=', '=='): + return res == 0 + elif op == '<=': + return res <= 0 + elif op == '>=': + return res >= 0 + elif op in ('>', '>>'): + return res > 0 + elif op in ('<', '<<'): + return res < 0 + elif op == '!=': + return res != 0 + else: + raise VersionStringException('Unsupported comparison operator "%s"' % op) + +def explode_deps(s): + """ + Take an RDEPENDS style string of format: + "DEPEND1 (optional version) DEPEND2 (optional version) ..." + and return a list of dependencies. + Version information is ignored. + """ + r = [] + l = s.split() + flag = False + for i in l: + if i[0] == '(': + flag = True + #j = [] + if not flag: + r.append(i) + #else: + # j.append(i) + if flag and i.endswith(')'): + flag = False + # Ignore version + #r[-1] += ' ' + ' '.join(j) + return r + +def explode_dep_versions2(s, *, sort=True): + """ + Take an RDEPENDS style string of format: + "DEPEND1 (optional version) DEPEND2 (optional version) ..." + and return a dictionary of dependencies and versions. + """ + r = collections.OrderedDict() + l = s.replace(",", "").split() + lastdep = None + lastcmp = "" + lastver = "" + incmp = False + inversion = False + for i in l: + if i[0] == '(': + incmp = True + i = i[1:].strip() + if not i: + continue + + if incmp: + incmp = False + inversion = True + # This list is based on behavior and supported comparisons from deb, opkg and rpm. + # + # Even though =<, <<, ==, !=, =>, and >> may not be supported, + # we list each possibly valid item. + # The build system is responsible for validation of what it supports. + if i.startswith(('<=', '=<', '<<', '==', '!=', '>=', '=>', '>>')): + lastcmp = i[0:2] + i = i[2:] + elif i.startswith(('<', '>', '=')): + lastcmp = i[0:1] + i = i[1:] + else: + # This is an unsupported case! + raise VersionStringException('Invalid version specification in "(%s" - invalid or missing operator' % i) + lastcmp = (i or "") + i = "" + i.strip() + if not i: + continue + + if inversion: + if i.endswith(')'): + i = i[:-1] or "" + inversion = False + if lastver and i: + lastver += " " + if i: + lastver += i + if lastdep not in r: + r[lastdep] = [] + r[lastdep].append(lastcmp + " " + lastver) + continue + + #if not inversion: + lastdep = i + lastver = "" + lastcmp = "" + if not (i in r and r[i]): + r[lastdep] = [] + + if sort: + r = collections.OrderedDict(sorted(r.items(), key=lambda x: x[0])) + return r + +def explode_dep_versions(s): + """ + Take an RDEPENDS style string of format: + "DEPEND1 (optional version) DEPEND2 (optional version) ..." + skip null value and items appeared in dependency string multiple times + and return a dictionary of dependencies and versions. + """ + r = explode_dep_versions2(s) + for d in r: + if not r[d]: + r[d] = None + continue + if len(r[d]) > 1: + bb.warn("explode_dep_versions(): Item %s appeared in dependency string '%s' multiple times with different values. explode_dep_versions cannot cope with this." % (d, s)) + r[d] = r[d][0] + return r + +def join_deps(deps, commasep=True): + """ + Take the result from explode_dep_versions and generate a dependency string + """ + result = [] + for dep in deps: + if deps[dep]: + if isinstance(deps[dep], list): + for v in deps[dep]: + result.append(dep + " (" + v + ")") + else: + result.append(dep + " (" + deps[dep] + ")") + else: + result.append(dep) + if commasep: + return ", ".join(result) + else: + return " ".join(result) + +def _print_trace(body, line): + """ + Print the Environment of a Text Body + """ + error = [] + # print the environment of the method + min_line = max(1, line-4) + max_line = min(line + 4, len(body)) + for i in range(min_line, max_line + 1): + if line == i: + error.append(' *** %.4d:%s' % (i, body[i-1].rstrip())) + else: + error.append(' %.4d:%s' % (i, body[i-1].rstrip())) + return error + +def better_compile(text, file, realfile, mode = "exec", lineno = 0): + """ + A better compile method. This method + will print the offending lines. + """ + try: + cache = bb.methodpool.compile_cache(text) + if cache: + return cache + # We can't add to the linenumbers for compile, we can pad to the correct number of blank lines though + text2 = "\n" * int(lineno) + text + code = compile(text2, realfile, mode) + bb.methodpool.compile_cache_add(text, code) + return code + except Exception as e: + error = [] + # split the text into lines again + body = text.split('\n') + error.append("Error in compiling python function in %s, line %s:\n" % (realfile, e.lineno)) + if hasattr(e, "lineno"): + error.append("The code lines resulting in this error were:") + # e.lineno: line's position in reaflile + # lineno: function name's "position -1" in realfile + # e.lineno - lineno: line's relative position in function + error.extend(_print_trace(body, e.lineno - lineno)) + else: + error.append("The function causing this error was:") + for line in body: + error.append(line) + error.append("%s: %s" % (e.__class__.__name__, str(e))) + + logger.error("\n".join(error)) + + e = bb.BBHandledException(e) + raise e + +def _print_exception(t, value, tb, realfile, text, context): + error = [] + try: + exception = traceback.format_exception_only(t, value) + error.append('Error executing a python function in %s:\n' % realfile) + + # Strip 'us' from the stack (better_exec call) unless that was where the + # error came from + if tb.tb_next is not None: + tb = tb.tb_next + + textarray = text.split('\n') + + linefailed = tb.tb_lineno + + tbextract = traceback.extract_tb(tb) + tbformat = traceback.format_list(tbextract) + error.append("The stack trace of python calls that resulted in this exception/failure was:") + error.append("File: '%s', lineno: %s, function: %s" % (tbextract[0][0], tbextract[0][1], tbextract[0][2])) + error.extend(_print_trace(textarray, linefailed)) + + # See if this is a function we constructed and has calls back into other functions in + # "text". If so, try and improve the context of the error by diving down the trace + level = 0 + nexttb = tb.tb_next + while nexttb is not None and (level+1) < len(tbextract): + error.append("File: '%s', lineno: %s, function: %s" % (tbextract[level+1][0], tbextract[level+1][1], tbextract[level+1][2])) + if tbextract[level][0] == tbextract[level+1][0] and tbextract[level+1][2] == tbextract[level][0]: + # The code was possibly in the string we compiled ourselves + error.extend(_print_trace(textarray, tbextract[level+1][1])) + elif tbextract[level+1][0].startswith("/"): + # The code looks like it might be in a file, try and load it + try: + with open(tbextract[level+1][0], "r") as f: + text = f.readlines() + error.extend(_print_trace(text, tbextract[level+1][1])) + except: + error.append(tbformat[level+1]) + else: + error.append(tbformat[level+1]) + nexttb = tb.tb_next + level = level + 1 + + error.append("Exception: %s" % ''.join(exception)) + + # If the exception is from spawning a task, let's be helpful and display + # the output (which hopefully includes stderr). + if isinstance(value, subprocess.CalledProcessError) and value.output: + error.append("Subprocess output:") + error.append(value.output.decode("utf-8", errors="ignore")) + finally: + logger.error("\n".join(error)) + +def better_exec(code, context, text = None, realfile = "", pythonexception=False): + """ + Similiar to better_compile, better_exec will + print the lines that are responsible for the + error. + """ + import bb.parse + if not text: + text = code + if not hasattr(code, "co_filename"): + code = better_compile(code, realfile, realfile) + try: + exec(code, get_context(), context) + except (bb.BBHandledException, bb.parse.SkipRecipe, bb.data_smart.ExpansionError, bb.process.ExecutionError): + # Error already shown so passthrough, no need for traceback + raise + except Exception as e: + if pythonexception: + raise + (t, value, tb) = sys.exc_info() + try: + _print_exception(t, value, tb, realfile, text, context) + except Exception as e2: + logger.error("Exception handler error: %s" % str(e2)) + + e = bb.BBHandledException(e) + raise e + +def simple_exec(code, context): + exec(code, get_context(), context) + +def better_eval(source, locals, extraglobals = None): + ctx = get_context() + if extraglobals: + ctx = copy.copy(ctx) + for g in extraglobals: + ctx[g] = extraglobals[g] + return eval(source, ctx, locals) + +@contextmanager +def fileslocked(files, *args, **kwargs): + """Context manager for locking and unlocking file locks.""" + locks = [] + if files: + for lockfile in files: + l = bb.utils.lockfile(lockfile, *args, **kwargs) + if l is not None: + locks.append(l) + + try: + yield + finally: + for lock in locks: + bb.utils.unlockfile(lock) + +def lockfile(name, shared=False, retry=True, block=False): + """ + Use the specified file as a lock file, return when the lock has + been acquired. Returns a variable to pass to unlockfile(). + Parameters: + retry: True to re-try locking if it fails, False otherwise + block: True to block until the lock succeeds, False otherwise + The retry and block parameters are kind of equivalent unless you + consider the possibility of sending a signal to the process to break + out - at which point you want block=True rather than retry=True. + """ + basename = os.path.basename(name) + if len(basename) > 255: + root, ext = os.path.splitext(basename) + basename = root[:255 - len(ext)] + ext + + dirname = os.path.dirname(name) + mkdirhier(dirname) + + name = os.path.join(dirname, basename) + + if not os.access(dirname, os.W_OK): + logger.error("Unable to acquire lock '%s', directory is not writable", + name) + sys.exit(1) + + op = fcntl.LOCK_EX + if shared: + op = fcntl.LOCK_SH + if not retry and not block: + op = op | fcntl.LOCK_NB + + while True: + # If we leave the lockfiles lying around there is no problem + # but we should clean up after ourselves. This gives potential + # for races though. To work around this, when we acquire the lock + # we check the file we locked was still the lock file on disk. + # by comparing inode numbers. If they don't match or the lockfile + # no longer exists, we start again. + + # This implementation is unfair since the last person to request the + # lock is the most likely to win it. + + try: + lf = open(name, 'a+') + fileno = lf.fileno() + fcntl.flock(fileno, op) + statinfo = os.fstat(fileno) + if os.path.exists(lf.name): + statinfo2 = os.stat(lf.name) + if statinfo.st_ino == statinfo2.st_ino: + return lf + lf.close() + except OSError as e: + if e.errno == errno.EACCES or e.errno == errno.ENAMETOOLONG: + logger.error("Unable to acquire lock '%s', %s", + e.strerror, name) + sys.exit(1) + try: + lf.close() + except Exception: + pass + pass + if not retry: + return None + +def unlockfile(lf): + """ + Unlock a file locked using lockfile() + """ + try: + # If we had a shared lock, we need to promote to exclusive before + # removing the lockfile. Attempt this, ignore failures. + fcntl.flock(lf.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB) + os.unlink(lf.name) + except (IOError, OSError): + pass + fcntl.flock(lf.fileno(), fcntl.LOCK_UN) + lf.close() + +def _hasher(method, filename): + import mmap + + with open(filename, "rb") as f: + try: + with mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) as mm: + for chunk in iter(lambda: mm.read(8192), b''): + method.update(chunk) + except ValueError: + # You can't mmap() an empty file so silence this exception + pass + return method.hexdigest() + + +def md5_file(filename): + """ + Return the hex string representation of the MD5 checksum of filename. + """ + import hashlib + try: + sig = hashlib.new('MD5', usedforsecurity=False) + except TypeError: + # Some configurations don't appear to support two arguments + sig = hashlib.new('MD5') + return _hasher(sig, filename) + +def sha256_file(filename): + """ + Return the hex string representation of the 256-bit SHA checksum of + filename. + """ + import hashlib + return _hasher(hashlib.sha256(), filename) + +def sha1_file(filename): + """ + Return the hex string representation of the SHA1 checksum of the filename + """ + import hashlib + return _hasher(hashlib.sha1(), filename) + +def sha384_file(filename): + """ + Return the hex string representation of the SHA384 checksum of the filename + """ + import hashlib + return _hasher(hashlib.sha384(), filename) + +def sha512_file(filename): + """ + Return the hex string representation of the SHA512 checksum of the filename + """ + import hashlib + return _hasher(hashlib.sha512(), filename) + +def preserved_envvars_exported(): + """Variables which are taken from the environment and placed in and exported + from the metadata""" + return [ + 'BB_TASKHASH', + 'HOME', + 'LOGNAME', + 'PATH', + 'PWD', + 'SHELL', + 'USER', + 'LC_ALL', + 'BBSERVER', + ] + +def preserved_envvars(): + """Variables which are taken from the environment and placed in the metadata""" + v = [ + 'BBPATH', + 'BB_PRESERVE_ENV', + 'BB_ENV_PASSTHROUGH', + 'BB_ENV_PASSTHROUGH_ADDITIONS', + ] + return v + preserved_envvars_exported() + +def check_system_locale(): + """Make sure the required system locale are available and configured""" + default_locale = locale.getlocale(locale.LC_CTYPE) + + try: + locale.setlocale(locale.LC_CTYPE, ("en_US", "UTF-8")) + except: + sys.exit("Please make sure locale 'en_US.UTF-8' is available on your system") + else: + locale.setlocale(locale.LC_CTYPE, default_locale) + + if sys.getfilesystemencoding() != "utf-8": + sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\n" + "Python can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.") + +def filter_environment(good_vars): + """ + Create a pristine environment for bitbake. This will remove variables that + are not known and may influence the build in a negative way. + """ + + removed_vars = {} + for key in list(os.environ): + if key in good_vars: + continue + + removed_vars[key] = os.environ[key] + del os.environ[key] + + # If we spawn a python process, we need to have a UTF-8 locale, else python's file + # access methods will use ascii. You can't change that mode once the interpreter is + # started so we have to ensure a locale is set. Ideally we'd use C.UTF-8 but not all + # distros support that and we need to set something. + os.environ["LC_ALL"] = "en_US.UTF-8" + + if removed_vars: + logger.debug("Removed the following variables from the environment: %s", ", ".join(removed_vars.keys())) + + return removed_vars + +def approved_variables(): + """ + Determine and return the list of variables which are approved + to remain in the environment. + """ + if 'BB_PRESERVE_ENV' in os.environ: + return os.environ.keys() + approved = [] + if 'BB_ENV_PASSTHROUGH' in os.environ: + approved = os.environ['BB_ENV_PASSTHROUGH'].split() + approved.extend(['BB_ENV_PASSTHROUGH']) + else: + approved = preserved_envvars() + if 'BB_ENV_PASSTHROUGH_ADDITIONS' in os.environ: + approved.extend(os.environ['BB_ENV_PASSTHROUGH_ADDITIONS'].split()) + if 'BB_ENV_PASSTHROUGH_ADDITIONS' not in approved: + approved.extend(['BB_ENV_PASSTHROUGH_ADDITIONS']) + return approved + +def clean_environment(): + """ + Clean up any spurious environment variables. This will remove any + variables the user hasn't chosen to preserve. + """ + if 'BB_PRESERVE_ENV' not in os.environ: + good_vars = approved_variables() + return filter_environment(good_vars) + + return {} + +def empty_environment(): + """ + Remove all variables from the environment. + """ + for s in list(os.environ.keys()): + os.unsetenv(s) + del os.environ[s] + +def build_environment(d): + """ + Build an environment from all exported variables. + """ + import bb.data + for var in bb.data.keys(d): + export = d.getVarFlag(var, "export", False) + if export: + os.environ[var] = d.getVar(var) or "" + +def _check_unsafe_delete_path(path): + """ + Basic safeguard against recursively deleting something we shouldn't. If it returns True, + the caller should raise an exception with an appropriate message. + NOTE: This is NOT meant to be a security mechanism - just a guard against silly mistakes + with potentially disastrous results. + """ + extra = '' + # HOME might not be /home/something, so in case we can get it, check against it + homedir = os.environ.get('HOME', '') + if homedir: + extra = '|%s' % homedir + if re.match('(/|//|/home|/home/[^/]*%s)$' % extra, os.path.abspath(path)): + return True + return False + +def remove(path, recurse=False, ionice=False): + """Equivalent to rm -f or rm -rf""" + if not path: + return + if recurse: + for name in glob.glob(path): + if _check_unsafe_delete_path(name): + raise Exception('bb.utils.remove: called with dangerous path "%s" and recurse=True, refusing to delete!' % name) + # shutil.rmtree(name) would be ideal but its too slow + cmd = [] + if ionice: + cmd = ['ionice', '-c', '3'] + subprocess.check_call(cmd + ['rm', '-rf'] + glob.glob(path)) + return + for name in glob.glob(path): + try: + os.unlink(name) + except OSError as exc: + if exc.errno != errno.ENOENT: + raise + +def prunedir(topdir, ionice=False): + """ Delete everything reachable from the directory named in 'topdir'. """ + # CAUTION: This is dangerous! + if _check_unsafe_delete_path(topdir): + raise Exception('bb.utils.prunedir: called with dangerous path "%s", refusing to delete!' % topdir) + remove(topdir, recurse=True, ionice=ionice) + +# +# Could also use return re.compile("(%s)" % "|".join(map(re.escape, suffixes))).sub(lambda mo: "", var) +# but thats possibly insane and suffixes is probably going to be small +# +def prune_suffix(var, suffixes, d): + """ + See if var ends with any of the suffixes listed and + remove it if found + """ + for suffix in suffixes: + if suffix and var.endswith(suffix): + return var[:-len(suffix)] + return var + +def mkdirhier(directory): + """Create a directory like 'mkdir -p', but does not complain if + directory already exists like os.makedirs + """ + + try: + os.makedirs(directory) + except OSError as e: + if e.errno != errno.EEXIST or not os.path.isdir(directory): + raise e + +def movefile(src, dest, newmtime = None, sstat = None): + """Moves a file from src to dest, preserving all permissions and + attributes; mtime will be preserved even when moving across + filesystems. Returns true on success and false on failure. Move is + atomic. + """ + + #print "movefile(" + src + "," + dest + "," + str(newmtime) + "," + str(sstat) + ")" + try: + if not sstat: + sstat = os.lstat(src) + except Exception as e: + logger.warning("movefile: Stating source file failed...", e) + return None + + destexists = 1 + try: + dstat = os.lstat(dest) + except: + dstat = os.lstat(os.path.dirname(dest)) + destexists = 0 + + if destexists: + if stat.S_ISLNK(dstat[stat.ST_MODE]): + try: + os.unlink(dest) + destexists = 0 + except Exception as e: + pass + + if stat.S_ISLNK(sstat[stat.ST_MODE]): + try: + target = os.readlink(src) + if destexists and not stat.S_ISDIR(dstat[stat.ST_MODE]): + os.unlink(dest) + os.symlink(target, dest) + #os.lchown(dest,sstat[stat.ST_UID],sstat[stat.ST_GID]) + os.unlink(src) + return os.lstat(dest) + except Exception as e: + logger.warning("movefile: failed to properly create symlink:", dest, "->", target, e) + return None + + renamefailed = 1 + # os.rename needs to know the dest path ending with file name + # so append the file name to a path only if it's a dir specified + srcfname = os.path.basename(src) + destpath = os.path.join(dest, srcfname) if os.path.isdir(dest) \ + else dest + + if sstat[stat.ST_DEV] == dstat[stat.ST_DEV]: + try: + bb.utils.rename(src, destpath) + renamefailed = 0 + except Exception as e: + if e.errno != errno.EXDEV: + # Some random error. + logger.warning("movefile: Failed to move", src, "to", dest, e) + return None + # Invalid cross-device-link 'bind' mounted or actually Cross-Device + + if renamefailed: + didcopy = 0 + if stat.S_ISREG(sstat[stat.ST_MODE]): + try: # For safety copy then move it over. + shutil.copyfile(src, destpath + "#new") + bb.utils.rename(destpath + "#new", destpath) + didcopy = 1 + except Exception as e: + logger.warning('movefile: copy', src, '->', dest, 'failed.', e) + return None + else: + #we don't yet handle special, so we need to fall back to /bin/mv + a = getstatusoutput("/bin/mv -f " + "'" + src + "' '" + dest + "'") + if a[0] != 0: + logger.warning("movefile: Failed to move special file:" + src + "' to '" + dest + "'", a) + return None # failure + try: + if didcopy: + os.lchown(destpath, sstat[stat.ST_UID], sstat[stat.ST_GID]) + os.chmod(destpath, stat.S_IMODE(sstat[stat.ST_MODE])) # Sticky is reset on chown + os.unlink(src) + except Exception as e: + logger.warning("movefile: Failed to chown/chmod/unlink", dest, e) + return None + + if newmtime: + os.utime(destpath, (newmtime, newmtime)) + else: + os.utime(destpath, (sstat[stat.ST_ATIME], sstat[stat.ST_MTIME])) + newmtime = sstat[stat.ST_MTIME] + return newmtime + +def copyfile(src, dest, newmtime = None, sstat = None): + """ + Copies a file from src to dest, preserving all permissions and + attributes; mtime will be preserved even when moving across + filesystems. Returns true on success and false on failure. + """ + #print "copyfile(" + src + "," + dest + "," + str(newmtime) + "," + str(sstat) + ")" + try: + if not sstat: + sstat = os.lstat(src) + except Exception as e: + logger.warning("copyfile: stat of %s failed (%s)" % (src, e)) + return False + + destexists = 1 + try: + dstat = os.lstat(dest) + except: + dstat = os.lstat(os.path.dirname(dest)) + destexists = 0 + + if destexists: + if stat.S_ISLNK(dstat[stat.ST_MODE]): + try: + os.unlink(dest) + destexists = 0 + except Exception as e: + pass + + if stat.S_ISLNK(sstat[stat.ST_MODE]): + try: + target = os.readlink(src) + if destexists and not stat.S_ISDIR(dstat[stat.ST_MODE]): + os.unlink(dest) + os.symlink(target, dest) + os.lchown(dest,sstat[stat.ST_UID],sstat[stat.ST_GID]) + return os.lstat(dest) + except Exception as e: + logger.warning("copyfile: failed to create symlink %s to %s (%s)" % (dest, target, e)) + return False + + if stat.S_ISREG(sstat[stat.ST_MODE]): + try: + srcchown = False + if not os.access(src, os.R_OK): + # Make sure we can read it + srcchown = True + os.chmod(src, sstat[stat.ST_MODE] | stat.S_IRUSR) + + # For safety copy then move it over. + shutil.copyfile(src, dest + "#new") + bb.utils.rename(dest + "#new", dest) + except Exception as e: + logger.warning("copyfile: copy %s to %s failed (%s)" % (src, dest, e)) + return False + finally: + if srcchown: + os.chmod(src, sstat[stat.ST_MODE]) + os.utime(src, (sstat[stat.ST_ATIME], sstat[stat.ST_MTIME])) + + else: + #we don't yet handle special, so we need to fall back to /bin/mv + a = getstatusoutput("/bin/cp -f " + "'" + src + "' '" + dest + "'") + if a[0] != 0: + logger.warning("copyfile: failed to copy special file %s to %s (%s)" % (src, dest, a)) + return False # failure + try: + os.lchown(dest, sstat[stat.ST_UID], sstat[stat.ST_GID]) + os.chmod(dest, stat.S_IMODE(sstat[stat.ST_MODE])) # Sticky is reset on chown + except Exception as e: + logger.warning("copyfile: failed to chown/chmod %s (%s)" % (dest, e)) + return False + + if newmtime: + os.utime(dest, (newmtime, newmtime)) + else: + os.utime(dest, (sstat[stat.ST_ATIME], sstat[stat.ST_MTIME])) + newmtime = sstat[stat.ST_MTIME] + return newmtime + +def break_hardlinks(src, sstat = None): + """ + Ensures src is the only hardlink to this file. Other hardlinks, + if any, are not affected (other than in their st_nlink value, of + course). Returns true on success and false on failure. + + """ + try: + if not sstat: + sstat = os.lstat(src) + except Exception as e: + logger.warning("break_hardlinks: stat of %s failed (%s)" % (src, e)) + return False + if sstat[stat.ST_NLINK] == 1: + return True + return copyfile(src, src, sstat=sstat) + +def which(path, item, direction = 0, history = False, executable=False): + """ + Locate `item` in the list of paths `path` (colon separated string like $PATH). + If `direction` is non-zero then the list is reversed. + If `history` is True then the list of candidates also returned as result,history. + If `executable` is True then the candidate has to be an executable file, + otherwise the candidate simply has to exist. + """ + + if executable: + is_candidate = lambda p: os.path.isfile(p) and os.access(p, os.X_OK) + else: + is_candidate = lambda p: os.path.exists(p) + + hist = [] + paths = (path or "").split(':') + if direction != 0: + paths.reverse() + + for p in paths: + next = os.path.join(p, item) + hist.append(next) + if is_candidate(next): + if not os.path.isabs(next): + next = os.path.abspath(next) + if history: + return next, hist + return next + + if history: + return "", hist + return "" + +@contextmanager +def umask(new_mask): + """ + Context manager to set the umask to a specific mask, and restore it afterwards. + """ + current_mask = os.umask(new_mask) + try: + yield + finally: + os.umask(current_mask) + +def to_boolean(string, default=None): + """ + Check input string and return boolean value True/False/None + depending upon the checks + """ + if not string: + return default + + if isinstance(string, int): + return string != 0 + + normalized = string.lower() + if normalized in ("y", "yes", "1", "true"): + return True + elif normalized in ("n", "no", "0", "false"): + return False + else: + raise ValueError("Invalid value for to_boolean: %s" % string) + +def contains(variable, checkvalues, truevalue, falsevalue, d): + """Check if a variable contains all the values specified. + + Arguments: + + variable -- the variable name. This will be fetched and expanded (using + d.getVar(variable)) and then split into a set(). + + checkvalues -- if this is a string it is split on whitespace into a set(), + otherwise coerced directly into a set(). + + truevalue -- the value to return if checkvalues is a subset of variable. + + falsevalue -- the value to return if variable is empty or if checkvalues is + not a subset of variable. + + d -- the data store. + """ + + val = d.getVar(variable) + if not val: + return falsevalue + val = set(val.split()) + if isinstance(checkvalues, str): + checkvalues = set(checkvalues.split()) + else: + checkvalues = set(checkvalues) + if checkvalues.issubset(val): + return truevalue + return falsevalue + +def contains_any(variable, checkvalues, truevalue, falsevalue, d): + """Check if a variable contains any values specified. + + Arguments: + + variable -- the variable name. This will be fetched and expanded (using + d.getVar(variable)) and then split into a set(). + + checkvalues -- if this is a string it is split on whitespace into a set(), + otherwise coerced directly into a set(). + + truevalue -- the value to return if checkvalues is a subset of variable. + + falsevalue -- the value to return if variable is empty or if checkvalues is + not a subset of variable. + + d -- the data store. + """ + val = d.getVar(variable) + if not val: + return falsevalue + val = set(val.split()) + if isinstance(checkvalues, str): + checkvalues = set(checkvalues.split()) + else: + checkvalues = set(checkvalues) + if checkvalues & val: + return truevalue + return falsevalue + +def filter(variable, checkvalues, d): + """Return all words in the variable that are present in the checkvalues. + + Arguments: + + variable -- the variable name. This will be fetched and expanded (using + d.getVar(variable)) and then split into a set(). + + checkvalues -- if this is a string it is split on whitespace into a set(), + otherwise coerced directly into a set(). + + d -- the data store. + """ + + val = d.getVar(variable) + if not val: + return '' + val = set(val.split()) + if isinstance(checkvalues, str): + checkvalues = set(checkvalues.split()) + else: + checkvalues = set(checkvalues) + return ' '.join(sorted(checkvalues & val)) + + +def get_referenced_vars(start_expr, d): + """ + :return: names of vars referenced in start_expr (recursively), in quasi-BFS order (variables within the same level + are ordered arbitrarily) + """ + + seen = set() + ret = [] + + # The first entry in the queue is the unexpanded start expression + queue = collections.deque([start_expr]) + # Subsequent entries will be variable names, so we need to track whether or not entry requires getVar + is_first = True + + empty_data = bb.data.init() + while queue: + entry = queue.popleft() + if is_first: + # Entry is the start expression - no expansion needed + is_first = False + expression = entry + else: + # This is a variable name - need to get the value + expression = d.getVar(entry, False) + ret.append(entry) + + # expandWithRefs is how we actually get the referenced variables in the expression. We call it using an empty + # data store because we only want the variables directly used in the expression. It returns a set, which is what + # dooms us to only ever be "quasi-BFS" rather than full BFS. + new_vars = empty_data.expandWithRefs(expression, None).references - set(seen) + + queue.extend(new_vars) + seen.update(new_vars) + return ret + + +def cpu_count(): + return multiprocessing.cpu_count() + +def nonblockingfd(fd): + fcntl.fcntl(fd, fcntl.F_SETFL, fcntl.fcntl(fd, fcntl.F_GETFL) | os.O_NONBLOCK) + +def process_profilelog(fn, pout = None): + # Either call with a list of filenames and set pout or a filename and optionally pout. + if not pout: + pout = fn + '.processed' + + with open(pout, 'w') as pout: + import pstats + if isinstance(fn, list): + p = pstats.Stats(*fn, stream=pout) + else: + p = pstats.Stats(fn, stream=pout) + p.sort_stats('time') + p.print_stats() + p.print_callers() + p.sort_stats('cumulative') + p.print_stats() + + pout.flush() + +# +# Was present to work around multiprocessing pool bugs in python < 2.7.3 +# +def multiprocessingpool(*args, **kwargs): + + import multiprocessing.pool + #import multiprocessing.util + #multiprocessing.util.log_to_stderr(10) + # Deal with a multiprocessing bug where signals to the processes would be delayed until the work + # completes. Putting in a timeout means the signals (like SIGINT/SIGTERM) get processed. + def wrapper(func): + def wrap(self, timeout=None): + return func(self, timeout=timeout if timeout is not None else 1e100) + return wrap + multiprocessing.pool.IMapIterator.next = wrapper(multiprocessing.pool.IMapIterator.next) + + return multiprocessing.Pool(*args, **kwargs) + +def exec_flat_python_func(func, *args, **kwargs): + """Execute a flat python function (defined with def funcname(args):...)""" + # Prepare a small piece of python code which calls the requested function + # To do this we need to prepare two things - a set of variables we can use to pass + # the values of arguments into the calling function, and the list of arguments for + # the function being called + context = {} + funcargs = [] + # Handle unnamed arguments + aidx = 1 + for arg in args: + argname = 'arg_%s' % aidx + context[argname] = arg + funcargs.append(argname) + aidx += 1 + # Handle keyword arguments + context.update(kwargs) + funcargs.extend(['%s=%s' % (arg, arg) for arg in kwargs.keys()]) + code = 'retval = %s(%s)' % (func, ', '.join(funcargs)) + comp = bb.utils.better_compile(code, '', '') + bb.utils.better_exec(comp, context, code, '') + return context['retval'] + +def edit_metadata(meta_lines, variables, varfunc, match_overrides=False): + """Edit lines from a recipe or config file and modify one or more + specified variable values set in the file using a specified callback + function. Lines are expected to have trailing newlines. + Parameters: + meta_lines: lines from the file; can be a list or an iterable + (e.g. file pointer) + variables: a list of variable names to look for. Functions + may also be specified, but must be specified with '()' at + the end of the name. Note that the function doesn't have + any intrinsic understanding of :append, :prepend, :remove, + or overrides, so these are considered as part of the name. + These values go into a regular expression, so regular + expression syntax is allowed. + varfunc: callback function called for every variable matching + one of the entries in the variables parameter. The function + should take four arguments: + varname: name of variable matched + origvalue: current value in file + op: the operator (e.g. '+=') + newlines: list of lines up to this point. You can use + this to prepend lines before this variable setting + if you wish. + and should return a four-element tuple: + newvalue: new value to substitute in, or None to drop + the variable setting entirely. (If the removal + results in two consecutive blank lines, one of the + blank lines will also be dropped). + newop: the operator to use - if you specify None here, + the original operation will be used. + indent: number of spaces to indent multi-line entries, + or -1 to indent up to the level of the assignment + and opening quote, or a string to use as the indent. + minbreak: True to allow the first element of a + multi-line value to continue on the same line as + the assignment, False to indent before the first + element. + To clarify, if you wish not to change the value, then you + would return like this: return origvalue, None, 0, True + match_overrides: True to match items with _overrides on the end, + False otherwise + Returns a tuple: + updated: + True if changes were made, False otherwise. + newlines: + Lines after processing + """ + + var_res = {} + if match_overrides: + override_re = r'(_[a-zA-Z0-9-_$(){}]+)?' + else: + override_re = '' + for var in variables: + if var.endswith('()'): + var_res[var] = re.compile(r'^(%s%s)[ \\t]*\([ \\t]*\)[ \\t]*{' % (var[:-2].rstrip(), override_re)) + else: + var_res[var] = re.compile(r'^(%s%s)[ \\t]*[?+:.]*=[+.]*[ \\t]*(["\'])' % (var, override_re)) + + updated = False + varset_start = '' + varlines = [] + newlines = [] + in_var = None + full_value = '' + var_end = '' + + def handle_var_end(): + prerun_newlines = newlines[:] + op = varset_start[len(in_var):].strip() + (newvalue, newop, indent, minbreak) = varfunc(in_var, full_value, op, newlines) + changed = (prerun_newlines != newlines) + + if newvalue is None: + # Drop the value + return True + elif newvalue != full_value or (newop not in [None, op]): + if newop not in [None, op]: + # Callback changed the operator + varset_new = "%s %s" % (in_var, newop) + else: + varset_new = varset_start + + if isinstance(indent, int): + if indent == -1: + indentspc = ' ' * (len(varset_new) + 2) + else: + indentspc = ' ' * indent + else: + indentspc = indent + if in_var.endswith('()'): + # A function definition + if isinstance(newvalue, list): + newlines.append('%s {\n%s%s\n}\n' % (varset_new, indentspc, ('\n%s' % indentspc).join(newvalue))) + else: + if not newvalue.startswith('\n'): + newvalue = '\n' + newvalue + if not newvalue.endswith('\n'): + newvalue = newvalue + '\n' + newlines.append('%s {%s}\n' % (varset_new, newvalue)) + else: + # Normal variable + if isinstance(newvalue, list): + if not newvalue: + # Empty list -> empty string + newlines.append('%s ""\n' % varset_new) + elif minbreak: + # First item on first line + if len(newvalue) == 1: + newlines.append('%s "%s"\n' % (varset_new, newvalue[0])) + else: + newlines.append('%s "%s \\\n' % (varset_new, newvalue[0])) + for item in newvalue[1:]: + newlines.append('%s%s \\\n' % (indentspc, item)) + newlines.append('%s"\n' % indentspc) + else: + # No item on first line + newlines.append('%s " \\\n' % varset_new) + for item in newvalue: + newlines.append('%s%s \\\n' % (indentspc, item)) + newlines.append('%s"\n' % indentspc) + else: + newlines.append('%s "%s"\n' % (varset_new, newvalue)) + return True + else: + # Put the old lines back where they were + newlines.extend(varlines) + # If newlines was touched by the function, we'll need to return True + return changed + + checkspc = False + + for line in meta_lines: + if in_var: + value = line.rstrip() + varlines.append(line) + if in_var.endswith('()'): + full_value += '\n' + value + else: + full_value += value[:-1] + if value.endswith(var_end): + if in_var.endswith('()'): + if full_value.count('{') - full_value.count('}') >= 0: + continue + full_value = full_value[:-1] + if handle_var_end(): + updated = True + checkspc = True + in_var = None + else: + skip = False + for (varname, var_re) in var_res.items(): + res = var_re.match(line) + if res: + isfunc = varname.endswith('()') + if isfunc: + splitvalue = line.split('{', 1) + var_end = '}' + else: + var_end = res.groups()[-1] + splitvalue = line.split(var_end, 1) + varset_start = splitvalue[0].rstrip() + value = splitvalue[1].rstrip() + if not isfunc and value.endswith('\\'): + value = value[:-1] + full_value = value + varlines = [line] + in_var = res.group(1) + if isfunc: + in_var += '()' + if value.endswith(var_end): + full_value = full_value[:-1] + if handle_var_end(): + updated = True + checkspc = True + in_var = None + skip = True + break + if not skip: + if checkspc: + checkspc = False + if newlines and newlines[-1] == '\n' and line == '\n': + # Squash blank line if there are two consecutive blanks after a removal + continue + newlines.append(line) + return (updated, newlines) + + +def edit_metadata_file(meta_file, variables, varfunc): + """Edit a recipe or config file and modify one or more specified + variable values set in the file using a specified callback function. + The file is only written to if the value(s) actually change. + This is basically the file version of edit_metadata(), see that + function's description for parameter/usage information. + Returns True if the file was written to, False otherwise. + """ + with open(meta_file, 'r') as f: + (updated, newlines) = edit_metadata(f, variables, varfunc) + if updated: + with open(meta_file, 'w') as f: + f.writelines(newlines) + return updated + + +def edit_bblayers_conf(bblayers_conf, add, remove, edit_cb=None): + """Edit bblayers.conf, adding and/or removing layers + Parameters: + bblayers_conf: path to bblayers.conf file to edit + add: layer path (or list of layer paths) to add; None or empty + list to add nothing + remove: layer path (or list of layer paths) to remove; None or + empty list to remove nothing + edit_cb: optional callback function that will be called after + processing adds/removes once per existing entry. + Returns a tuple: + notadded: list of layers specified to be added but weren't + (because they were already in the list) + notremoved: list of layers that were specified to be removed + but weren't (because they weren't in the list) + """ + + import fnmatch + + def remove_trailing_sep(pth): + if pth and pth[-1] == os.sep: + pth = pth[:-1] + return pth + + approved = bb.utils.approved_variables() + def canonicalise_path(pth): + pth = remove_trailing_sep(pth) + if 'HOME' in approved and '~' in pth: + pth = os.path.expanduser(pth) + return pth + + def layerlist_param(value): + if not value: + return [] + elif isinstance(value, list): + return [remove_trailing_sep(x) for x in value] + else: + return [remove_trailing_sep(value)] + + addlayers = layerlist_param(add) + removelayers = layerlist_param(remove) + + # Need to use a list here because we can't set non-local variables from a callback in python 2.x + bblayercalls = [] + removed = [] + plusequals = False + orig_bblayers = [] + + def handle_bblayers_firstpass(varname, origvalue, op, newlines): + bblayercalls.append(op) + if op == '=': + del orig_bblayers[:] + orig_bblayers.extend([canonicalise_path(x) for x in origvalue.split()]) + return (origvalue, None, 2, False) + + def handle_bblayers(varname, origvalue, op, newlines): + updated = False + bblayers = [remove_trailing_sep(x) for x in origvalue.split()] + if removelayers: + for removelayer in removelayers: + for layer in bblayers: + if fnmatch.fnmatch(canonicalise_path(layer), canonicalise_path(removelayer)): + updated = True + bblayers.remove(layer) + removed.append(removelayer) + break + if addlayers and not plusequals: + for addlayer in addlayers: + if addlayer not in bblayers: + updated = True + bblayers.append(addlayer) + del addlayers[:] + + if edit_cb: + newlist = [] + for layer in bblayers: + res = edit_cb(layer, canonicalise_path(layer)) + if res != layer: + newlist.append(res) + updated = True + else: + newlist.append(layer) + bblayers = newlist + + if updated: + if op == '+=' and not bblayers: + bblayers = None + return (bblayers, None, 2, False) + else: + return (origvalue, None, 2, False) + + with open(bblayers_conf, 'r') as f: + (_, newlines) = edit_metadata(f, ['BBLAYERS'], handle_bblayers_firstpass) + + if not bblayercalls: + raise Exception('Unable to find BBLAYERS in %s' % bblayers_conf) + + # Try to do the "smart" thing depending on how the user has laid out + # their bblayers.conf file + if bblayercalls.count('+=') > 1: + plusequals = True + + removelayers_canon = [canonicalise_path(layer) for layer in removelayers] + notadded = [] + for layer in addlayers: + layer_canon = canonicalise_path(layer) + if layer_canon in orig_bblayers and not layer_canon in removelayers_canon: + notadded.append(layer) + notadded_canon = [canonicalise_path(layer) for layer in notadded] + addlayers[:] = [layer for layer in addlayers if canonicalise_path(layer) not in notadded_canon] + + (updated, newlines) = edit_metadata(newlines, ['BBLAYERS'], handle_bblayers) + if addlayers: + # Still need to add these + for addlayer in addlayers: + newlines.append('BBLAYERS += "%s"\n' % addlayer) + updated = True + + if updated: + with open(bblayers_conf, 'w') as f: + f.writelines(newlines) + + notremoved = list(set(removelayers) - set(removed)) + + return (notadded, notremoved) + +def get_collection_res(d): + collections = (d.getVar('BBFILE_COLLECTIONS') or '').split() + collection_res = {} + for collection in collections: + collection_res[collection] = d.getVar('BBFILE_PATTERN_%s' % collection) or '' + + return collection_res + + +def get_file_layer(filename, d, collection_res={}): + """Determine the collection (as defined by a layer's layer.conf file) containing the specified file""" + if not collection_res: + collection_res = get_collection_res(d) + + def path_to_layer(path): + # Use longest path so we handle nested layers + matchlen = 0 + match = None + for collection, regex in collection_res.items(): + if len(regex) > matchlen and re.match(regex, path): + matchlen = len(regex) + match = collection + return match + + result = None + bbfiles = (d.getVar('BBFILES_PRIORITIZED') or '').split() + bbfilesmatch = False + for bbfilesentry in bbfiles: + if fnmatch.fnmatchcase(filename, bbfilesentry): + bbfilesmatch = True + result = path_to_layer(bbfilesentry) + break + + if not bbfilesmatch: + # Probably a bbclass + result = path_to_layer(filename) + + return result + + +# Constant taken from http://linux.die.net/include/linux/prctl.h +PR_SET_PDEATHSIG = 1 + +class PrCtlError(Exception): + pass + +def signal_on_parent_exit(signame): + """ + Trigger signame to be sent when the parent process dies + """ + signum = getattr(signal, signame) + # http://linux.die.net/man/2/prctl + result = cdll['libc.so.6'].prctl(PR_SET_PDEATHSIG, signum) + if result != 0: + raise PrCtlError('prctl failed with error code %s' % result) + +# +# Manually call the ioprio syscall. We could depend on other libs like psutil +# however this gets us enough of what we need to bitbake for now without the +# dependency +# +_unamearch = os.uname()[4] +IOPRIO_WHO_PROCESS = 1 +IOPRIO_CLASS_SHIFT = 13 + +def ioprio_set(who, cls, value): + NR_ioprio_set = None + if _unamearch == "x86_64": + NR_ioprio_set = 251 + elif _unamearch[0] == "i" and _unamearch[2:3] == "86": + NR_ioprio_set = 289 + elif _unamearch == "aarch64": + NR_ioprio_set = 30 + + if NR_ioprio_set: + ioprio = value | (cls << IOPRIO_CLASS_SHIFT) + rc = cdll['libc.so.6'].syscall(NR_ioprio_set, IOPRIO_WHO_PROCESS, who, ioprio) + if rc != 0: + raise ValueError("Unable to set ioprio, syscall returned %s" % rc) + else: + bb.warn("Unable to set IO Prio for arch %s" % _unamearch) + +def set_process_name(name): + from ctypes import cdll, byref, create_string_buffer + # This is nice to have for debugging, not essential + try: + libc = cdll.LoadLibrary('libc.so.6') + buf = create_string_buffer(bytes(name, 'utf-8')) + libc.prctl(15, byref(buf), 0, 0, 0) + except: + pass + +def disable_network(uid=None, gid=None): + """ + Disable networking in the current process if the kernel supports it, else + just return after logging to debug. To do this we need to create a new user + namespace, then map back to the original uid/gid. + """ + libc = ctypes.CDLL('libc.so.6') + + # From sched.h + # New user namespace + CLONE_NEWUSER = 0x10000000 + # New network namespace + CLONE_NEWNET = 0x40000000 + + if uid is None: + uid = os.getuid() + if gid is None: + gid = os.getgid() + + ret = libc.unshare(CLONE_NEWNET | CLONE_NEWUSER) + if ret != 0: + logger.debug("System doesn't suport disabling network without admin privs") + return + with open("/proc/self/uid_map", "w") as f: + f.write("%s %s 1" % (uid, uid)) + with open("/proc/self/setgroups", "w") as f: + f.write("deny") + with open("/proc/self/gid_map", "w") as f: + f.write("%s %s 1" % (gid, gid)) + +def export_proxies(d): + """ export common proxies variables from datastore to environment """ + + variables = ['http_proxy', 'HTTP_PROXY', 'https_proxy', 'HTTPS_PROXY', + 'ftp_proxy', 'FTP_PROXY', 'no_proxy', 'NO_PROXY', + 'GIT_PROXY_COMMAND', 'SSL_CERT_FILE', 'SSL_CERT_DIR'] + + origenv = d.getVar("BB_ORIGENV") + + for name in variables: + value = d.getVar(name) + if not value and origenv: + value = origenv.getVar(name) + if value: + os.environ[name] = value + + + +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] ) + if spec: + mod = importlib.util.module_from_spec(spec) + spec.loader.exec_module(mod) + return mod + + logger.debug('Loading plugins from %s...' % pluginpath) + + expanded = (glob.glob(os.path.join(pluginpath, '*' + ext)) + for ext in python_extensions) + files = itertools.chain.from_iterable(expanded) + names = set(os.path.splitext(os.path.basename(fn))[0] for fn in files) + for name in names: + if name != '__init__': + plugin = load_plugin(name) + if hasattr(plugin, 'plugin_init'): + obj = plugin.plugin_init(plugins) + plugins.append(obj or plugin) + else: + plugins.append(plugin) + + +class LogCatcher(logging.Handler): + """Logging handler for collecting logged messages so you can check them later""" + def __init__(self): + self.messages = [] + logging.Handler.__init__(self, logging.WARNING) + def emit(self, record): + self.messages.append(bb.build.logformatter.format(record)) + def contains(self, message): + return (message in self.messages) + +def is_semver(version): + """ + Is the version string following the semver semantic? + + https://semver.org/spec/v2.0.0.html + """ + regex = re.compile( + r""" + ^ + (0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*) + (?:-( + (?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*) + (?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))* + ))? + (?:\+( + [0-9a-zA-Z-]+ + (?:\.[0-9a-zA-Z-]+)* + ))? + $ + """, re.VERBOSE) + + if regex.match(version) is None: + return False + + return True + +# Wrapper around os.rename which can handle cross device problems +# e.g. from container filesystems +def rename(src, dst): + try: + os.rename(src, dst) + except OSError as err: + if err.errno == 18: + # Invalid cross-device link error + shutil.move(src, dst) + else: + raise err + +@contextmanager +def environment(**envvars): + """ + Context manager to selectively update the environment with the specified mapping. + """ + backup = dict(os.environ) + try: + os.environ.update(envvars) + yield + finally: + for var in envvars: + if var in backup: + os.environ[var] = backup[var] + elif var in os.environ: + del os.environ[var] + +def is_local_uid(uid=''): + """ + Check whether uid is a local one or not. + Can't use pwd module since it gets all UIDs, not local ones only. + """ + if not uid: + uid = os.getuid() + with open('/etc/passwd', 'r') as f: + for line in f: + line_split = line.split(':') + if len(line_split) < 3: + continue + if str(uid) == line_split[2]: + return True + return False + +def mkstemp(suffix=None, prefix=None, dir=None, text=False): + """ + Generates a unique filename, independent of time. + + mkstemp() in glibc (at least) generates unique file names based on the + current system time. When combined with highly parallel builds, and + operating over NFS (e.g. shared sstate/downloads) this can result in + conflicts and race conditions. + + This function adds additional entropy to the file name so that a collision + is independent of time and thus extremely unlikely. + """ + entropy = "".join(random.choices("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", k=20)) + if prefix: + prefix = prefix + entropy + else: + prefix = tempfile.gettempprefix() + entropy + return tempfile.mkstemp(suffix=suffix, prefix=prefix, dir=dir, text=text) diff --git a/poky/bitbake/lib/bblayers/__init__.py b/poky/bitbake/lib/bblayers/__init__.py new file mode 100644 index 0000000..78efd29 --- /dev/null +++ b/poky/bitbake/lib/bblayers/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__) diff --git a/poky/bitbake/lib/bblayers/action.py b/poky/bitbake/lib/bblayers/action.py new file mode 100644 index 0000000..454c251 --- /dev/null +++ b/poky/bitbake/lib/bblayers/action.py @@ -0,0 +1,270 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import fnmatch +import logging +import os +import shutil +import sys +import tempfile + +import bb.utils + +from bblayers.common import LayerPlugin + +logger = logging.getLogger('bitbake-layers') + + +def plugin_init(plugins): + return ActionPlugin() + + +class ActionPlugin(LayerPlugin): + def do_add_layer(self, args): + """Add one or more layers to bblayers.conf.""" + layerdirs = [os.path.abspath(ldir) for ldir in args.layerdir] + + for layerdir in layerdirs: + if not os.path.exists(layerdir): + sys.stderr.write("Specified layer directory %s doesn't exist\n" % layerdir) + return 1 + + layer_conf = os.path.join(layerdir, 'conf', 'layer.conf') + if not os.path.exists(layer_conf): + sys.stderr.write("Specified layer directory %s doesn't contain a conf/layer.conf file\n" % layerdir) + return 1 + + bblayers_conf = os.path.join('conf', 'bblayers.conf') + if not os.path.exists(bblayers_conf): + sys.stderr.write("Unable to find bblayers.conf\n") + return 1 + + # Back up bblayers.conf to tempdir before we add layers + tempdir = tempfile.mkdtemp() + backup = tempdir + "/bblayers.conf.bak" + shutil.copy2(bblayers_conf, backup) + + try: + notadded, _ = bb.utils.edit_bblayers_conf(bblayers_conf, layerdirs, None) + if not (args.force or notadded): + try: + self.tinfoil.run_command('parseConfiguration') + except (bb.tinfoil.TinfoilUIException, bb.BBHandledException): + # Restore the back up copy of bblayers.conf + shutil.copy2(backup, bblayers_conf) + bb.fatal("Parse failure with the specified layer added, exiting.") + else: + for item in notadded: + sys.stderr.write("Specified layer %s is already in BBLAYERS\n" % item) + finally: + # Remove the back up copy of bblayers.conf + shutil.rmtree(tempdir) + + def do_remove_layer(self, args): + """Remove one or more layers from bblayers.conf.""" + bblayers_conf = os.path.join('conf', 'bblayers.conf') + if not os.path.exists(bblayers_conf): + sys.stderr.write("Unable to find bblayers.conf\n") + return 1 + + layerdirs = [] + for item in args.layerdir: + if item.startswith('*'): + layerdir = item + elif not '/' in item: + layerdir = '*/%s' % item + else: + layerdir = os.path.abspath(item) + layerdirs.append(layerdir) + (_, notremoved) = bb.utils.edit_bblayers_conf(bblayers_conf, None, layerdirs) + if notremoved: + for item in notremoved: + sys.stderr.write("No layers matching %s found in BBLAYERS\n" % item) + return 1 + + def do_flatten(self, args): + """flatten layer configuration into a separate output directory. + +Takes the specified layers (or all layers in the current layer +configuration if none are specified) and builds a "flattened" directory +containing the contents of all layers, with any overlayed recipes removed +and bbappends appended to the corresponding recipes. Note that some manual +cleanup may still be necessary afterwards, in particular: + +* where non-recipe files (such as patches) are overwritten (the flatten + command will show a warning for these) +* where anything beyond the normal layer setup has been added to + layer.conf (only the lowest priority number layer's layer.conf is used) +* overridden/appended items from bbappends will need to be tidied up +* when the flattened layers do not have the same directory structure (the + flatten command should show a warning when this will cause a problem) + +Warning: if you flatten several layers where another layer is intended to +be used "inbetween" them (in layer priority order) such that recipes / +bbappends in the layers interact, and then attempt to use the new output +layer together with that other layer, you may no longer get the same +build results (as the layer priority order has effectively changed). +""" + if len(args.layer) == 1: + logger.error('If you specify layers to flatten you must specify at least two') + return 1 + + outputdir = args.outputdir + if os.path.exists(outputdir) and os.listdir(outputdir): + logger.error('Directory %s exists and is non-empty, please clear it out first' % outputdir) + return 1 + + layers = self.bblayers + if len(args.layer) > 2: + layernames = args.layer + found_layernames = [] + found_layerdirs = [] + for layerdir in layers: + layername = self.get_layer_name(layerdir) + if layername in layernames: + found_layerdirs.append(layerdir) + found_layernames.append(layername) + + for layername in layernames: + if not layername in found_layernames: + logger.error('Unable to find layer %s in current configuration, please run "%s show-layers" to list configured layers' % (layername, os.path.basename(sys.argv[0]))) + return + layers = found_layerdirs + else: + layernames = [] + + # Ensure a specified path matches our list of layers + def layer_path_match(path): + for layerdir in layers: + if path.startswith(os.path.join(layerdir, '')): + return layerdir + return None + + applied_appends = [] + for layer in layers: + overlayed = set() + for mc in self.tinfoil.cooker.multiconfigs: + for f in self.tinfoil.cooker.collections[mc].overlayed.keys(): + for of in self.tinfoil.cooker.collections[mc].overlayed[f]: + if of.startswith(layer): + overlayed.add(of) + + logger.plain('Copying files from %s...' % layer ) + for root, dirs, files in os.walk(layer): + if '.git' in dirs: + dirs.remove('.git') + if '.hg' in dirs: + dirs.remove('.hg') + + for f1 in files: + f1full = os.sep.join([root, f1]) + if f1full in overlayed: + logger.plain(' Skipping overlayed file %s' % f1full ) + else: + ext = os.path.splitext(f1)[1] + if ext != '.bbappend': + fdest = f1full[len(layer):] + fdest = os.path.normpath(os.sep.join([outputdir,fdest])) + bb.utils.mkdirhier(os.path.dirname(fdest)) + if os.path.exists(fdest): + if f1 == 'layer.conf' and root.endswith('/conf'): + logger.plain(' Skipping layer config file %s' % f1full ) + continue + else: + logger.warning('Overwriting file %s', fdest) + bb.utils.copyfile(f1full, fdest) + if ext == '.bb': + appends = set() + for mc in self.tinfoil.cooker.multiconfigs: + appends |= set(self.tinfoil.cooker.collections[mc].get_file_appends(f1full)) + for append in appends: + if layer_path_match(append): + logger.plain(' Applying append %s to %s' % (append, fdest)) + self.apply_append(append, fdest) + applied_appends.append(append) + + # Take care of when some layers are excluded and yet we have included bbappends for those recipes + bbappends = set() + for mc in self.tinfoil.cooker.multiconfigs: + bbappends |= set(self.tinfoil.cooker.collections[mc].bbappends) + + for b in bbappends: + (recipename, appendname) = b + if appendname not in applied_appends: + first_append = None + layer = layer_path_match(appendname) + if layer: + if first_append: + self.apply_append(appendname, first_append) + else: + fdest = appendname[len(layer):] + fdest = os.path.normpath(os.sep.join([outputdir,fdest])) + bb.utils.mkdirhier(os.path.dirname(fdest)) + bb.utils.copyfile(appendname, fdest) + first_append = fdest + + # Get the regex for the first layer in our list (which is where the conf/layer.conf file will + # have come from) + first_regex = None + layerdir = layers[0] + for layername, pattern, regex, _ in self.tinfoil.cooker.bbfile_config_priorities: + if regex.match(os.path.join(layerdir, 'test')): + first_regex = regex + break + + if first_regex: + # Find the BBFILES entries that match (which will have come from this conf/layer.conf file) + bbfiles = str(self.tinfoil.config_data.getVar('BBFILES')).split() + bbfiles_layer = [] + for item in bbfiles: + if first_regex.match(item): + newpath = os.path.join(outputdir, item[len(layerdir)+1:]) + bbfiles_layer.append(newpath) + + if bbfiles_layer: + # Check that all important layer files match BBFILES + for root, dirs, files in os.walk(outputdir): + for f1 in files: + ext = os.path.splitext(f1)[1] + if ext in ['.bb', '.bbappend']: + f1full = os.sep.join([root, f1]) + entry_found = False + for item in bbfiles_layer: + if fnmatch.fnmatch(f1full, item): + entry_found = True + break + if not entry_found: + logger.warning("File %s does not match the flattened layer's BBFILES setting, you may need to edit conf/layer.conf or move the file elsewhere" % f1full) + + def get_file_layer(self, filename): + layerdir = self.get_file_layerdir(filename) + if layerdir: + return self.get_layer_name(layerdir) + else: + return '?' + + def get_file_layerdir(self, filename): + layer = bb.utils.get_file_layer(filename, self.tinfoil.config_data) + return self.bbfile_collections.get(layer, None) + + def apply_append(self, appendname, recipename): + with open(appendname, 'r') as appendfile: + with open(recipename, 'a') as recipefile: + recipefile.write('\n') + recipefile.write('##### bbappended from %s #####\n' % self.get_file_layer(appendname)) + recipefile.writelines(appendfile.readlines()) + + def register_commands(self, sp): + parser_add_layer = self.add_command(sp, 'add-layer', self.do_add_layer, parserecipes=False) + parser_add_layer.add_argument('layerdir', nargs='+', help='Layer directory/directories to add') + + parser_remove_layer = self.add_command(sp, 'remove-layer', self.do_remove_layer, parserecipes=False) + parser_remove_layer.add_argument('layerdir', nargs='+', help='Layer directory/directories to remove (wildcards allowed, enclose in quotes to avoid shell expansion)') + parser_remove_layer.set_defaults(func=self.do_remove_layer) + + parser_flatten = self.add_command(sp, 'flatten', self.do_flatten) + parser_flatten.add_argument('layer', nargs='*', help='Optional layer(s) to flatten (otherwise all are flattened)') + parser_flatten.add_argument('outputdir', help='Output directory') diff --git a/poky/bitbake/lib/bblayers/common.py b/poky/bitbake/lib/bblayers/common.py new file mode 100644 index 0000000..f7b9cee --- /dev/null +++ b/poky/bitbake/lib/bblayers/common.py @@ -0,0 +1,39 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import argparse +import logging +import os + +logger = logging.getLogger('bitbake-layers') + + +class LayerPlugin(): + def __init__(self): + self.tinfoil = None + self.bblayers = [] + + def tinfoil_init(self, tinfoil): + self.tinfoil = tinfoil + self.bblayers = (self.tinfoil.config_data.getVar('BBLAYERS') or "").split() + layerconfs = self.tinfoil.config_data.varhistory.get_variable_items_files('BBFILE_COLLECTIONS') + self.bbfile_collections = {layer: os.path.dirname(os.path.dirname(path)) for layer, path in layerconfs.items()} + + @staticmethod + def add_command(subparsers, cmdname, function, parserecipes=True, *args, **kwargs): + """Convert docstring for function to help.""" + docsplit = function.__doc__.splitlines() + help = docsplit[0] + if len(docsplit) > 1: + desc = '\n'.join(docsplit[1:]) + else: + desc = help + subparser = subparsers.add_parser(cmdname, *args, help=help, description=desc, formatter_class=argparse.RawTextHelpFormatter, **kwargs) + subparser.set_defaults(func=function, parserecipes=parserecipes) + return subparser + + def get_layer_name(self, layerdir): + return os.path.basename(layerdir.rstrip(os.sep)) diff --git a/poky/bitbake/lib/bblayers/layerindex.py b/poky/bitbake/lib/bblayers/layerindex.py new file mode 100644 index 0000000..0ac8fd2 --- /dev/null +++ b/poky/bitbake/lib/bblayers/layerindex.py @@ -0,0 +1,231 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import layerindexlib + +import argparse +import logging +import os +import subprocess + +from bblayers.action import ActionPlugin + +logger = logging.getLogger('bitbake-layers') + + +def plugin_init(plugins): + return LayerIndexPlugin() + + +class LayerIndexPlugin(ActionPlugin): + """Subcommands for interacting with the layer index. + + This class inherits ActionPlugin to get do_add_layer. + """ + + def get_fetch_layer(self, fetchdir, url, subdir, fetch_layer, branch, shallow=False): + layername = self.get_layer_name(url) + if os.path.splitext(layername)[1] == '.git': + layername = os.path.splitext(layername)[0] + repodir = os.path.join(fetchdir, layername) + layerdir = os.path.join(repodir, subdir) + if not os.path.exists(repodir): + if fetch_layer: + cmd = ['git', 'clone'] + if shallow: + cmd.extend(['--depth', '1']) + if branch: + cmd.extend(['-b' , branch]) + cmd.extend([url, repodir]) + result = subprocess.call(cmd) + if result: + logger.error("Failed to download %s (%s)" % (url, branch)) + return None, None, None + else: + return subdir, layername, layerdir + else: + logger.plain("Repository %s needs to be fetched" % url) + return subdir, layername, layerdir + elif os.path.exists(layerdir): + return subdir, layername, layerdir + else: + logger.error("%s is not in %s" % (url, subdir)) + return None, None, None + + def do_layerindex_fetch(self, args): + """Fetches a layer from a layer index along with its dependent layers, and adds them to conf/bblayers.conf. +""" + + def _construct_url(baseurls, branches): + urls = [] + for baseurl in baseurls: + if baseurl[-1] != '/': + baseurl += '/' + + if not baseurl.startswith('cooker'): + baseurl += "api/" + + if branches: + baseurl += ";branch=%s" % ','.join(branches) + + urls.append(baseurl) + + return urls + + + # Set the default... + if args.branch: + branches = [args.branch] + else: + branches = (self.tinfoil.config_data.getVar('LAYERSERIES_CORENAMES') or 'master').split() + logger.debug('Trying branches: %s' % branches) + + ignore_layers = [] + if args.ignore: + ignore_layers.extend(args.ignore.split(',')) + + # Load the cooker DB + cookerIndex = layerindexlib.LayerIndex(self.tinfoil.config_data) + cookerIndex.load_layerindex('cooker://', load='layerDependencies') + + # Fast path, check if we already have what has been requested! + (dependencies, invalidnames) = cookerIndex.find_dependencies(names=args.layername, ignores=ignore_layers) + if not args.show_only and not invalidnames: + logger.plain("You already have the requested layer(s): %s" % args.layername) + return 0 + + # The information to show is already in the cookerIndex + if invalidnames: + # General URL to use to access the layer index + # While there is ONE right now, we're expect users could enter several + apiurl = self.tinfoil.config_data.getVar('BBLAYERS_LAYERINDEX_URL').split() + if not apiurl: + logger.error("Cannot get BBLAYERS_LAYERINDEX_URL") + return 1 + + remoteIndex = layerindexlib.LayerIndex(self.tinfoil.config_data) + + for remoteurl in _construct_url(apiurl, branches): + logger.plain("Loading %s..." % remoteurl) + remoteIndex.load_layerindex(remoteurl) + + if remoteIndex.is_empty(): + logger.error("Remote layer index %s is empty for branches %s" % (apiurl, branches)) + return 1 + + lIndex = cookerIndex + remoteIndex + + (dependencies, invalidnames) = lIndex.find_dependencies(names=args.layername, ignores=ignore_layers) + + if invalidnames: + for invaluename in invalidnames: + logger.error('Layer "%s" not found in layer index' % invaluename) + return 1 + + logger.plain("%s %s %s" % ("Layer".ljust(49), "Git repository (branch)".ljust(54), "Subdirectory")) + logger.plain('=' * 125) + + for deplayerbranch in dependencies: + layerBranch = dependencies[deplayerbranch][0] + + # TODO: Determine display behavior + # This is the local content, uncomment to hide local + # layers from the display. + #if layerBranch.index.config['TYPE'] == 'cooker': + # continue + + layerDeps = dependencies[deplayerbranch][1:] + + requiredby = [] + recommendedby = [] + for dep in layerDeps: + if dep.required: + requiredby.append(dep.layer.name) + else: + recommendedby.append(dep.layer.name) + + logger.plain('%s %s %s' % (("%s:%s:%s" % + (layerBranch.index.config['DESCRIPTION'], + layerBranch.branch.name, + layerBranch.layer.name)).ljust(50), + ("%s (%s)" % (layerBranch.layer.vcs_url, + layerBranch.actual_branch)).ljust(55), + layerBranch.vcs_subdir + )) + if requiredby: + logger.plain(' required by: %s' % ' '.join(requiredby)) + if recommendedby: + logger.plain(' recommended by: %s' % ' '.join(recommendedby)) + + if dependencies: + if args.fetchdir: + fetchdir = args.fetchdir + else: + fetchdir = self.tinfoil.config_data.getVar('BBLAYERS_FETCH_DIR') + if not fetchdir: + logger.error("Cannot get BBLAYERS_FETCH_DIR") + return 1 + + if not os.path.exists(fetchdir): + os.makedirs(fetchdir) + + addlayers = [] + + for deplayerbranch in dependencies: + layerBranch = dependencies[deplayerbranch][0] + + if layerBranch.index.config['TYPE'] == 'cooker': + # Anything loaded via cooker is already local, skip it + continue + + subdir, name, layerdir = self.get_fetch_layer(fetchdir, + layerBranch.layer.vcs_url, + layerBranch.vcs_subdir, + not args.show_only, + layerBranch.actual_branch, + args.shallow) + if not name: + # Error already shown + return 1 + addlayers.append((subdir, name, layerdir)) + if not args.show_only: + localargs = argparse.Namespace() + localargs.layerdir = [] + localargs.force = args.force + for subdir, name, layerdir in addlayers: + if os.path.exists(layerdir): + if subdir: + logger.plain("Adding layer \"%s\" (%s) to conf/bblayers.conf" % (subdir, layerdir)) + else: + logger.plain("Adding layer \"%s\" (%s) to conf/bblayers.conf" % (name, layerdir)) + localargs.layerdir.append(layerdir) + else: + break + + if localargs.layerdir: + self.do_add_layer(localargs) + + def do_layerindex_show_depends(self, args): + """Find layer dependencies from layer index. +""" + args.show_only = True + args.ignore = [] + args.fetchdir = "" + args.shallow = True + self.do_layerindex_fetch(args) + + def register_commands(self, sp): + parser_layerindex_fetch = self.add_command(sp, 'layerindex-fetch', self.do_layerindex_fetch, parserecipes=False) + parser_layerindex_fetch.add_argument('-n', '--show-only', help='show dependencies and do nothing else', action='store_true') + parser_layerindex_fetch.add_argument('-b', '--branch', help='branch name to fetch') + parser_layerindex_fetch.add_argument('-s', '--shallow', help='do only shallow clones (--depth=1)', action='store_true') + parser_layerindex_fetch.add_argument('-i', '--ignore', help='assume the specified layers do not need to be fetched/added (separate multiple layers with commas, no spaces)', metavar='LAYER') + parser_layerindex_fetch.add_argument('-f', '--fetchdir', help='directory to fetch the layer(s) into (will be created if it does not exist)') + parser_layerindex_fetch.add_argument('layername', nargs='+', help='layer to fetch') + + parser_layerindex_show_depends = self.add_command(sp, 'layerindex-show-depends', self.do_layerindex_show_depends, parserecipes=False) + parser_layerindex_show_depends.add_argument('-b', '--branch', help='branch name to fetch') + parser_layerindex_show_depends.add_argument('layername', nargs='+', help='layer to query') diff --git a/poky/bitbake/lib/bblayers/query.py b/poky/bitbake/lib/bblayers/query.py new file mode 100644 index 0000000..9142ec4 --- /dev/null +++ b/poky/bitbake/lib/bblayers/query.py @@ -0,0 +1,530 @@ +# +# Copyright BitBake Contributors +# +# SPDX-License-Identifier: GPL-2.0-only +# + +import collections +import fnmatch +import logging +import sys +import os +import re + +import bb.utils + +from bblayers.common import LayerPlugin + +logger = logging.getLogger('bitbake-layers') + + +def plugin_init(plugins): + return QueryPlugin() + + +class QueryPlugin(LayerPlugin): + def __init__(self): + super(QueryPlugin, self).__init__() + self.collection_res = {} + + def do_show_layers(self, args): + """show current configured layers.""" + logger.plain("%s %s %s" % ("layer".ljust(20), "path".ljust(40), "priority")) + logger.plain('=' * 74) + for layer, _, regex, pri in self.tinfoil.cooker.bbfile_config_priorities: + layerdir = self.bbfile_collections.get(layer, None) + layername = self.get_layer_name(layerdir) + logger.plain("%s %s %d" % (layername.ljust(20), layerdir.ljust(40), pri)) + + def version_str(self, pe, pv, pr = None): + verstr = "%s" % pv + if pr: + verstr = "%s-%s" % (verstr, pr) + if pe: + verstr = "%s:%s" % (pe, verstr) + return verstr + + def do_show_overlayed(self, args): + """list overlayed recipes (where the same recipe exists in another layer) + +Lists the names of overlayed recipes and the available versions in each +layer, with the preferred version first. Note that skipped recipes that +are overlayed will also be listed, with a " (skipped)" suffix. +""" + + items_listed = self.list_recipes('Overlayed recipes', None, True, args.same_version, args.filenames, False, True, None, False, None, args.mc) + + # Check for overlayed .bbclass files + classes = collections.defaultdict(list) + for layerdir in self.bblayers: + classdir = os.path.join(layerdir, 'classes') + if os.path.exists(classdir): + for classfile in os.listdir(classdir): + if os.path.splitext(classfile)[1] == '.bbclass': + classes[classfile].append(classdir) + + # Locating classes and other files is a bit more complicated than recipes - + # layer priority is not a factor; instead BitBake uses the first matching + # file in BBPATH, which is manipulated directly by each layer's + # conf/layer.conf in turn, thus the order of layers in bblayers.conf is a + # factor - however, each layer.conf is free to either prepend or append to + # BBPATH (or indeed do crazy stuff with it). Thus the order in BBPATH might + # not be exactly the order present in bblayers.conf either. + bbpath = str(self.tinfoil.config_data.getVar('BBPATH')) + overlayed_class_found = False + for (classfile, classdirs) in classes.items(): + if len(classdirs) > 1: + if not overlayed_class_found: + logger.plain('=== Overlayed classes ===') + overlayed_class_found = True + + mainfile = bb.utils.which(bbpath, os.path.join('classes', classfile)) + if args.filenames: + logger.plain('%s' % mainfile) + else: + # We effectively have to guess the layer here + logger.plain('%s:' % classfile) + mainlayername = '?' + for layerdir in self.bblayers: + classdir = os.path.join(layerdir, 'classes') + if mainfile.startswith(classdir): + mainlayername = self.get_layer_name(layerdir) + logger.plain(' %s' % mainlayername) + for classdir in classdirs: + fullpath = os.path.join(classdir, classfile) + if fullpath != mainfile: + if args.filenames: + print(' %s' % fullpath) + else: + print(' %s' % self.get_layer_name(os.path.dirname(classdir))) + + if overlayed_class_found: + items_listed = True; + + if not items_listed: + logger.plain('No overlayed files found.') + + def do_show_recipes(self, args): + """list available recipes, showing the layer they are provided by + +Lists the names of recipes and the available versions in each +layer, with the preferred version first. Optionally you may specify +pnspec to match a specified recipe name (supports wildcards). Note that +skipped recipes will also be listed, with a " (skipped)" suffix. +""" + + inheritlist = args.inherits.split(',') if args.inherits else [] + if inheritlist or args.pnspec or args.multiple: + title = 'Matching recipes:' + else: + title = 'Available recipes:' + self.list_recipes(title, args.pnspec, False, False, args.filenames, args.recipes_only, args.multiple, args.layer, args.bare, inheritlist, args.mc) + + def list_recipes(self, title, pnspec, show_overlayed_only, show_same_ver_only, show_filenames, show_recipes_only, show_multi_provider_only, selected_layer, bare, inherits, mc): + if inherits: + bbpath = str(self.tinfoil.config_data.getVar('BBPATH')) + for classname in inherits: + classfile = 'classes/%s.bbclass' % classname + if not bb.utils.which(bbpath, classfile, history=False): + logger.error('No class named %s found in BBPATH', classfile) + sys.exit(1) + + pkg_pn = self.tinfoil.cooker.recipecaches[mc].pkg_pn + (latest_versions, preferred_versions, required_versions) = self.tinfoil.find_providers(mc) + allproviders = self.tinfoil.get_all_providers(mc) + + # Ensure we list skipped recipes + # We are largely guessing about PN, PV and the preferred version here, + # but we have no choice since skipped recipes are not fully parsed + skiplist = list(self.tinfoil.cooker.skiplist.keys()) + mcspec = 'mc:%s:' % mc + if mc: + skiplist = [s[len(mcspec):] for s in skiplist if s.startswith(mcspec)] + + for fn in skiplist: + recipe_parts = os.path.splitext(os.path.basename(fn))[0].split('_') + p = recipe_parts[0] + if len(recipe_parts) > 1: + ver = (None, recipe_parts[1], None) + else: + ver = (None, 'unknown', None) + allproviders[p].append((ver, fn)) + if not p in pkg_pn: + pkg_pn[p] = 'dummy' + preferred_versions[p] = (ver, fn) + + def print_item(f, pn, ver, layer, ispref): + if not selected_layer or layer == selected_layer: + if not bare and f in skiplist: + skipped = ' (skipped: %s)' % self.tinfoil.cooker.skiplist[f].skipreason + else: + skipped = '' + if show_filenames: + if ispref: + logger.plain("%s%s", f, skipped) + else: + logger.plain(" %s%s", f, skipped) + elif show_recipes_only: + if pn not in show_unique_pn: + show_unique_pn.append(pn) + logger.plain("%s%s", pn, skipped) + else: + if ispref: + logger.plain("%s:", pn) + logger.plain(" %s %s%s", layer.ljust(20), ver, skipped) + + global_inherit = (self.tinfoil.config_data.getVar('INHERIT') or "").split() + cls_re = re.compile('classes/') + + preffiles = [] + show_unique_pn = [] + items_listed = False + for p in sorted(pkg_pn): + if pnspec: + found=False + for pnm in pnspec: + if fnmatch.fnmatch(p, pnm): + found=True + break + if not found: + continue + + if len(allproviders[p]) > 1 or not show_multi_provider_only: + pref = preferred_versions[p] + realfn = bb.cache.virtualfn2realfn(pref[1]) + preffile = realfn[0] + + # We only display once per recipe, we should prefer non extended versions of the + # recipe if present (so e.g. in OpenEmbedded, openssl rather than nativesdk-openssl + # which would otherwise sort first). + if realfn[1] and realfn[0] in self.tinfoil.cooker.recipecaches[mc].pkg_fn: + continue + + if inherits: + matchcount = 0 + recipe_inherits = self.tinfoil.cooker_data.inherits.get(preffile, []) + for cls in recipe_inherits: + if cls_re.match(cls): + continue + classname = os.path.splitext(os.path.basename(cls))[0] + if classname in global_inherit: + continue + elif classname in inherits: + matchcount += 1 + if matchcount != len(inherits): + # No match - skip this recipe + continue + + if preffile not in preffiles: + preflayer = self.get_file_layer(preffile) + multilayer = False + same_ver = True + provs = [] + for prov in allproviders[p]: + provfile = bb.cache.virtualfn2realfn(prov[1])[0] + provlayer = self.get_file_layer(provfile) + provs.append((provfile, provlayer, prov[0])) + if provlayer != preflayer: + multilayer = True + if prov[0] != pref[0]: + same_ver = False + if (multilayer or not show_overlayed_only) and (same_ver or not show_same_ver_only): + if not items_listed: + logger.plain('=== %s ===' % title) + items_listed = True + print_item(preffile, p, self.version_str(pref[0][0], pref[0][1]), preflayer, True) + for (provfile, provlayer, provver) in provs: + if provfile != preffile: + print_item(provfile, p, self.version_str(provver[0], provver[1]), provlayer, False) + # Ensure we don't show two entries for BBCLASSEXTENDed recipes + preffiles.append(preffile) + + return items_listed + + def get_file_layer(self, filename): + layerdir = self.get_file_layerdir(filename) + if layerdir: + return self.get_layer_name(layerdir) + else: + return '?' + + def get_collection_res(self): + if not self.collection_res: + self.collection_res = bb.utils.get_collection_res(self.tinfoil.config_data) + return self.collection_res + + def get_file_layerdir(self, filename): + layer = bb.utils.get_file_layer(filename, self.tinfoil.config_data, self.get_collection_res()) + return self.bbfile_collections.get(layer, None) + + def remove_layer_prefix(self, f): + """Remove the layer_dir prefix, e.g., f = /path/to/layer_dir/foo/blah, the + return value will be: layer_dir/foo/blah""" + f_layerdir = self.get_file_layerdir(f) + if not f_layerdir: + return f + prefix = os.path.join(os.path.dirname(f_layerdir), '') + return f[len(prefix):] if f.startswith(prefix) else f + + def do_show_appends(self, args): + """list bbappend files and recipe files they apply to + +Lists recipes with the bbappends that apply to them as subitems. +""" + if args.pnspec: + logger.plain('=== Matched appended recipes ===') + else: + logger.plain('=== Appended recipes ===') + + pnlist = list(self.tinfoil.cooker_data.pkg_pn.keys()) + pnlist.sort() + appends = False + for pn in pnlist: + if args.pnspec: + found=False + for pnm in args.pnspec: + if fnmatch.fnmatch(pn, pnm): + found=True + break + if not found: + continue + + if self.show_appends_for_pn(pn): + appends = True + + if not args.pnspec and self.show_appends_for_skipped(): + appends = True + + if not appends: + logger.plain('No append files found') + + def show_appends_for_pn(self, pn): + filenames = self.tinfoil.cooker_data.pkg_pn[pn] + + best = self.tinfoil.find_best_provider(pn) + best_filename = os.path.basename(best[3]) + + return self.show_appends_output(filenames, best_filename) + + def show_appends_for_skipped(self): + filenames = [os.path.basename(f) + for f in self.tinfoil.cooker.skiplist.keys()] + return self.show_appends_output(filenames, None, " (skipped)") + + def show_appends_output(self, filenames, best_filename, name_suffix = ''): + appended, missing = self.get_appends_for_files(filenames) + if appended: + for basename, appends in appended: + logger.plain('%s%s:', basename, name_suffix) + for append in appends: + logger.plain(' %s', append) + + if best_filename: + if best_filename in missing: + logger.warning('%s: missing append for preferred version', + best_filename) + return True + else: + return False + + def get_appends_for_files(self, filenames): + appended, notappended = [], [] + for filename in filenames: + _, cls, mc = bb.cache.virtualfn2realfn(filename) + if cls: + continue + + basename = os.path.basename(filename) + appends = self.tinfoil.cooker.collections[mc].get_file_appends(basename) + if appends: + appended.append((basename, list(appends))) + else: + notappended.append(basename) + return appended, notappended + + def do_show_cross_depends(self, args): + """Show dependencies between recipes that cross layer boundaries. + +Figure out the dependencies between recipes that cross layer boundaries. + +NOTE: .bbappend files can impact the dependencies. +""" + ignore_layers = (args.ignore or '').split(',') + + pkg_fn = self.tinfoil.cooker_data.pkg_fn + bbpath = str(self.tinfoil.config_data.getVar('BBPATH')) + self.require_re = re.compile(r"require\s+(.+)") + self.include_re = re.compile(r"include\s+(.+)") + self.inherit_re = re.compile(r"inherit\s+(.+)") + + global_inherit = (self.tinfoil.config_data.getVar('INHERIT') or "").split() + + # The bb's DEPENDS and RDEPENDS + for f in pkg_fn: + f = bb.cache.virtualfn2realfn(f)[0] + # Get the layername that the file is in + layername = self.get_file_layer(f) + + # The DEPENDS + deps = self.tinfoil.cooker_data.deps[f] + for pn in deps: + if pn in self.tinfoil.cooker_data.pkg_pn: + best = self.tinfoil.find_best_provider(pn) + self.check_cross_depends("DEPENDS", layername, f, best[3], args.filenames, ignore_layers) + + # The RDPENDS + all_rdeps = self.tinfoil.cooker_data.rundeps[f].values() + # Remove the duplicated or null one. + sorted_rdeps = {} + # The all_rdeps is the list in list, so we need two for loops + for k1 in all_rdeps: + for k2 in k1: + sorted_rdeps[k2] = 1 + all_rdeps = sorted_rdeps.keys() + for rdep in all_rdeps: + all_p, best = self.tinfoil.get_runtime_providers(rdep) + if all_p: + if f in all_p: + # The recipe provides this one itself, ignore + continue + self.check_cross_depends("RDEPENDS", layername, f, best, args.filenames, ignore_layers) + + # The RRECOMMENDS + all_rrecs = self.tinfoil.cooker_data.runrecs[f].values() + # Remove the duplicated or null one. + sorted_rrecs = {} + # The all_rrecs is the list in list, so we need two for loops + for k1 in all_rrecs: + for k2 in k1: + sorted_rrecs[k2] = 1 + all_rrecs = sorted_rrecs.keys() + for rrec in all_rrecs: + all_p, best = self.tinfoil.get_runtime_providers(rrec) + if all_p: + if f in all_p: + # The recipe provides this one itself, ignore + continue + self.check_cross_depends("RRECOMMENDS", layername, f, best, args.filenames, ignore_layers) + + # The inherit class + cls_re = re.compile('classes/') + if f in self.tinfoil.cooker_data.inherits: + inherits = self.tinfoil.cooker_data.inherits[f] + for cls in inherits: + # The inherits' format is [classes/cls, /path/to/classes/cls] + # ignore the classes/cls. + if not cls_re.match(cls): + classname = os.path.splitext(os.path.basename(cls))[0] + if classname in global_inherit: + continue + inherit_layername = self.get_file_layer(cls) + if inherit_layername != layername and not inherit_layername in ignore_layers: + if not args.filenames: + f_short = self.remove_layer_prefix(f) + cls = self.remove_layer_prefix(cls) + else: + f_short = f + logger.plain("%s inherits %s" % (f_short, cls)) + + # The 'require/include xxx' in the bb file + pv_re = re.compile(r"\${PV}") + with open(f, 'r') as fnfile: + line = fnfile.readline() + while line: + m, keyword = self.match_require_include(line) + # Found the 'require/include xxxx' + if m: + needed_file = m.group(1) + # Replace the ${PV} with the real PV + if pv_re.search(needed_file) and f in self.tinfoil.cooker_data.pkg_pepvpr: + pv = self.tinfoil.cooker_data.pkg_pepvpr[f][1] + needed_file = re.sub(r"\${PV}", pv, needed_file) + self.print_cross_files(bbpath, keyword, layername, f, needed_file, args.filenames, ignore_layers) + line = fnfile.readline() + + # The "require/include xxx" in conf/machine/*.conf, .inc and .bbclass + conf_re = re.compile(r".*/conf/machine/[^\/]*\.conf$") + inc_re = re.compile(r".*\.inc$") + # The "inherit xxx" in .bbclass + bbclass_re = re.compile(r".*\.bbclass$") + for layerdir in self.bblayers: + layername = self.get_layer_name(layerdir) + for dirpath, dirnames, filenames in os.walk(layerdir): + for name in filenames: + f = os.path.join(dirpath, name) + s = conf_re.match(f) or inc_re.match(f) or bbclass_re.match(f) + if s: + with open(f, 'r') as ffile: + line = ffile.readline() + while line: + m, keyword = self.match_require_include(line) + # Only bbclass has the "inherit xxx" here. + bbclass="" + if not m and f.endswith(".bbclass"): + m, keyword = self.match_inherit(line) + bbclass=".bbclass" + # Find a 'require/include xxxx' + if m: + self.print_cross_files(bbpath, keyword, layername, f, m.group(1) + bbclass, args.filenames, ignore_layers) + line = ffile.readline() + + def print_cross_files(self, bbpath, keyword, layername, f, needed_filename, show_filenames, ignore_layers): + """Print the depends that crosses a layer boundary""" + needed_file = bb.utils.which(bbpath, needed_filename) + if needed_file: + # Which layer is this file from + needed_layername = self.get_file_layer(needed_file) + if needed_layername != layername and not needed_layername in ignore_layers: + if not show_filenames: + f = self.remove_layer_prefix(f) + needed_file = self.remove_layer_prefix(needed_file) + logger.plain("%s %s %s" %(f, keyword, needed_file)) + + def match_inherit(self, line): + """Match the inherit xxx line""" + return (self.inherit_re.match(line), "inherits") + + def match_require_include(self, line): + """Match the require/include xxx line""" + m = self.require_re.match(line) + keyword = "requires" + if not m: + m = self.include_re.match(line) + keyword = "includes" + return (m, keyword) + + def check_cross_depends(self, keyword, layername, f, needed_file, show_filenames, ignore_layers): + """Print the DEPENDS/RDEPENDS file that crosses a layer boundary""" + best_realfn = bb.cache.virtualfn2realfn(needed_file)[0] + needed_layername = self.get_file_layer(best_realfn) + if needed_layername != layername and not needed_layername in ignore_layers: + if not show_filenames: + f = self.remove_layer_prefix(f) + best_realfn = self.remove_layer_prefix(best_realfn) + + logger.plain("%s %s %s" % (f, keyword, best_realfn)) + + def register_commands(self, sp): + self.add_command(sp, 'show-layers', self.do_show_layers, parserecipes=False) + + parser_show_overlayed = self.add_command(sp, 'show-overlayed', self.do_show_overlayed) + parser_show_overlayed.add_argument('-f', '--filenames', help='instead of the default formatting, list filenames of higher priority recipes with the ones they overlay indented underneath', action='store_true') + parser_show_overlayed.add_argument('-s', '--same-version', help='only list overlayed recipes where the version is the same', action='store_true') + parser_show_overlayed.add_argument('--mc', help='use specified multiconfig', default='') + + parser_show_recipes = self.add_command(sp, 'show-recipes', self.do_show_recipes) + parser_show_recipes.add_argument('-f', '--filenames', help='instead of the default formatting, list filenames of higher priority recipes with the ones they overlay indented underneath', action='store_true') + parser_show_recipes.add_argument('-r', '--recipes-only', help='instead of the default formatting, list recipes only', action='store_true') + parser_show_recipes.add_argument('-m', '--multiple', help='only list where multiple recipes (in the same layer or different layers) exist for the same recipe name', action='store_true') + parser_show_recipes.add_argument('-i', '--inherits', help='only list recipes that inherit the named class(es) - separate multiple classes using , (without spaces)', metavar='CLASS', default='') + parser_show_recipes.add_argument('-l', '--layer', help='only list recipes from the selected layer', default='') + parser_show_recipes.add_argument('-b', '--bare', help='output just names without the "(skipped)" marker', action='store_true') + parser_show_recipes.add_argument('--mc', help='use specified multiconfig', default='') + parser_show_recipes.add_argument('pnspec', nargs='*', help='optional recipe name specification (wildcards allowed, enclose in quotes to avoid shell expansion)') + + parser_show_appends = self.add_command(sp, 'show-appends', self.do_show_appends) + parser_show_appends.add_argument('pnspec', nargs='*', help='optional recipe name specification (wildcards allowed, enclose in quotes to avoid shell expansion)') + + parser_show_cross_depends = self.add_command(sp, 'show-cross-depends', self.do_show_cross_depends) + parser_show_cross_depends.add_argument('-f', '--filenames', help='show full file path', action='store_true') + parser_show_cross_depends.add_argument('-i', '--ignore', help='ignore dependencies on items in the specified layer(s) (split multiple layer names with commas, no spaces)', metavar='LAYERNAME') diff --git a/poky/bitbake/lib/bs4/AUTHORS.txt b/poky/bitbake/lib/bs4/AUTHORS.txt new file mode 100644 index 0000000..2ac8fcc --- /dev/null +++ b/poky/bitbake/lib/bs4/AUTHORS.txt @@ -0,0 +1,43 @@ +Behold, mortal, the origins of Beautiful Soup... +================================================ + +Leonard Richardson is the primary programmer. + +Aaron DeVore is awesome. + +Mark Pilgrim provided the encoding detection code that forms the base +of UnicodeDammit. + +Thomas Kluyver and Ezio Melotti finished the work of getting Beautiful +Soup 4 working under Python 3. + +Simon Willison wrote soupselect, which was used to make Beautiful Soup +support CSS selectors. + +Sam Ruby helped with a lot of edge cases. + +Jonathan Ellis was awarded the prestigous Beau Potage D'Or for his +work in solving the nestable tags conundrum. + +An incomplete list of people have contributed patches to Beautiful +Soup: + + Istvan Albert, Andrew Lin, Anthony Baxter, Andrew Boyko, Tony Chang, + Zephyr Fang, Fuzzy, Roman Gaufman, Yoni Gilad, Richie Hindle, Peteris + Krumins, Kent Johnson, Ben Last, Robert Leftwich, Staffan Malmgren, + Ksenia Marasanova, JP Moins, Adam Monsen, John Nagle, "Jon", Ed + Oskiewicz, Greg Phillips, Giles Radford, Arthur Rudolph, Marko + Samastur, Jouni Seppänen, Alexander Schmolck, Andy Theyers, Glyn + Webster, Paul Wright, Danny Yoo + +An incomplete list of people who made suggestions or found bugs or +found ways to break Beautiful Soup: + + Hanno Böck, Matteo Bertini, Chris Curvey, Simon Cusack, Bruce Eckel, + Matt Ernst, Michael Foord, Tom Harris, Bill de hOra, Donald Howes, + Matt Patterson, Scott Roberts, Steve Strassmann, Mike Williams, + warchild at redho dot com, Sami Kuisma, Carlos Rocha, Bob Hutchison, + Joren Mc, Michal Migurski, John Kleven, Tim Heaney, Tripp Lilley, Ed + Summers, Dennis Sutch, Chris Smith, Aaron Sweep^W Swartz, Stuart + Turner, Greg Edwards, Kevin J Kalupson, Nikos Kouremenos, Artur de + Sousa Rocha, Yichun Wei, Per Vognsen diff --git a/poky/bitbake/lib/bs4/COPYING.txt b/poky/bitbake/lib/bs4/COPYING.txt new file mode 100644 index 0000000..d668d13 --- /dev/null +++ b/poky/bitbake/lib/bs4/COPYING.txt @@ -0,0 +1,26 @@ +Beautiful Soup is made available under the MIT license: + + Copyright (c) 2004-2012 Leonard Richardson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE, DAMMIT. + +Beautiful Soup incorporates code from the html5lib library, which is +also made available under the MIT license. diff --git a/poky/bitbake/lib/bs4/NEWS.txt b/poky/bitbake/lib/bs4/NEWS.txt new file mode 100644 index 0000000..88a60a2 --- /dev/null +++ b/poky/bitbake/lib/bs4/NEWS.txt @@ -0,0 +1,1066 @@ += 4.3.2 (20131002) = + +* Fixed a bug in which short Unicode input was improperly encoded to + ASCII when checking whether or not it was the name of a file on + disk. [bug=1227016] + +* Fixed a crash when a short input contains data not valid in + filenames. [bug=1232604] + +* Fixed a bug that caused Unicode data put into UnicodeDammit to + return None instead of the original data. [bug=1214983] + +* Combined two tests to stop a spurious test failure when tests are + run by nosetests. [bug=1212445] + += 4.3.1 (20130815) = + +* Fixed yet another problem with the html5lib tree builder, caused by + html5lib's tendency to rearrange the tree during + parsing. [bug=1189267] + +* Fixed a bug that caused the optimized version of find_all() to + return nothing. [bug=1212655] + += 4.3.0 (20130812) = + +* Instead of converting incoming data to Unicode and feeding it to the + lxml tree builder in chunks, Beautiful Soup now makes successive + guesses at the encoding of the incoming data, and tells lxml to + parse the data as that encoding. Giving lxml more control over the + parsing process improves performance and avoids a number of bugs and + issues with the lxml parser which had previously required elaborate + workarounds: + + - An issue in which lxml refuses to parse Unicode strings on some + systems. [bug=1180527] + + - A returning bug that truncated documents longer than a (very + small) size. [bug=963880] + + - A returning bug in which extra spaces were added to a document if + the document defined a charset other than UTF-8. [bug=972466] + + This required a major overhaul of the tree builder architecture. If + you wrote your own tree builder and didn't tell me, you'll need to + modify your prepare_markup() method. + +* The UnicodeDammit code that makes guesses at encodings has been + split into its own class, EncodingDetector. A lot of apparently + redundant code has been removed from Unicode, Dammit, and some + undocumented features have also been removed. + +* Beautiful Soup will issue a warning if instead of markup you pass it + a URL or the name of a file on disk (a common beginner's mistake). + +* A number of optimizations improve the performance of the lxml tree + builder by about 33%, the html.parser tree builder by about 20%, and + the html5lib tree builder by about 15%. + +* All find_all calls should now return a ResultSet object. Patch by + Aaron DeVore. [bug=1194034] + += 4.2.1 (20130531) = + +* The default XML formatter will now replace ampersands even if they + appear to be part of entities. That is, "<" will become + "&lt;". The old code was left over from Beautiful Soup 3, which + didn't always turn entities into Unicode characters. + + If you really want the old behavior (maybe because you add new + strings to the tree, those strings include entities, and you want + the formatter to leave them alone on output), it can be found in + EntitySubstitution.substitute_xml_containing_entities(). [bug=1182183] + +* Gave new_string() the ability to create subclasses of + NavigableString. [bug=1181986] + +* Fixed another bug by which the html5lib tree builder could create a + disconnected tree. [bug=1182089] + +* The .previous_element of a BeautifulSoup object is now always None, + not the last element to be parsed. [bug=1182089] + +* Fixed test failures when lxml is not installed. [bug=1181589] + +* html5lib now supports Python 3. Fixed some Python 2-specific + code in the html5lib test suite. [bug=1181624] + +* The html.parser treebuilder can now handle numeric attributes in + text when the hexidecimal name of the attribute starts with a + capital X. Patch by Tim Shirley. [bug=1186242] + += 4.2.0 (20130514) = + +* The Tag.select() method now supports a much wider variety of CSS + selectors. + + - Added support for the adjacent sibling combinator (+) and the + general sibling combinator (~). Tests by "liquider". [bug=1082144] + + - The combinators (>, +, and ~) can now combine with any supported + selector, not just one that selects based on tag name. + + - Added limited support for the "nth-of-type" pseudo-class. Code + by Sven Slootweg. [bug=1109952] + +* The BeautifulSoup class is now aliased to "_s" and "_soup", making + it quicker to type the import statement in an interactive session: + + from bs4 import _s + or + from bs4 import _soup + + The alias may change in the future, so don't use this in code you're + going to run more than once. + +* Added the 'diagnose' submodule, which includes several useful + functions for reporting problems and doing tech support. + + - diagnose(data) tries the given markup on every installed parser, + reporting exceptions and displaying successes. If a parser is not + installed, diagnose() mentions this fact. + + - lxml_trace(data, html=True) runs the given markup through lxml's + XML parser or HTML parser, and prints out the parser events as + they happen. This helps you quickly determine whether a given + problem occurs in lxml code or Beautiful Soup code. + + - htmlparser_trace(data) is the same thing, but for Python's + built-in HTMLParser class. + +* In an HTML document, the contents of a + +Hello, world! + + +''' + soup = self.soup(html) + self.assertEqual("text/javascript", soup.find('script')['type']) + + def test_comment(self): + # Comments are represented as Comment objects. + markup = "

    foobaz

    " + self.assertSoupEquals(markup) + + soup = self.soup(markup) + comment = soup.find(text="foobar") + self.assertEqual(comment.__class__, Comment) + + # The comment is properly integrated into the tree. + foo = soup.find(text="foo") + self.assertEqual(comment, foo.next_element) + baz = soup.find(text="baz") + self.assertEqual(comment, baz.previous_element) + + def test_preserved_whitespace_in_pre_and_textarea(self): + """Whitespace must be preserved in
     and ")
    +
    +    def test_nested_inline_elements(self):
    +        """Inline elements can be nested indefinitely."""
    +        b_tag = "Inside a B tag"
    +        self.assertSoupEquals(b_tag)
    +
    +        nested_b_tag = "

    A nested tag

    " + self.assertSoupEquals(nested_b_tag) + + double_nested_b_tag = "

    A doubly nested tag

    " + self.assertSoupEquals(nested_b_tag) + + def test_nested_block_level_elements(self): + """Block elements can be nested.""" + soup = self.soup('

    Foo

    ') + blockquote = soup.blockquote + self.assertEqual(blockquote.p.b.string, 'Foo') + self.assertEqual(blockquote.b.string, 'Foo') + + def test_correctly_nested_tables(self): + """One table can go inside another one.""" + markup = ('' + '' + "') + + self.assertSoupEquals( + markup, + '
    Here's another table:" + '' + '' + '
    foo
    Here\'s another table:' + '
    foo
    ' + '
    ') + + self.assertSoupEquals( + "" + "" + "
    Foo
    Bar
    Baz
    ") + + def test_deeply_nested_multivalued_attribute(self): + # html5lib can set the attributes of the same tag many times + # as it rearranges the tree. This has caused problems with + # multivalued attributes. + markup = '
    ' + soup = self.soup(markup) + self.assertEqual(["css"], soup.div.div['class']) + + def test_multivalued_attribute_on_html(self): + # html5lib uses a different API to set the attributes ot the + # tag. This has caused problems with multivalued + # attributes. + markup = '' + soup = self.soup(markup) + self.assertEqual(["a", "b"], soup.html['class']) + + def test_angle_brackets_in_attribute_values_are_escaped(self): + self.assertSoupEquals('', '') + + def test_entities_in_attributes_converted_to_unicode(self): + expect = '

    ' + self.assertSoupEquals('

    ', expect) + self.assertSoupEquals('

    ', expect) + self.assertSoupEquals('

    ', expect) + self.assertSoupEquals('

    ', expect) + + def test_entities_in_text_converted_to_unicode(self): + expect = '

    pi\N{LATIN SMALL LETTER N WITH TILDE}ata

    ' + self.assertSoupEquals("

    piñata

    ", expect) + self.assertSoupEquals("

    piñata

    ", expect) + self.assertSoupEquals("

    piñata

    ", expect) + self.assertSoupEquals("

    piñata

    ", expect) + + def test_quot_entity_converted_to_quotation_mark(self): + self.assertSoupEquals("

    I said "good day!"

    ", + '

    I said "good day!"

    ') + + def test_out_of_range_entity(self): + expect = "\N{REPLACEMENT CHARACTER}" + self.assertSoupEquals("�", expect) + self.assertSoupEquals("�", expect) + self.assertSoupEquals("�", expect) + + def test_multipart_strings(self): + "Mostly to prevent a recurrence of a bug in the html5lib treebuilder." + soup = self.soup("

    \nfoo

    ") + self.assertEqual("p", soup.h2.string.next_element.name) + self.assertEqual("p", soup.p.name) + self.assertConnectedness(soup) + + def test_head_tag_between_head_and_body(self): + "Prevent recurrence of a bug in the html5lib treebuilder." + content = """ + + foo + +""" + soup = self.soup(content) + self.assertNotEqual(None, soup.html.body) + self.assertConnectedness(soup) + + def test_multiple_copies_of_a_tag(self): + "Prevent recurrence of a bug in the html5lib treebuilder." + content = """ + + + + + +""" + soup = self.soup(content) + self.assertConnectedness(soup.article) + + def test_basic_namespaces(self): + """Parsers don't need to *understand* namespaces, but at the + very least they should not choke on namespaces or lose + data.""" + + markup = b'4' + soup = self.soup(markup) + self.assertEqual(markup, soup.encode()) + html = soup.html + self.assertEqual('http://www.w3.org/1999/xhtml', soup.html['xmlns']) + self.assertEqual( + 'http://www.w3.org/1998/Math/MathML', soup.html['xmlns:mathml']) + self.assertEqual( + 'http://www.w3.org/2000/svg', soup.html['xmlns:svg']) + + def test_multivalued_attribute_value_becomes_list(self): + markup = b'' + soup = self.soup(markup) + self.assertEqual(['foo', 'bar'], soup.a['class']) + + # + # Generally speaking, tests below this point are more tests of + # Beautiful Soup than tests of the tree builders. But parsers are + # weird, so we run these tests separately for every tree builder + # to detect any differences between them. + # + + def test_can_parse_unicode_document(self): + # A seemingly innocuous document... but it's in Unicode! And + # it contains characters that can't be represented in the + # encoding found in the declaration! The horror! + markup = 'Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!' + soup = self.soup(markup) + self.assertEqual('Sacr\xe9 bleu!', soup.body.string) + + def test_soupstrainer(self): + """Parsers should be able to work with SoupStrainers.""" + strainer = SoupStrainer("b") + soup = self.soup("A bold statement", + parse_only=strainer) + self.assertEqual(soup.decode(), "bold") + + def test_single_quote_attribute_values_become_double_quotes(self): + self.assertSoupEquals("", + '') + + def test_attribute_values_with_nested_quotes_are_left_alone(self): + text = """a""" + self.assertSoupEquals(text) + + def test_attribute_values_with_double_nested_quotes_get_quoted(self): + text = """a""" + soup = self.soup(text) + soup.foo['attr'] = 'Brawls happen at "Bob\'s Bar"' + self.assertSoupEquals( + soup.foo.decode(), + """a""") + + def test_ampersand_in_attribute_value_gets_escaped(self): + self.assertSoupEquals('', + '') + + self.assertSoupEquals( + 'foo', + 'foo') + + def test_escaped_ampersand_in_attribute_value_is_left_alone(self): + self.assertSoupEquals('') + + def test_entities_in_strings_converted_during_parsing(self): + # Both XML and HTML entities are converted to Unicode characters + # during parsing. + text = "

    <<sacré bleu!>>

    " + expected = "

    <<sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>

    " + self.assertSoupEquals(text, expected) + + def test_smart_quotes_converted_on_the_way_in(self): + # Microsoft smart quotes are converted to Unicode characters during + # parsing. + quote = b"

    \x91Foo\x92

    " + soup = self.soup(quote) + self.assertEqual( + soup.p.string, + "\N{LEFT SINGLE QUOTATION MARK}Foo\N{RIGHT SINGLE QUOTATION MARK}") + + def test_non_breaking_spaces_converted_on_the_way_in(self): + soup = self.soup("  ") + self.assertEqual(soup.a.string, "\N{NO-BREAK SPACE}" * 2) + + def test_entities_converted_on_the_way_out(self): + text = "

    <<sacré bleu!>>

    " + expected = "

    <<sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>

    ".encode("utf-8") + soup = self.soup(text) + self.assertEqual(soup.p.encode("utf-8"), expected) + + def test_real_iso_latin_document(self): + # Smoke test of interrelated functionality, using an + # easy-to-understand document. + + # Here it is in Unicode. Note that it claims to be in ISO-Latin-1. + unicode_html = '

    Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!

    ' + + # That's because we're going to encode it into ISO-Latin-1, and use + # that to test. + iso_latin_html = unicode_html.encode("iso-8859-1") + + # Parse the ISO-Latin-1 HTML. + soup = self.soup(iso_latin_html) + # Encode it to UTF-8. + result = soup.encode("utf-8") + + # What do we expect the result to look like? Well, it would + # look like unicode_html, except that the META tag would say + # UTF-8 instead of ISO-Latin-1. + expected = unicode_html.replace("ISO-Latin-1", "utf-8") + + # And, of course, it would be in UTF-8, not Unicode. + expected = expected.encode("utf-8") + + # Ta-da! + self.assertEqual(result, expected) + + def test_real_shift_jis_document(self): + # Smoke test to make sure the parser can handle a document in + # Shift-JIS encoding, without choking. + shift_jis_html = ( + b'
    '
    +            b'\x82\xb1\x82\xea\x82\xcdShift-JIS\x82\xc5\x83R\x81[\x83f'
    +            b'\x83B\x83\x93\x83O\x82\xb3\x82\xea\x82\xbd\x93\xfa\x96{\x8c'
    +            b'\xea\x82\xcc\x83t\x83@\x83C\x83\x8b\x82\xc5\x82\xb7\x81B'
    +            b'
    ') + unicode_html = shift_jis_html.decode("shift-jis") + soup = self.soup(unicode_html) + + # Make sure the parse tree is correctly encoded to various + # encodings. + self.assertEqual(soup.encode("utf-8"), unicode_html.encode("utf-8")) + self.assertEqual(soup.encode("euc_jp"), unicode_html.encode("euc_jp")) + + def test_real_hebrew_document(self): + # A real-world test to make sure we can convert ISO-8859-9 (a + # Hebrew encoding) to UTF-8. + hebrew_document = b'Hebrew (ISO 8859-8) in Visual Directionality

    Hebrew (ISO 8859-8) in Visual Directionality

    \xed\xe5\xec\xf9' + soup = self.soup( + hebrew_document, from_encoding="iso8859-8") + self.assertEqual(soup.original_encoding, 'iso8859-8') + self.assertEqual( + soup.encode('utf-8'), + hebrew_document.decode("iso8859-8").encode("utf-8")) + + def test_meta_tag_reflects_current_encoding(self): + # Here's the tag saying that a document is + # encoded in Shift-JIS. + meta_tag = ('') + + # Here's a document incorporating that meta tag. + shift_jis_html = ( + '\n%s\n' + '' + 'Shift-JIS markup goes here.') % meta_tag + soup = self.soup(shift_jis_html) + + # Parse the document, and the charset is seemingly unaffected. + parsed_meta = soup.find('meta', {'http-equiv': 'Content-type'}) + content = parsed_meta['content'] + self.assertEqual('text/html; charset=x-sjis', content) + + # But that value is actually a ContentMetaAttributeValue object. + self.assertTrue(isinstance(content, ContentMetaAttributeValue)) + + # And it will take on a value that reflects its current + # encoding. + self.assertEqual('text/html; charset=utf8', content.encode("utf8")) + + # For the rest of the story, see TestSubstitutions in + # test_tree.py. + + def test_html5_style_meta_tag_reflects_current_encoding(self): + # Here's the tag saying that a document is + # encoded in Shift-JIS. + meta_tag = ('') + + # Here's a document incorporating that meta tag. + shift_jis_html = ( + '\n%s\n' + '' + 'Shift-JIS markup goes here.') % meta_tag + soup = self.soup(shift_jis_html) + + # Parse the document, and the charset is seemingly unaffected. + parsed_meta = soup.find('meta', id="encoding") + charset = parsed_meta['charset'] + self.assertEqual('x-sjis', charset) + + # But that value is actually a CharsetMetaAttributeValue object. + self.assertTrue(isinstance(charset, CharsetMetaAttributeValue)) + + # And it will take on a value that reflects its current + # encoding. + self.assertEqual('utf8', charset.encode("utf8")) + + def test_tag_with_no_attributes_can_have_attributes_added(self): + data = self.soup("text") + data.a['foo'] = 'bar' + self.assertEqual('text', data.a.decode()) + +class XMLTreeBuilderSmokeTest(SoupTest): + + def test_pickle_and_unpickle_identity(self): + # Pickling a tree, then unpickling it, yields a tree identical + # to the original. + tree = self.soup("foo") + dumped = pickle.dumps(tree, 2) + loaded = pickle.loads(dumped) + self.assertEqual(loaded.__class__, BeautifulSoup) + self.assertEqual(loaded.decode(), tree.decode()) + + def test_docstring_generated(self): + soup = self.soup("") + self.assertEqual( + soup.encode(), b'\n') + + def test_xml_declaration(self): + markup = b"""\n""" + soup = self.soup(markup) + self.assertEqual(markup, soup.encode("utf8")) + + def test_real_xhtml_document(self): + """A real XHTML document should come out *exactly* the same as it went in.""" + markup = b""" + + +Hello. +Goodbye. +""" + soup = self.soup(markup) + self.assertEqual( + soup.encode("utf-8"), markup) + + def test_formatter_processes_script_tag_for_xml_documents(self): + doc = """ + +""" + soup = BeautifulSoup(doc, "lxml-xml") + # lxml would have stripped this while parsing, but we can add + # it later. + soup.script.string = 'console.log("< < hey > > ");' + encoded = soup.encode() + self.assertTrue(b"< < hey > >" in encoded) + + def test_can_parse_unicode_document(self): + markup = 'Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!' + soup = self.soup(markup) + self.assertEqual('Sacr\xe9 bleu!', soup.root.string) + + def test_popping_namespaced_tag(self): + markup = 'b2012-07-02T20:33:42Zcd' + soup = self.soup(markup) + self.assertEqual( + str(soup.rss), markup) + + def test_docstring_includes_correct_encoding(self): + soup = self.soup("") + self.assertEqual( + soup.encode("latin1"), + b'\n') + + def test_large_xml_document(self): + """A large XML document should come out the same as it went in.""" + markup = (b'\n' + + b'0' * (2**12) + + b'') + soup = self.soup(markup) + self.assertEqual(soup.encode("utf-8"), markup) + + + def test_tags_are_empty_element_if_and_only_if_they_are_empty(self): + self.assertSoupEquals("

    ", "

    ") + self.assertSoupEquals("

    foo

    ") + + def test_namespaces_are_preserved(self): + markup = 'This tag is in the a namespaceThis tag is in the b namespace' + soup = self.soup(markup) + root = soup.root + self.assertEqual("http://example.com/", root['xmlns:a']) + self.assertEqual("http://example.net/", root['xmlns:b']) + + def test_closing_namespaced_tag(self): + markup = '

    20010504

    ' + soup = self.soup(markup) + self.assertEqual(str(soup.p), markup) + + def test_namespaced_attributes(self): + markup = '' + soup = self.soup(markup) + self.assertEqual(str(soup.foo), markup) + + def test_namespaced_attributes_xml_namespace(self): + markup = 'bar' + soup = self.soup(markup) + self.assertEqual(str(soup.foo), markup) + +class HTML5TreeBuilderSmokeTest(HTMLTreeBuilderSmokeTest): + """Smoke test for a tree builder that supports HTML5.""" + + def test_real_xhtml_document(self): + # Since XHTML is not HTML5, HTML5 parsers are not tested to handle + # XHTML documents in any particular way. + pass + + def test_html_tags_have_namespace(self): + markup = "" + soup = self.soup(markup) + self.assertEqual("http://www.w3.org/1999/xhtml", soup.a.namespace) + + def test_svg_tags_have_namespace(self): + markup = '' + soup = self.soup(markup) + namespace = "http://www.w3.org/2000/svg" + self.assertEqual(namespace, soup.svg.namespace) + self.assertEqual(namespace, soup.circle.namespace) + + + def test_mathml_tags_have_namespace(self): + markup = '5' + soup = self.soup(markup) + namespace = 'http://www.w3.org/1998/Math/MathML' + self.assertEqual(namespace, soup.math.namespace) + self.assertEqual(namespace, soup.msqrt.namespace) + + def test_xml_declaration_becomes_comment(self): + markup = '' + soup = self.soup(markup) + self.assertTrue(isinstance(soup.contents[0], Comment)) + self.assertEqual(soup.contents[0], '?xml version="1.0" encoding="utf-8"?') + self.assertEqual("html", soup.contents[0].next_element.name) + +def skipIf(condition, reason): + def nothing(test, *args, **kwargs): + return None + + def decorator(test_item): + if condition: + return nothing + else: + return test_item + + return decorator diff --git a/poky/bitbake/lib/bs4/tests/__init__.py b/poky/bitbake/lib/bs4/tests/__init__.py new file mode 100644 index 0000000..142c8cc --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/__init__.py @@ -0,0 +1 @@ +"The beautifulsoup tests." diff --git a/poky/bitbake/lib/bs4/tests/test_builder_registry.py b/poky/bitbake/lib/bs4/tests/test_builder_registry.py new file mode 100644 index 0000000..90cad82 --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_builder_registry.py @@ -0,0 +1,147 @@ +"""Tests of the builder registry.""" + +import unittest +import warnings + +from bs4 import BeautifulSoup +from bs4.builder import ( + builder_registry as registry, + HTMLParserTreeBuilder, + TreeBuilderRegistry, +) + +try: + from bs4.builder import HTML5TreeBuilder + HTML5LIB_PRESENT = True +except ImportError: + HTML5LIB_PRESENT = False + +try: + from bs4.builder import ( + LXMLTreeBuilderForXML, + LXMLTreeBuilder, + ) + LXML_PRESENT = True +except ImportError: + LXML_PRESENT = False + + +class BuiltInRegistryTest(unittest.TestCase): + """Test the built-in registry with the default builders registered.""" + + def test_combination(self): + if LXML_PRESENT: + self.assertEqual(registry.lookup('fast', 'html'), + LXMLTreeBuilder) + + if LXML_PRESENT: + self.assertEqual(registry.lookup('permissive', 'xml'), + LXMLTreeBuilderForXML) + self.assertEqual(registry.lookup('strict', 'html'), + HTMLParserTreeBuilder) + if HTML5LIB_PRESENT: + self.assertEqual(registry.lookup('html5lib', 'html'), + HTML5TreeBuilder) + + def test_lookup_by_markup_type(self): + if LXML_PRESENT: + self.assertEqual(registry.lookup('html'), LXMLTreeBuilder) + self.assertEqual(registry.lookup('xml'), LXMLTreeBuilderForXML) + else: + self.assertEqual(registry.lookup('xml'), None) + if HTML5LIB_PRESENT: + self.assertEqual(registry.lookup('html'), HTML5TreeBuilder) + else: + self.assertEqual(registry.lookup('html'), HTMLParserTreeBuilder) + + def test_named_library(self): + if LXML_PRESENT: + self.assertEqual(registry.lookup('lxml', 'xml'), + LXMLTreeBuilderForXML) + self.assertEqual(registry.lookup('lxml', 'html'), + LXMLTreeBuilder) + if HTML5LIB_PRESENT: + self.assertEqual(registry.lookup('html5lib'), + HTML5TreeBuilder) + + self.assertEqual(registry.lookup('html.parser'), + HTMLParserTreeBuilder) + + def test_beautifulsoup_constructor_does_lookup(self): + + with warnings.catch_warnings(record=True) as w: + # This will create a warning about not explicitly + # specifying a parser, but we'll ignore it. + + # You can pass in a string. + BeautifulSoup("", features="html") + # Or a list of strings. + BeautifulSoup("", features=["html", "fast"]) + + # You'll get an exception if BS can't find an appropriate + # builder. + self.assertRaises(ValueError, BeautifulSoup, + "", features="no-such-feature") + +class RegistryTest(unittest.TestCase): + """Test the TreeBuilderRegistry class in general.""" + + def setUp(self): + self.registry = TreeBuilderRegistry() + + def builder_for_features(self, *feature_list): + cls = type('Builder_' + '_'.join(feature_list), + (object,), {'features' : feature_list}) + + self.registry.register(cls) + return cls + + def test_register_with_no_features(self): + builder = self.builder_for_features() + + # Since the builder advertises no features, you can't find it + # by looking up features. + self.assertEqual(self.registry.lookup('foo'), None) + + # But you can find it by doing a lookup with no features, if + # this happens to be the only registered builder. + self.assertEqual(self.registry.lookup(), builder) + + def test_register_with_features_makes_lookup_succeed(self): + builder = self.builder_for_features('foo', 'bar') + self.assertEqual(self.registry.lookup('foo'), builder) + self.assertEqual(self.registry.lookup('bar'), builder) + + def test_lookup_fails_when_no_builder_implements_feature(self): + builder = self.builder_for_features('foo', 'bar') + self.assertEqual(self.registry.lookup('baz'), None) + + def test_lookup_gets_most_recent_registration_when_no_feature_specified(self): + builder1 = self.builder_for_features('foo') + builder2 = self.builder_for_features('bar') + self.assertEqual(self.registry.lookup(), builder2) + + def test_lookup_fails_when_no_tree_builders_registered(self): + self.assertEqual(self.registry.lookup(), None) + + def test_lookup_gets_most_recent_builder_supporting_all_features(self): + has_one = self.builder_for_features('foo') + has_the_other = self.builder_for_features('bar') + has_both_early = self.builder_for_features('foo', 'bar', 'baz') + has_both_late = self.builder_for_features('foo', 'bar', 'quux') + lacks_one = self.builder_for_features('bar') + has_the_other = self.builder_for_features('foo') + + # There are two builders featuring 'foo' and 'bar', but + # the one that also features 'quux' was registered later. + self.assertEqual(self.registry.lookup('foo', 'bar'), + has_both_late) + + # There is only one builder featuring 'foo', 'bar', and 'baz'. + self.assertEqual(self.registry.lookup('foo', 'bar', 'baz'), + has_both_early) + + def test_lookup_fails_when_cannot_reconcile_requested_features(self): + builder1 = self.builder_for_features('foo', 'bar') + builder2 = self.builder_for_features('foo', 'baz') + self.assertEqual(self.registry.lookup('bar', 'baz'), None) diff --git a/poky/bitbake/lib/bs4/tests/test_docs.py b/poky/bitbake/lib/bs4/tests/test_docs.py new file mode 100644 index 0000000..d1d76a3 --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_docs.py @@ -0,0 +1,32 @@ +"Test harness for doctests." + +# pylint: disable-msg=E0611,W0142 + +__metaclass__ = type +__all__ = [ + 'additional_tests', + ] + +import doctest +#from pkg_resources import ( +# resource_filename, resource_exists, resource_listdir, cleanup_resources) + +DOCTEST_FLAGS = ( + doctest.ELLIPSIS | + doctest.NORMALIZE_WHITESPACE | + doctest.REPORT_NDIFF) + +# def additional_tests(): +# "Run the doc tests (README.txt and docs/*, if any exist)" +# doctest_files = [ +# os.path.abspath(resource_filename('bs4', 'README.txt'))] +# if resource_exists('bs4', 'docs'): +# for name in resource_listdir('bs4', 'docs'): +# if name.endswith('.txt'): +# doctest_files.append( +# os.path.abspath( +# resource_filename('bs4', 'docs/%s' % name))) +# kwargs = dict(module_relative=False, optionflags=DOCTEST_FLAGS) +# atexit.register(cleanup_resources) +# return unittest.TestSuite(( +# doctest.DocFileSuite(*doctest_files, **kwargs))) diff --git a/poky/bitbake/lib/bs4/tests/test_html5lib.py b/poky/bitbake/lib/bs4/tests/test_html5lib.py new file mode 100644 index 0000000..a7494ca --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_html5lib.py @@ -0,0 +1,98 @@ +"""Tests to ensure that the html5lib tree builder generates good trees.""" + +import warnings + +try: + from bs4.builder import HTML5TreeBuilder + HTML5LIB_PRESENT = True +except ImportError as e: + HTML5LIB_PRESENT = False +from bs4.element import SoupStrainer +from bs4.testing import ( + HTML5TreeBuilderSmokeTest, + SoupTest, + skipIf, +) + +@skipIf( + not HTML5LIB_PRESENT, + "html5lib seems not to be present, not testing its tree builder.") +class HTML5LibBuilderSmokeTest(SoupTest, HTML5TreeBuilderSmokeTest): + """See ``HTML5TreeBuilderSmokeTest``.""" + + @property + def default_builder(self): + return HTML5TreeBuilder() + + def test_soupstrainer(self): + # The html5lib tree builder does not support SoupStrainers. + strainer = SoupStrainer("b") + markup = "

    A bold statement.

    " + with warnings.catch_warnings(record=True) as w: + soup = self.soup(markup, parse_only=strainer) + self.assertEqual( + soup.decode(), self.document_for(markup)) + + self.assertTrue( + "the html5lib tree builder doesn't support parse_only" in + str(w[0].message)) + + def test_correctly_nested_tables(self): + """html5lib inserts tags where other parsers don't.""" + markup = ('' + '' + "') + + self.assertSoupEquals( + markup, + '
    Here's another table:" + '' + '' + '
    foo
    Here\'s another table:' + '
    foo
    ' + '
    ') + + self.assertSoupEquals( + "" + "" + "
    Foo
    Bar
    Baz
    ") + + def test_xml_declaration_followed_by_doctype(self): + markup = ''' + + + + + +

    foo

    + +''' + soup = self.soup(markup) + # Verify that we can reach the

    tag; this means the tree is connected. + self.assertEqual(b"

    foo

    ", soup.p.encode()) + + def test_reparented_markup(self): + markup = '

    foo

    \n

    bar

    ' + soup = self.soup(markup) + self.assertEqual("

    foo

    \n

    bar

    ", soup.body.decode()) + self.assertEqual(2, len(soup.find_all('p'))) + + + def test_reparented_markup_ends_with_whitespace(self): + markup = '

    foo

    \n

    bar

    \n' + soup = self.soup(markup) + self.assertEqual("

    foo

    \n

    bar

    \n", soup.body.decode()) + self.assertEqual(2, len(soup.find_all('p'))) + + def test_processing_instruction(self): + """Processing instructions become comments.""" + markup = b"""""" + soup = self.soup(markup) + assert str(soup).startswith("") + + def test_cloned_multivalue_node(self): + markup = b"""

    """ + soup = self.soup(markup) + a1, a2 = soup.find_all('a') + self.assertEqual(a1, a2) + assert a1 is not a2 diff --git a/poky/bitbake/lib/bs4/tests/test_htmlparser.py b/poky/bitbake/lib/bs4/tests/test_htmlparser.py new file mode 100644 index 0000000..30a25e6 --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_htmlparser.py @@ -0,0 +1,31 @@ +"""Tests to ensure that the html.parser tree builder generates good +trees.""" + +import pickle +from bs4.testing import SoupTest, HTMLTreeBuilderSmokeTest +from bs4.builder import HTMLParserTreeBuilder + +class HTMLParserTreeBuilderSmokeTest(SoupTest, HTMLTreeBuilderSmokeTest): + + @property + def default_builder(self): + return HTMLParserTreeBuilder() + + def test_namespaced_system_doctype(self): + # html.parser can't handle namespaced doctypes, so skip this one. + pass + + def test_namespaced_public_doctype(self): + # html.parser can't handle namespaced doctypes, so skip this one. + pass + + def test_builder_is_pickled(self): + """Unlike most tree builders, HTMLParserTreeBuilder and will + be restored after pickling. + """ + tree = self.soup("foo") + dumped = pickle.dumps(tree, 2) + loaded = pickle.loads(dumped) + self.assertTrue(isinstance(loaded.builder, type(tree.builder))) + + diff --git a/poky/bitbake/lib/bs4/tests/test_lxml.py b/poky/bitbake/lib/bs4/tests/test_lxml.py new file mode 100644 index 0000000..6b6cdd0 --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_lxml.py @@ -0,0 +1,70 @@ +"""Tests to ensure that the lxml tree builder generates good trees.""" + +import warnings + +try: + import lxml.etree + LXML_PRESENT = True + LXML_VERSION = lxml.etree.LXML_VERSION +except ImportError as e: + LXML_PRESENT = False + LXML_VERSION = (0,) + +if LXML_PRESENT: + from bs4.builder import LXMLTreeBuilder, LXMLTreeBuilderForXML + +from bs4 import BeautifulStoneSoup +from bs4.testing import skipIf +from bs4.testing import ( + HTMLTreeBuilderSmokeTest, + XMLTreeBuilderSmokeTest, + SoupTest, + skipIf, +) + +@skipIf( + not LXML_PRESENT, + "lxml seems not to be present, not testing its tree builder.") +class LXMLTreeBuilderSmokeTest(SoupTest, HTMLTreeBuilderSmokeTest): + """See ``HTMLTreeBuilderSmokeTest``.""" + + @property + def default_builder(self): + return LXMLTreeBuilder() + + def test_out_of_range_entity(self): + self.assertSoupEquals( + "

    foo�bar

    ", "

    foobar

    ") + self.assertSoupEquals( + "

    foo�bar

    ", "

    foobar

    ") + self.assertSoupEquals( + "

    foo�bar

    ", "

    foobar

    ") + + # In lxml < 2.3.5, an empty doctype causes a segfault. Skip this + # test if an old version of lxml is installed. + + @skipIf( + not LXML_PRESENT or LXML_VERSION < (2,3,5,0), + "Skipping doctype test for old version of lxml to avoid segfault.") + def test_empty_doctype(self): + soup = self.soup("") + doctype = soup.contents[0] + self.assertEqual("", doctype.strip()) + + def test_beautifulstonesoup_is_xml_parser(self): + # Make sure that the deprecated BSS class uses an xml builder + # if one is installed. + with warnings.catch_warnings(record=True) as w: + soup = BeautifulStoneSoup("") + self.assertEqual("", str(soup.b)) + self.assertTrue("BeautifulStoneSoup class is deprecated" in str(w[0].message)) + +@skipIf( + not LXML_PRESENT, + "lxml seems not to be present, not testing its XML tree builder.") +class LXMLXMLTreeBuilderSmokeTest(SoupTest, XMLTreeBuilderSmokeTest): + """See ``HTMLTreeBuilderSmokeTest``.""" + + @property + def default_builder(self): + return LXMLTreeBuilderForXML() diff --git a/poky/bitbake/lib/bs4/tests/test_soup.py b/poky/bitbake/lib/bs4/tests/test_soup.py new file mode 100644 index 0000000..6ad3cb3 --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_soup.py @@ -0,0 +1,479 @@ +# -*- coding: utf-8 -*- +"""Tests of Beautiful Soup as a whole.""" + +import logging +import unittest +import sys +import tempfile + +from bs4 import BeautifulSoup +from bs4.element import ( + CharsetMetaAttributeValue, + ContentMetaAttributeValue, + SoupStrainer, + NamespacedAttribute, + ) +import bs4.dammit +from bs4.dammit import ( + EntitySubstitution, + UnicodeDammit, + EncodingDetector, +) +from bs4.testing import ( + SoupTest, + skipIf, +) +import warnings + +try: + from bs4.builder import LXMLTreeBuilder, LXMLTreeBuilderForXML + LXML_PRESENT = True +except ImportError as e: + LXML_PRESENT = False + +PYTHON_2_PRE_2_7 = (sys.version_info < (2,7)) +PYTHON_3_PRE_3_2 = (sys.version_info[0] == 3 and sys.version_info < (3,2)) + +class TestConstructor(SoupTest): + + def test_short_unicode_input(self): + data = "

    éé

    " + soup = self.soup(data) + self.assertEqual("éé", soup.h1.string) + + def test_embedded_null(self): + data = "

    foo\0bar

    " + soup = self.soup(data) + self.assertEqual("foo\0bar", soup.h1.string) + + def test_exclude_encodings(self): + utf8_data = "RäksmörgÃ¥s".encode("utf-8") + soup = self.soup(utf8_data, exclude_encodings=["utf-8"]) + self.assertEqual("windows-1252", soup.original_encoding) + + +class TestWarnings(SoupTest): + + def _no_parser_specified(self, s, is_there=True): + v = s.startswith(BeautifulSoup.NO_PARSER_SPECIFIED_WARNING[:80]) + self.assertTrue(v) + + def test_warning_if_no_parser_specified(self): + with warnings.catch_warnings(record=True) as w: + soup = self.soup("") + msg = str(w[0].message) + self._assert_no_parser_specified(msg) + + def test_warning_if_parser_specified_too_vague(self): + with warnings.catch_warnings(record=True) as w: + soup = self.soup("", "html") + msg = str(w[0].message) + self._assert_no_parser_specified(msg) + + def test_no_warning_if_explicit_parser_specified(self): + with warnings.catch_warnings(record=True) as w: + soup = self.soup("", "html.parser") + self.assertEqual([], w) + + def test_parseOnlyThese_renamed_to_parse_only(self): + with warnings.catch_warnings(record=True) as w: + soup = self.soup("", parseOnlyThese=SoupStrainer("b")) + msg = str(w[0].message) + self.assertTrue("parseOnlyThese" in msg) + self.assertTrue("parse_only" in msg) + self.assertEqual(b"", soup.encode()) + + def test_fromEncoding_renamed_to_from_encoding(self): + with warnings.catch_warnings(record=True) as w: + utf8 = b"\xc3\xa9" + soup = self.soup(utf8, fromEncoding="utf8") + msg = str(w[0].message) + self.assertTrue("fromEncoding" in msg) + self.assertTrue("from_encoding" in msg) + self.assertEqual("utf8", soup.original_encoding) + + def test_unrecognized_keyword_argument(self): + self.assertRaises( + TypeError, self.soup, "", no_such_argument=True) + +class TestWarnings(SoupTest): + + def test_disk_file_warning(self): + filehandle = tempfile.NamedTemporaryFile() + filename = filehandle.name + try: + with warnings.catch_warnings(record=True) as w: + soup = self.soup(filename) + msg = str(w[0].message) + self.assertTrue("looks like a filename" in msg) + finally: + filehandle.close() + + # The file no longer exists, so Beautiful Soup will no longer issue the warning. + with warnings.catch_warnings(record=True) as w: + soup = self.soup(filename) + self.assertEqual(0, len(w)) + + def test_url_warning(self): + with warnings.catch_warnings(record=True) as w: + soup = self.soup("http://www.crummy.com/") + msg = str(w[0].message) + self.assertTrue("looks like a URL" in msg) + + with warnings.catch_warnings(record=True) as w: + soup = self.soup("http://www.crummy.com/ is great") + self.assertEqual(0, len(w)) + +class TestSelectiveParsing(SoupTest): + + def test_parse_with_soupstrainer(self): + markup = "NoYesNoYes Yes" + strainer = SoupStrainer("b") + soup = self.soup(markup, parse_only=strainer) + self.assertEqual(soup.encode(), b"YesYes Yes") + + +class TestEntitySubstitution(unittest.TestCase): + """Standalone tests of the EntitySubstitution class.""" + def setUp(self): + self.sub = EntitySubstitution + + def test_simple_html_substitution(self): + # Unicode characters corresponding to named HTML entites + # are substituted, and no others. + s = "foo\u2200\N{SNOWMAN}\u00f5bar" + self.assertEqual(self.sub.substitute_html(s), + "foo∀\N{SNOWMAN}õbar") + + def test_smart_quote_substitution(self): + # MS smart quotes are a common source of frustration, so we + # give them a special test. + quotes = b"\x91\x92foo\x93\x94" + dammit = UnicodeDammit(quotes) + self.assertEqual(self.sub.substitute_html(dammit.markup), + "‘’foo“”") + + def test_xml_converstion_includes_no_quotes_if_make_quoted_attribute_is_false(self): + s = 'Welcome to "my bar"' + self.assertEqual(self.sub.substitute_xml(s, False), s) + + def test_xml_attribute_quoting_normally_uses_double_quotes(self): + self.assertEqual(self.sub.substitute_xml("Welcome", True), + '"Welcome"') + self.assertEqual(self.sub.substitute_xml("Bob's Bar", True), + '"Bob\'s Bar"') + + def test_xml_attribute_quoting_uses_single_quotes_when_value_contains_double_quotes(self): + s = 'Welcome to "my bar"' + self.assertEqual(self.sub.substitute_xml(s, True), + "'Welcome to \"my bar\"'") + + def test_xml_attribute_quoting_escapes_single_quotes_when_value_contains_both_single_and_double_quotes(self): + s = 'Welcome to "Bob\'s Bar"' + self.assertEqual( + self.sub.substitute_xml(s, True), + '"Welcome to "Bob\'s Bar""') + + def test_xml_quotes_arent_escaped_when_value_is_not_being_quoted(self): + quoted = 'Welcome to "Bob\'s Bar"' + self.assertEqual(self.sub.substitute_xml(quoted), quoted) + + def test_xml_quoting_handles_angle_brackets(self): + self.assertEqual( + self.sub.substitute_xml("foo"), + "foo<bar>") + + def test_xml_quoting_handles_ampersands(self): + self.assertEqual(self.sub.substitute_xml("AT&T"), "AT&T") + + def test_xml_quoting_including_ampersands_when_they_are_part_of_an_entity(self): + self.assertEqual( + self.sub.substitute_xml("ÁT&T"), + "&Aacute;T&T") + + def test_xml_quoting_ignoring_ampersands_when_they_are_part_of_an_entity(self): + self.assertEqual( + self.sub.substitute_xml_containing_entities("ÁT&T"), + "ÁT&T") + + def test_quotes_not_html_substituted(self): + """There's no need to do this except inside attribute values.""" + text = 'Bob\'s "bar"' + self.assertEqual(self.sub.substitute_html(text), text) + + +class TestEncodingConversion(SoupTest): + # Test Beautiful Soup's ability to decode and encode from various + # encodings. + + def setUp(self): + super(TestEncodingConversion, self).setUp() + self.unicode_data = 'Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!' + self.utf8_data = self.unicode_data.encode("utf-8") + # Just so you know what it looks like. + self.assertEqual( + self.utf8_data, + b'Sacr\xc3\xa9 bleu!') + + def test_ascii_in_unicode_out(self): + # ASCII input is converted to Unicode. The original_encoding + # attribute is set to 'utf-8', a superset of ASCII. + chardet = bs4.dammit.chardet_dammit + logging.disable(logging.WARNING) + try: + def noop(str): + return None + # Disable chardet, which will realize that the ASCII is ASCII. + bs4.dammit.chardet_dammit = noop + ascii = b"a" + soup_from_ascii = self.soup(ascii) + unicode_output = soup_from_ascii.decode() + self.assertTrue(isinstance(unicode_output, str)) + self.assertEqual(unicode_output, self.document_for(ascii.decode())) + self.assertEqual(soup_from_ascii.original_encoding.lower(), "utf-8") + finally: + logging.disable(logging.NOTSET) + bs4.dammit.chardet_dammit = chardet + + def test_unicode_in_unicode_out(self): + # Unicode input is left alone. The original_encoding attribute + # is not set. + soup_from_unicode = self.soup(self.unicode_data) + self.assertEqual(soup_from_unicode.decode(), self.unicode_data) + self.assertEqual(soup_from_unicode.foo.string, 'Sacr\xe9 bleu!') + self.assertEqual(soup_from_unicode.original_encoding, None) + + def test_utf8_in_unicode_out(self): + # UTF-8 input is converted to Unicode. The original_encoding + # attribute is set. + soup_from_utf8 = self.soup(self.utf8_data) + self.assertEqual(soup_from_utf8.decode(), self.unicode_data) + self.assertEqual(soup_from_utf8.foo.string, 'Sacr\xe9 bleu!') + + def test_utf8_out(self): + # The internal data structures can be encoded as UTF-8. + soup_from_unicode = self.soup(self.unicode_data) + self.assertEqual(soup_from_unicode.encode('utf-8'), self.utf8_data) + + @skipIf( + PYTHON_2_PRE_2_7 or PYTHON_3_PRE_3_2, + "Bad HTMLParser detected; skipping test of non-ASCII characters in attribute name.") + def test_attribute_name_containing_unicode_characters(self): + markup = '
    ' + self.assertEqual(self.soup(markup).div.encode("utf8"), markup.encode("utf8")) + +class TestUnicodeDammit(unittest.TestCase): + """Standalone tests of UnicodeDammit.""" + + def test_unicode_input(self): + markup = "I'm already Unicode! \N{SNOWMAN}" + dammit = UnicodeDammit(markup) + self.assertEqual(dammit.unicode_markup, markup) + + def test_smart_quotes_to_unicode(self): + markup = b"\x91\x92\x93\x94" + dammit = UnicodeDammit(markup) + self.assertEqual( + dammit.unicode_markup, "\u2018\u2019\u201c\u201d") + + def test_smart_quotes_to_xml_entities(self): + markup = b"\x91\x92\x93\x94" + dammit = UnicodeDammit(markup, smart_quotes_to="xml") + self.assertEqual( + dammit.unicode_markup, "‘’“”") + + def test_smart_quotes_to_html_entities(self): + markup = b"\x91\x92\x93\x94" + dammit = UnicodeDammit(markup, smart_quotes_to="html") + self.assertEqual( + dammit.unicode_markup, "‘’“”") + + def test_smart_quotes_to_ascii(self): + markup = b"\x91\x92\x93\x94" + dammit = UnicodeDammit(markup, smart_quotes_to="ascii") + self.assertEqual( + dammit.unicode_markup, """''""""") + + def test_detect_utf8(self): + utf8 = b"Sacr\xc3\xa9 bleu! \xe2\x98\x83" + dammit = UnicodeDammit(utf8) + self.assertEqual(dammit.original_encoding.lower(), 'utf-8') + self.assertEqual(dammit.unicode_markup, 'Sacr\xe9 bleu! \N{SNOWMAN}') + + + def test_convert_hebrew(self): + hebrew = b"\xed\xe5\xec\xf9" + dammit = UnicodeDammit(hebrew, ["iso-8859-8"]) + self.assertEqual(dammit.original_encoding.lower(), 'iso-8859-8') + self.assertEqual(dammit.unicode_markup, '\u05dd\u05d5\u05dc\u05e9') + + def test_dont_see_smart_quotes_where_there_are_none(self): + utf_8 = b"\343\202\261\343\203\274\343\202\277\343\202\244 Watch" + dammit = UnicodeDammit(utf_8) + self.assertEqual(dammit.original_encoding.lower(), 'utf-8') + self.assertEqual(dammit.unicode_markup.encode("utf-8"), utf_8) + + def test_ignore_inappropriate_codecs(self): + utf8_data = "RäksmörgÃ¥s".encode("utf-8") + dammit = UnicodeDammit(utf8_data, ["iso-8859-8"]) + self.assertEqual(dammit.original_encoding.lower(), 'utf-8') + + def test_ignore_invalid_codecs(self): + utf8_data = "RäksmörgÃ¥s".encode("utf-8") + for bad_encoding in ['.utf8', '...', 'utF---16.!']: + dammit = UnicodeDammit(utf8_data, [bad_encoding]) + self.assertEqual(dammit.original_encoding.lower(), 'utf-8') + + def test_exclude_encodings(self): + # This is UTF-8. + utf8_data = "RäksmörgÃ¥s".encode("utf-8") + + # But if we exclude UTF-8 from consideration, the guess is + # Windows-1252. + dammit = UnicodeDammit(utf8_data, exclude_encodings=["utf-8"]) + self.assertEqual(dammit.original_encoding.lower(), 'windows-1252') + + # And if we exclude that, there is no valid guess at all. + dammit = UnicodeDammit( + utf8_data, exclude_encodings=["utf-8", "windows-1252"]) + self.assertEqual(dammit.original_encoding, None) + + def test_encoding_detector_replaces_junk_in_encoding_name_with_replacement_character(self): + detected = EncodingDetector( + b'') + encodings = list(detected.encodings) + assert 'utf-\N{REPLACEMENT CHARACTER}' in encodings + + def test_detect_html5_style_meta_tag(self): + + for data in ( + b'', + b"", + b"", + b""): + dammit = UnicodeDammit(data, is_html=True) + self.assertEqual( + "euc-jp", dammit.original_encoding) + + def test_last_ditch_entity_replacement(self): + # This is a UTF-8 document that contains bytestrings + # completely incompatible with UTF-8 (ie. encoded with some other + # encoding). + # + # Since there is no consistent encoding for the document, + # Unicode, Dammit will eventually encode the document as UTF-8 + # and encode the incompatible characters as REPLACEMENT + # CHARACTER. + # + # If chardet is installed, it will detect that the document + # can be converted into ISO-8859-1 without errors. This happens + # to be the wrong encoding, but it is a consistent encoding, so the + # code we're testing here won't run. + # + # So we temporarily disable chardet if it's present. + doc = b"""\357\273\277 +\330\250\330\252\330\261 +\310\322\321\220\312\321\355\344""" + chardet = bs4.dammit.chardet_dammit + logging.disable(logging.WARNING) + try: + def noop(str): + return None + bs4.dammit.chardet_dammit = noop + dammit = UnicodeDammit(doc) + self.assertEqual(True, dammit.contains_replacement_characters) + self.assertTrue("\ufffd" in dammit.unicode_markup) + + soup = BeautifulSoup(doc, "html.parser") + self.assertTrue(soup.contains_replacement_characters) + finally: + logging.disable(logging.NOTSET) + bs4.dammit.chardet_dammit = chardet + + def test_byte_order_mark_removed(self): + # A document written in UTF-16LE will have its byte order marker stripped. + data = b'\xff\xfe<\x00a\x00>\x00\xe1\x00\xe9\x00<\x00/\x00a\x00>\x00' + dammit = UnicodeDammit(data) + self.assertEqual("áé", dammit.unicode_markup) + self.assertEqual("utf-16le", dammit.original_encoding) + + def test_detwingle(self): + # Here's a UTF8 document. + utf8 = ("\N{SNOWMAN}" * 3).encode("utf8") + + # Here's a Windows-1252 document. + windows_1252 = ( + "\N{LEFT DOUBLE QUOTATION MARK}Hi, I like Windows!" + "\N{RIGHT DOUBLE QUOTATION MARK}").encode("windows_1252") + + # Through some unholy alchemy, they've been stuck together. + doc = utf8 + windows_1252 + utf8 + + # The document can't be turned into UTF-8: + self.assertRaises(UnicodeDecodeError, doc.decode, "utf8") + + # Unicode, Dammit thinks the whole document is Windows-1252, + # and decodes it into "☃☃☃“Hi, I like Windows!â€Ã¢ËœÆ’☃☃" + + # But if we run it through fix_embedded_windows_1252, it's fixed: + + fixed = UnicodeDammit.detwingle(doc) + self.assertEqual( + "☃☃☃“Hi, I like Windows!â€â˜ƒâ˜ƒâ˜ƒ", fixed.decode("utf8")) + + def test_detwingle_ignores_multibyte_characters(self): + # Each of these characters has a UTF-8 representation ending + # in \x93. \x93 is a smart quote if interpreted as + # Windows-1252. But our code knows to skip over multibyte + # UTF-8 characters, so they'll survive the process unscathed. + for tricky_unicode_char in ( + "\N{LATIN SMALL LIGATURE OE}", # 2-byte char '\xc5\x93' + "\N{LATIN SUBSCRIPT SMALL LETTER X}", # 3-byte char '\xe2\x82\x93' + "\xf0\x90\x90\x93", # This is a CJK character, not sure which one. + ): + input = tricky_unicode_char.encode("utf8") + self.assertTrue(input.endswith(b'\x93')) + output = UnicodeDammit.detwingle(input) + self.assertEqual(output, input) + +class TestNamedspacedAttribute(SoupTest): + + def test_name_may_be_none(self): + a = NamespacedAttribute("xmlns", None) + self.assertEqual(a, "xmlns") + + def test_attribute_is_equivalent_to_colon_separated_string(self): + a = NamespacedAttribute("a", "b") + self.assertEqual("a:b", a) + + def test_attributes_are_equivalent_if_prefix_and_name_identical(self): + a = NamespacedAttribute("a", "b", "c") + b = NamespacedAttribute("a", "b", "c") + self.assertEqual(a, b) + + # The actual namespace is not considered. + c = NamespacedAttribute("a", "b", None) + self.assertEqual(a, c) + + # But name and prefix are important. + d = NamespacedAttribute("a", "z", "c") + self.assertNotEqual(a, d) + + e = NamespacedAttribute("z", "b", "c") + self.assertNotEqual(a, e) + + +class TestAttributeValueWithCharsetSubstitution(unittest.TestCase): + + def test_content_meta_attribute_value(self): + value = CharsetMetaAttributeValue("euc-jp") + self.assertEqual("euc-jp", value) + self.assertEqual("euc-jp", value.original_value) + self.assertEqual("utf8", value.encode("utf8")) + + + def test_content_meta_attribute_value(self): + value = ContentMetaAttributeValue("text/html; charset=euc-jp") + self.assertEqual("text/html; charset=euc-jp", value) + self.assertEqual("text/html; charset=euc-jp", value.original_value) + self.assertEqual("text/html; charset=utf8", value.encode("utf8")) diff --git a/poky/bitbake/lib/bs4/tests/test_tree.py b/poky/bitbake/lib/bs4/tests/test_tree.py new file mode 100644 index 0000000..8e5c664 --- /dev/null +++ b/poky/bitbake/lib/bs4/tests/test_tree.py @@ -0,0 +1,2004 @@ +# -*- coding: utf-8 -*- +"""Tests for Beautiful Soup's tree traversal methods. + +The tree traversal methods are the main advantage of using Beautiful +Soup over just using a parser. + +Different parsers will build different Beautiful Soup trees given the +same markup, but all Beautiful Soup trees can be traversed with the +methods tested here. +""" + +import copy +import pickle +import re +import warnings +from bs4 import BeautifulSoup +from bs4.builder import builder_registry +from bs4.element import ( + PY3K, + CData, + Comment, + Declaration, + Doctype, + NavigableString, + SoupStrainer, + Tag, +) +from bs4.testing import SoupTest + +XML_BUILDER_PRESENT = (builder_registry.lookup("xml") is not None) +LXML_PRESENT = (builder_registry.lookup("lxml") is not None) + +class TreeTest(SoupTest): + + def assertSelects(self, tags, should_match): + """Make sure that the given tags have the correct text. + + This is used in tests that define a bunch of tags, each + containing a single string, and then select certain strings by + some mechanism. + """ + self.assertEqual([tag.string for tag in tags], should_match) + + def assertSelectsIDs(self, tags, should_match): + """Make sure that the given tags have the correct IDs. + + This is used in tests that define a bunch of tags, each + containing a single string, and then select certain strings by + some mechanism. + """ + self.assertEqual([tag['id'] for tag in tags], should_match) + + +class TestFind(TreeTest): + """Basic tests of the find() method. + + find() just calls find_all() with limit=1, so it's not tested all + that thouroughly here. + """ + + def test_find_tag(self): + soup = self.soup("1234") + self.assertEqual(soup.find("b").string, "2") + + def test_unicode_text_find(self): + soup = self.soup('

    Räksmörgås

    ') + self.assertEqual(soup.find(string='Räksmörgås'), 'Räksmörgås') + + def test_unicode_attribute_find(self): + soup = self.soup('

    here it is

    ') + str(soup) + self.assertEqual("here it is", soup.find(id='RäksmörgÃ¥s').text) + + + def test_find_everything(self): + """Test an optimization that finds all tags.""" + soup = self.soup("foobar") + self.assertEqual(2, len(soup.find_all())) + + def test_find_everything_with_name(self): + """Test an optimization that finds all tags with a given name.""" + soup = self.soup("foobarbaz") + self.assertEqual(2, len(soup.find_all('a'))) + +class TestFindAll(TreeTest): + """Basic tests of the find_all() method.""" + + def test_find_all_text_nodes(self): + """You can search the tree for text nodes.""" + soup = self.soup("Foobar\xbb") + # Exact match. + self.assertEqual(soup.find_all(string="bar"), ["bar"]) + self.assertEqual(soup.find_all(text="bar"), ["bar"]) + # Match any of a number of strings. + self.assertEqual( + soup.find_all(text=["Foo", "bar"]), ["Foo", "bar"]) + # Match a regular expression. + self.assertEqual(soup.find_all(text=re.compile('.*')), + ["Foo", "bar", '\xbb']) + # Match anything. + self.assertEqual(soup.find_all(text=True), + ["Foo", "bar", '\xbb']) + + def test_find_all_limit(self): + """You can limit the number of items returned by find_all.""" + soup = self.soup("12345") + self.assertSelects(soup.find_all('a', limit=3), ["1", "2", "3"]) + self.assertSelects(soup.find_all('a', limit=1), ["1"]) + self.assertSelects( + soup.find_all('a', limit=10), ["1", "2", "3", "4", "5"]) + + # A limit of 0 means no limit. + self.assertSelects( + soup.find_all('a', limit=0), ["1", "2", "3", "4", "5"]) + + def test_calling_a_tag_is_calling_findall(self): + soup = self.soup("123") + self.assertSelects(soup('a', limit=1), ["1"]) + self.assertSelects(soup.b(id="foo"), ["3"]) + + def test_find_all_with_self_referential_data_structure_does_not_cause_infinite_recursion(self): + soup = self.soup("") + # Create a self-referential list. + l = [] + l.append(l) + + # Without special code in _normalize_search_value, this would cause infinite + # recursion. + self.assertEqual([], soup.find_all(l)) + + def test_find_all_resultset(self): + """All find_all calls return a ResultSet""" + soup = self.soup("") + result = soup.find_all("a") + self.assertTrue(hasattr(result, "source")) + + result = soup.find_all(True) + self.assertTrue(hasattr(result, "source")) + + result = soup.find_all(text="foo") + self.assertTrue(hasattr(result, "source")) + + +class TestFindAllBasicNamespaces(TreeTest): + + def test_find_by_namespaced_name(self): + soup = self.soup('4') + self.assertEqual("4", soup.find("mathml:msqrt").string) + self.assertEqual("a", soup.find(attrs= { "svg:fill" : "red" }).name) + + +class TestFindAllByName(TreeTest): + """Test ways of finding tags by tag name.""" + + def setUp(self): + super(TreeTest, self).setUp() + self.tree = self.soup("""First tag. + Second tag. + Third Nested tag. tag.""") + + def test_find_all_by_tag_name(self): + # Find all the tags. + self.assertSelects( + self.tree.find_all('a'), ['First tag.', 'Nested tag.']) + + def test_find_all_by_name_and_text(self): + self.assertSelects( + self.tree.find_all('a', text='First tag.'), ['First tag.']) + + self.assertSelects( + self.tree.find_all('a', text=True), ['First tag.', 'Nested tag.']) + + self.assertSelects( + self.tree.find_all('a', text=re.compile("tag")), + ['First tag.', 'Nested tag.']) + + + def test_find_all_on_non_root_element(self): + # You can call find_all on any node, not just the root. + self.assertSelects(self.tree.c.find_all('a'), ['Nested tag.']) + + def test_calling_element_invokes_find_all(self): + self.assertSelects(self.tree('a'), ['First tag.', 'Nested tag.']) + + def test_find_all_by_tag_strainer(self): + self.assertSelects( + self.tree.find_all(SoupStrainer('a')), + ['First tag.', 'Nested tag.']) + + def test_find_all_by_tag_names(self): + self.assertSelects( + self.tree.find_all(['a', 'b']), + ['First tag.', 'Second tag.', 'Nested tag.']) + + def test_find_all_by_tag_dict(self): + self.assertSelects( + self.tree.find_all({'a' : True, 'b' : True}), + ['First tag.', 'Second tag.', 'Nested tag.']) + + def test_find_all_by_tag_re(self): + self.assertSelects( + self.tree.find_all(re.compile('^[ab]$')), + ['First tag.', 'Second tag.', 'Nested tag.']) + + def test_find_all_with_tags_matching_method(self): + # You can define an oracle method that determines whether + # a tag matches the search. + def id_matches_name(tag): + return tag.name == tag.get('id') + + tree = self.soup("""Match 1. + Does not match. + Match 2.""") + + self.assertSelects( + tree.find_all(id_matches_name), ["Match 1.", "Match 2."]) + + +class TestFindAllByAttribute(TreeTest): + + def test_find_all_by_attribute_name(self): + # You can pass in keyword arguments to find_all to search by + # attribute. + tree = self.soup(""" + Matching a. + + Non-matching Matching b.a. + """) + self.assertSelects(tree.find_all(id='first'), + ["Matching a.", "Matching b."]) + + def test_find_all_by_utf8_attribute_value(self): + peace = "×ולש".encode("utf8") + data = ''.encode("utf8") + soup = self.soup(data) + self.assertEqual([soup.a], soup.find_all(title=peace)) + self.assertEqual([soup.a], soup.find_all(title=peace.decode("utf8"))) + self.assertEqual([soup.a], soup.find_all(title=[peace, "something else"])) + + def test_find_all_by_attribute_dict(self): + # You can pass in a dictionary as the argument 'attrs'. This + # lets you search for attributes like 'name' (a fixed argument + # to find_all) and 'class' (a reserved word in Python.) + tree = self.soup(""" + Name match. + Class match. + Non-match. + A tag called 'name1'. + """) + + # This doesn't do what you want. + self.assertSelects(tree.find_all(name='name1'), + ["A tag called 'name1'."]) + # This does what you want. + self.assertSelects(tree.find_all(attrs={'name' : 'name1'}), + ["Name match."]) + + self.assertSelects(tree.find_all(attrs={'class' : 'class2'}), + ["Class match."]) + + def test_find_all_by_class(self): + tree = self.soup(""" + Class 1. + Class 2. + Class 1. + Class 3 and 4. + """) + + # Passing in the class_ keyword argument will search against + # the 'class' attribute. + self.assertSelects(tree.find_all('a', class_='1'), ['Class 1.']) + self.assertSelects(tree.find_all('c', class_='3'), ['Class 3 and 4.']) + self.assertSelects(tree.find_all('c', class_='4'), ['Class 3 and 4.']) + + # Passing in a string to 'attrs' will also search the CSS class. + self.assertSelects(tree.find_all('a', '1'), ['Class 1.']) + self.assertSelects(tree.find_all(attrs='1'), ['Class 1.', 'Class 1.']) + self.assertSelects(tree.find_all('c', '3'), ['Class 3 and 4.']) + self.assertSelects(tree.find_all('c', '4'), ['Class 3 and 4.']) + + def test_find_by_class_when_multiple_classes_present(self): + tree = self.soup("Found it") + + f = tree.find_all("gar", class_=re.compile("o")) + self.assertSelects(f, ["Found it"]) + + f = tree.find_all("gar", class_=re.compile("a")) + self.assertSelects(f, ["Found it"]) + + # Since the class is not the string "foo bar", but the two + # strings "foo" and "bar", this will not find anything. + f = tree.find_all("gar", class_=re.compile("o b")) + self.assertSelects(f, []) + + def test_find_all_with_non_dictionary_for_attrs_finds_by_class(self): + soup = self.soup("Found it") + + self.assertSelects(soup.find_all("a", re.compile("ba")), ["Found it"]) + + def big_attribute_value(value): + return len(value) > 3 + + self.assertSelects(soup.find_all("a", big_attribute_value), []) + + def small_attribute_value(value): + return len(value) <= 3 + + self.assertSelects( + soup.find_all("a", small_attribute_value), ["Found it"]) + + def test_find_all_with_string_for_attrs_finds_multiple_classes(self): + soup = self.soup('') + a, a2 = soup.find_all("a") + self.assertEqual([a, a2], soup.find_all("a", "foo")) + self.assertEqual([a], soup.find_all("a", "bar")) + + # If you specify the class as a string that contains a + # space, only that specific value will be found. + self.assertEqual([a], soup.find_all("a", class_="foo bar")) + self.assertEqual([a], soup.find_all("a", "foo bar")) + self.assertEqual([], soup.find_all("a", "bar foo")) + + def test_find_all_by_attribute_soupstrainer(self): + tree = self.soup(""" + Match. + Non-match.""") + + strainer = SoupStrainer(attrs={'id' : 'first'}) + self.assertSelects(tree.find_all(strainer), ['Match.']) + + def test_find_all_with_missing_atribute(self): + # You can pass in None as the value of an attribute to find_all. + # This will match tags that do not have that attribute set. + tree = self.soup("""ID present. + No ID present. + ID is empty.""") + self.assertSelects(tree.find_all('a', id=None), ["No ID present."]) + + def test_find_all_with_defined_attribute(self): + # You can pass in None as the value of an attribute to find_all. + # This will match tags that have that attribute set to any value. + tree = self.soup("""ID present. + No ID present. + ID is empty.""") + self.assertSelects( + tree.find_all(id=True), ["ID present.", "ID is empty."]) + + def test_find_all_with_numeric_attribute(self): + # If you search for a number, it's treated as a string. + tree = self.soup("""Unquoted attribute. + Quoted attribute.""") + + expected = ["Unquoted attribute.", "Quoted attribute."] + self.assertSelects(tree.find_all(id=1), expected) + self.assertSelects(tree.find_all(id="1"), expected) + + def test_find_all_with_list_attribute_values(self): + # You can pass a list of attribute values instead of just one, + # and you'll get tags that match any of the values. + tree = self.soup("""1 + 2 + 3 + No ID.""") + self.assertSelects(tree.find_all(id=["1", "3", "4"]), + ["1", "3"]) + + def test_find_all_with_regular_expression_attribute_value(self): + # You can pass a regular expression as an attribute value, and + # you'll get tags whose values for that attribute match the + # regular expression. + tree = self.soup("""One a. + Two as. + Mixed as and bs. + One b. + No ID.""") + + self.assertSelects(tree.find_all(id=re.compile("^a+$")), + ["One a.", "Two as."]) + + def test_find_by_name_and_containing_string(self): + soup = self.soup("foobarfoo") + a = soup.a + + self.assertEqual([a], soup.find_all("a", text="foo")) + self.assertEqual([], soup.find_all("a", text="bar")) + self.assertEqual([], soup.find_all("a", text="bar")) + + def test_find_by_name_and_containing_string_when_string_is_buried(self): + soup = self.soup("foofoo") + self.assertEqual(soup.find_all("a"), soup.find_all("a", text="foo")) + + def test_find_by_attribute_and_containing_string(self): + soup = self.soup('foofoo') + a = soup.a + + self.assertEqual([a], soup.find_all(id=2, text="foo")) + self.assertEqual([], soup.find_all(id=1, text="bar")) + + + + +class TestIndex(TreeTest): + """Test Tag.index""" + def test_index(self): + tree = self.soup("""
    + Identical + Not identical + Identical + + Identical with child + Also not identical + Identical with child +
    """) + div = tree.div + for i, element in enumerate(div.contents): + self.assertEqual(i, div.index(element)) + self.assertRaises(ValueError, tree.index, 1) + + +class TestParentOperations(TreeTest): + """Test navigation and searching through an element's parents.""" + + def setUp(self): + super(TestParentOperations, self).setUp() + self.tree = self.soup('''
      +
        +
          +
            + Start here +
          +
        ''') + self.start = self.tree.b + + + def test_parent(self): + self.assertEqual(self.start.parent['id'], 'bottom') + self.assertEqual(self.start.parent.parent['id'], 'middle') + self.assertEqual(self.start.parent.parent.parent['id'], 'top') + + def test_parent_of_top_tag_is_soup_object(self): + top_tag = self.tree.contents[0] + self.assertEqual(top_tag.parent, self.tree) + + def test_soup_object_has_no_parent(self): + self.assertEqual(None, self.tree.parent) + + def test_find_parents(self): + self.assertSelectsIDs( + self.start.find_parents('ul'), ['bottom', 'middle', 'top']) + self.assertSelectsIDs( + self.start.find_parents('ul', id="middle"), ['middle']) + + def test_find_parent(self): + self.assertEqual(self.start.find_parent('ul')['id'], 'bottom') + self.assertEqual(self.start.find_parent('ul', id='top')['id'], 'top') + + def test_parent_of_text_element(self): + text = self.tree.find(text="Start here") + self.assertEqual(text.parent.name, 'b') + + def test_text_element_find_parent(self): + text = self.tree.find(text="Start here") + self.assertEqual(text.find_parent('ul')['id'], 'bottom') + + def test_parent_generator(self): + parents = [parent['id'] for parent in self.start.parents + if parent is not None and 'id' in parent.attrs] + self.assertEqual(parents, ['bottom', 'middle', 'top']) + + +class ProximityTest(TreeTest): + + def setUp(self): + super(TreeTest, self).setUp() + self.tree = self.soup( + 'OneTwoThree') + + +class TestNextOperations(ProximityTest): + + def setUp(self): + super(TestNextOperations, self).setUp() + self.start = self.tree.b + + def test_next(self): + self.assertEqual(self.start.next_element, "One") + self.assertEqual(self.start.next_element.next_element['id'], "2") + + def test_next_of_last_item_is_none(self): + last = self.tree.find(text="Three") + self.assertEqual(last.next_element, None) + + def test_next_of_root_is_none(self): + # The document root is outside the next/previous chain. + self.assertEqual(self.tree.next_element, None) + + def test_find_all_next(self): + self.assertSelects(self.start.find_all_next('b'), ["Two", "Three"]) + self.start.find_all_next(id=3) + self.assertSelects(self.start.find_all_next(id=3), ["Three"]) + + def test_find_next(self): + self.assertEqual(self.start.find_next('b')['id'], '2') + self.assertEqual(self.start.find_next(text="Three"), "Three") + + def test_find_next_for_text_element(self): + text = self.tree.find(text="One") + self.assertEqual(text.find_next("b").string, "Two") + self.assertSelects(text.find_all_next("b"), ["Two", "Three"]) + + def test_next_generator(self): + start = self.tree.find(text="Two") + successors = [node for node in start.next_elements] + # There are two successors: the final tag and its text contents. + tag, contents = successors + self.assertEqual(tag['id'], '3') + self.assertEqual(contents, "Three") + +class TestPreviousOperations(ProximityTest): + + def setUp(self): + super(TestPreviousOperations, self).setUp() + self.end = self.tree.find(text="Three") + + def test_previous(self): + self.assertEqual(self.end.previous_element['id'], "3") + self.assertEqual(self.end.previous_element.previous_element, "Two") + + def test_previous_of_first_item_is_none(self): + first = self.tree.find('html') + self.assertEqual(first.previous_element, None) + + def test_previous_of_root_is_none(self): + # The document root is outside the next/previous chain. + # XXX This is broken! + #self.assertEqual(self.tree.previous_element, None) + pass + + def test_find_all_previous(self): + # The tag containing the "Three" node is the predecessor + # of the "Three" node itself, which is why "Three" shows up + # here. + self.assertSelects( + self.end.find_all_previous('b'), ["Three", "Two", "One"]) + self.assertSelects(self.end.find_all_previous(id=1), ["One"]) + + def test_find_previous(self): + self.assertEqual(self.end.find_previous('b')['id'], '3') + self.assertEqual(self.end.find_previous(text="One"), "One") + + def test_find_previous_for_text_element(self): + text = self.tree.find(text="Three") + self.assertEqual(text.find_previous("b").string, "Three") + self.assertSelects( + text.find_all_previous("b"), ["Three", "Two", "One"]) + + def test_previous_generator(self): + start = self.tree.find(text="One") + predecessors = [node for node in start.previous_elements] + + # There are four predecessors: the tag containing "One" + # the tag, the tag, and the tag. + b, body, head, html = predecessors + self.assertEqual(b['id'], '1') + self.assertEqual(body.name, "body") + self.assertEqual(head.name, "head") + self.assertEqual(html.name, "html") + + +class SiblingTest(TreeTest): + + def setUp(self): + super(SiblingTest, self).setUp() + markup = ''' + + + + + + + + + + + ''' + # All that whitespace looks good but makes the tests more + # difficult. Get rid of it. + markup = re.compile("\n\s*").sub("", markup) + self.tree = self.soup(markup) + + +class TestNextSibling(SiblingTest): + + def setUp(self): + super(TestNextSibling, self).setUp() + self.start = self.tree.find(id="1") + + def test_next_sibling_of_root_is_none(self): + self.assertEqual(self.tree.next_sibling, None) + + def test_next_sibling(self): + self.assertEqual(self.start.next_sibling['id'], '2') + self.assertEqual(self.start.next_sibling.next_sibling['id'], '3') + + # Note the difference between next_sibling and next_element. + self.assertEqual(self.start.next_element['id'], '1.1') + + def test_next_sibling_may_not_exist(self): + self.assertEqual(self.tree.html.next_sibling, None) + + nested_span = self.tree.find(id="1.1") + self.assertEqual(nested_span.next_sibling, None) + + last_span = self.tree.find(id="4") + self.assertEqual(last_span.next_sibling, None) + + def test_find_next_sibling(self): + self.assertEqual(self.start.find_next_sibling('span')['id'], '2') + + def test_next_siblings(self): + self.assertSelectsIDs(self.start.find_next_siblings("span"), + ['2', '3', '4']) + + self.assertSelectsIDs(self.start.find_next_siblings(id='3'), ['3']) + + def test_next_sibling_for_text_element(self): + soup = self.soup("Foobarbaz") + start = soup.find(text="Foo") + self.assertEqual(start.next_sibling.name, 'b') + self.assertEqual(start.next_sibling.next_sibling, 'baz') + + self.assertSelects(start.find_next_siblings('b'), ['bar']) + self.assertEqual(start.find_next_sibling(text="baz"), "baz") + self.assertEqual(start.find_next_sibling(text="nonesuch"), None) + + +class TestPreviousSibling(SiblingTest): + + def setUp(self): + super(TestPreviousSibling, self).setUp() + self.end = self.tree.find(id="4") + + def test_previous_sibling_of_root_is_none(self): + self.assertEqual(self.tree.previous_sibling, None) + + def test_previous_sibling(self): + self.assertEqual(self.end.previous_sibling['id'], '3') + self.assertEqual(self.end.previous_sibling.previous_sibling['id'], '2') + + # Note the difference between previous_sibling and previous_element. + self.assertEqual(self.end.previous_element['id'], '3.1') + + def test_previous_sibling_may_not_exist(self): + self.assertEqual(self.tree.html.previous_sibling, None) + + nested_span = self.tree.find(id="1.1") + self.assertEqual(nested_span.previous_sibling, None) + + first_span = self.tree.find(id="1") + self.assertEqual(first_span.previous_sibling, None) + + def test_find_previous_sibling(self): + self.assertEqual(self.end.find_previous_sibling('span')['id'], '3') + + def test_previous_siblings(self): + self.assertSelectsIDs(self.end.find_previous_siblings("span"), + ['3', '2', '1']) + + self.assertSelectsIDs(self.end.find_previous_siblings(id='1'), ['1']) + + def test_previous_sibling_for_text_element(self): + soup = self.soup("Foobarbaz") + start = soup.find(text="baz") + self.assertEqual(start.previous_sibling.name, 'b') + self.assertEqual(start.previous_sibling.previous_sibling, 'Foo') + + self.assertSelects(start.find_previous_siblings('b'), ['bar']) + self.assertEqual(start.find_previous_sibling(text="Foo"), "Foo") + self.assertEqual(start.find_previous_sibling(text="nonesuch"), None) + + +class TestTagCreation(SoupTest): + """Test the ability to create new tags.""" + def test_new_tag(self): + soup = self.soup("") + new_tag = soup.new_tag("foo", bar="baz") + self.assertTrue(isinstance(new_tag, Tag)) + self.assertEqual("foo", new_tag.name) + self.assertEqual(dict(bar="baz"), new_tag.attrs) + self.assertEqual(None, new_tag.parent) + + def test_tag_inherits_self_closing_rules_from_builder(self): + if XML_BUILDER_PRESENT: + xml_soup = BeautifulSoup("", "lxml-xml") + xml_br = xml_soup.new_tag("br") + xml_p = xml_soup.new_tag("p") + + # Both the
        and

        tag are empty-element, just because + # they have no contents. + self.assertEqual(b"
        ", xml_br.encode()) + self.assertEqual(b"

        ", xml_p.encode()) + + html_soup = BeautifulSoup("", "html.parser") + html_br = html_soup.new_tag("br") + html_p = html_soup.new_tag("p") + + # The HTML builder users HTML's rules about which tags are + # empty-element tags, and the new tags reflect these rules. + self.assertEqual(b"
        ", html_br.encode()) + self.assertEqual(b"

        ", html_p.encode()) + + def test_new_string_creates_navigablestring(self): + soup = self.soup("") + s = soup.new_string("foo") + self.assertEqual("foo", s) + self.assertTrue(isinstance(s, NavigableString)) + + def test_new_string_can_create_navigablestring_subclass(self): + soup = self.soup("") + s = soup.new_string("foo", Comment) + self.assertEqual("foo", s) + self.assertTrue(isinstance(s, Comment)) + +class TestTreeModification(SoupTest): + + def test_attribute_modification(self): + soup = self.soup('') + soup.a['id'] = 2 + self.assertEqual(soup.decode(), self.document_for('')) + del(soup.a['id']) + self.assertEqual(soup.decode(), self.document_for('')) + soup.a['id2'] = 'foo' + self.assertEqual(soup.decode(), self.document_for('')) + + def test_new_tag_creation(self): + builder = builder_registry.lookup('html')() + soup = self.soup("", builder=builder) + a = Tag(soup, builder, 'a') + ol = Tag(soup, builder, 'ol') + a['href'] = 'http://foo.com/' + soup.body.insert(0, a) + soup.body.insert(1, ol) + self.assertEqual( + soup.body.encode(), + b'
          ') + + def test_append_to_contents_moves_tag(self): + doc = """

          Don't leave me here.

          +

          Don\'t leave!

          """ + soup = self.soup(doc) + second_para = soup.find(id='2') + bold = soup.b + + # Move the tag to the end of the second paragraph. + soup.find(id='2').append(soup.b) + + # The tag is now a child of the second paragraph. + self.assertEqual(bold.parent, second_para) + + self.assertEqual( + soup.decode(), self.document_for( + '

          Don\'t leave me .

          \n' + '

          Don\'t leave!here

          ')) + + def test_replace_with_returns_thing_that_was_replaced(self): + text = "" + soup = self.soup(text) + a = soup.a + new_a = a.replace_with(soup.c) + self.assertEqual(a, new_a) + + def test_unwrap_returns_thing_that_was_replaced(self): + text = "" + soup = self.soup(text) + a = soup.a + new_a = a.unwrap() + self.assertEqual(a, new_a) + + def test_replace_with_and_unwrap_give_useful_exception_when_tag_has_no_parent(self): + soup = self.soup("FooBar") + a = soup.a + a.extract() + self.assertEqual(None, a.parent) + self.assertRaises(ValueError, a.unwrap) + self.assertRaises(ValueError, a.replace_with, soup.c) + + def test_replace_tag_with_itself(self): + text = "Foo" + soup = self.soup(text) + c = soup.c + soup.c.replace_with(c) + self.assertEqual(soup.decode(), self.document_for(text)) + + def test_replace_tag_with_its_parent_raises_exception(self): + text = "" + soup = self.soup(text) + self.assertRaises(ValueError, soup.b.replace_with, soup.a) + + def test_insert_tag_into_itself_raises_exception(self): + text = "" + soup = self.soup(text) + self.assertRaises(ValueError, soup.a.insert, 0, soup.a) + + def test_replace_with_maintains_next_element_throughout(self): + soup = self.soup('

          onethree

          ') + a = soup.a + b = a.contents[0] + # Make it so the tag has two text children. + a.insert(1, "two") + + # Now replace each one with the empty string. + left, right = a.contents + left.replaceWith('') + right.replaceWith('') + + # The tag is still connected to the tree. + self.assertEqual("three", soup.b.string) + + def test_replace_final_node(self): + soup = self.soup("Argh!") + soup.find(text="Argh!").replace_with("Hooray!") + new_text = soup.find(text="Hooray!") + b = soup.b + self.assertEqual(new_text.previous_element, b) + self.assertEqual(new_text.parent, b) + self.assertEqual(new_text.previous_element.next_element, new_text) + self.assertEqual(new_text.next_element, None) + + def test_consecutive_text_nodes(self): + # A builder should never create two consecutive text nodes, + # but if you insert one next to another, Beautiful Soup will + # handle it correctly. + soup = self.soup("Argh!") + soup.b.insert(1, "Hooray!") + + self.assertEqual( + soup.decode(), self.document_for( + "Argh!Hooray!")) + + new_text = soup.find(text="Hooray!") + self.assertEqual(new_text.previous_element, "Argh!") + self.assertEqual(new_text.previous_element.next_element, new_text) + + self.assertEqual(new_text.previous_sibling, "Argh!") + self.assertEqual(new_text.previous_sibling.next_sibling, new_text) + + self.assertEqual(new_text.next_sibling, None) + self.assertEqual(new_text.next_element, soup.c) + + def test_insert_string(self): + soup = self.soup("") + soup.a.insert(0, "bar") + soup.a.insert(0, "foo") + # The string were added to the tag. + self.assertEqual(["foo", "bar"], soup.a.contents) + # And they were converted to NavigableStrings. + self.assertEqual(soup.a.contents[0].next_element, "bar") + + def test_insert_tag(self): + builder = self.default_builder + soup = self.soup( + "Findlady!", builder=builder) + magic_tag = Tag(soup, builder, 'magictag') + magic_tag.insert(0, "the") + soup.a.insert(1, magic_tag) + + self.assertEqual( + soup.decode(), self.document_for( + "Findthelady!")) + + # Make sure all the relationships are hooked up correctly. + b_tag = soup.b + self.assertEqual(b_tag.next_sibling, magic_tag) + self.assertEqual(magic_tag.previous_sibling, b_tag) + + find = b_tag.find(text="Find") + self.assertEqual(find.next_element, magic_tag) + self.assertEqual(magic_tag.previous_element, find) + + c_tag = soup.c + self.assertEqual(magic_tag.next_sibling, c_tag) + self.assertEqual(c_tag.previous_sibling, magic_tag) + + the = magic_tag.find(text="the") + self.assertEqual(the.parent, magic_tag) + self.assertEqual(the.next_element, c_tag) + self.assertEqual(c_tag.previous_element, the) + + def test_append_child_thats_already_at_the_end(self): + data = "" + soup = self.soup(data) + soup.a.append(soup.b) + self.assertEqual(data, soup.decode()) + + def test_move_tag_to_beginning_of_parent(self): + data = "" + soup = self.soup(data) + soup.a.insert(0, soup.d) + self.assertEqual("", soup.decode()) + + def test_insert_works_on_empty_element_tag(self): + # This is a little strange, since most HTML parsers don't allow + # markup like this to come through. But in general, we don't + # know what the parser would or wouldn't have allowed, so + # I'm letting this succeed for now. + soup = self.soup("
          ") + soup.br.insert(1, "Contents") + self.assertEqual(str(soup.br), "
          Contents
          ") + + def test_insert_before(self): + soup = self.soup("foobar") + soup.b.insert_before("BAZ") + soup.a.insert_before("QUUX") + self.assertEqual( + soup.decode(), self.document_for("QUUXfooBAZbar")) + + soup.a.insert_before(soup.b) + self.assertEqual( + soup.decode(), self.document_for("QUUXbarfooBAZ")) + + def test_insert_after(self): + soup = self.soup("foobar") + soup.b.insert_after("BAZ") + soup.a.insert_after("QUUX") + self.assertEqual( + soup.decode(), self.document_for("fooQUUXbarBAZ")) + soup.b.insert_after(soup.a) + self.assertEqual( + soup.decode(), self.document_for("QUUXbarfooBAZ")) + + def test_insert_after_raises_exception_if_after_has_no_meaning(self): + soup = self.soup("") + tag = soup.new_tag("a") + string = soup.new_string("") + self.assertRaises(ValueError, string.insert_after, tag) + self.assertRaises(NotImplementedError, soup.insert_after, tag) + self.assertRaises(ValueError, tag.insert_after, tag) + + def test_insert_before_raises_notimplementederror_if_before_has_no_meaning(self): + soup = self.soup("") + tag = soup.new_tag("a") + string = soup.new_string("") + self.assertRaises(ValueError, string.insert_before, tag) + self.assertRaises(NotImplementedError, soup.insert_before, tag) + self.assertRaises(ValueError, tag.insert_before, tag) + + def test_replace_with(self): + soup = self.soup( + "

          There's no business like show business

          ") + no, show = soup.find_all('b') + show.replace_with(no) + self.assertEqual( + soup.decode(), + self.document_for( + "

          There's business like no business

          ")) + + self.assertEqual(show.parent, None) + self.assertEqual(no.parent, soup.p) + self.assertEqual(no.next_element, "no") + self.assertEqual(no.next_sibling, " business") + + def test_replace_first_child(self): + data = "" + soup = self.soup(data) + soup.b.replace_with(soup.c) + self.assertEqual("", soup.decode()) + + def test_replace_last_child(self): + data = "" + soup = self.soup(data) + soup.c.replace_with(soup.b) + self.assertEqual("", soup.decode()) + + def test_nested_tag_replace_with(self): + soup = self.soup( + """Wereservetherighttorefuseservice""") + + # Replace the entire tag and its contents ("reserve the + # right") with the tag ("refuse"). + remove_tag = soup.b + move_tag = soup.f + remove_tag.replace_with(move_tag) + + self.assertEqual( + soup.decode(), self.document_for( + "Werefusetoservice")) + + # The tag is now an orphan. + self.assertEqual(remove_tag.parent, None) + self.assertEqual(remove_tag.find(text="right").next_element, None) + self.assertEqual(remove_tag.previous_element, None) + self.assertEqual(remove_tag.next_sibling, None) + self.assertEqual(remove_tag.previous_sibling, None) + + # The tag is now connected to the tag. + self.assertEqual(move_tag.parent, soup.a) + self.assertEqual(move_tag.previous_element, "We") + self.assertEqual(move_tag.next_element.next_element, soup.e) + self.assertEqual(move_tag.next_sibling, None) + + # The gap where the tag used to be has been mended, and + # the word "to" is now connected to the tag. + to_text = soup.find(text="to") + g_tag = soup.g + self.assertEqual(to_text.next_element, g_tag) + self.assertEqual(to_text.next_sibling, g_tag) + self.assertEqual(g_tag.previous_element, to_text) + self.assertEqual(g_tag.previous_sibling, to_text) + + def test_unwrap(self): + tree = self.soup(""" +

          Unneeded formatting is unneeded

          + """) + tree.em.unwrap() + self.assertEqual(tree.em, None) + self.assertEqual(tree.p.text, "Unneeded formatting is unneeded") + + def test_wrap(self): + soup = self.soup("I wish I was bold.") + value = soup.string.wrap(soup.new_tag("b")) + self.assertEqual(value.decode(), "I wish I was bold.") + self.assertEqual( + soup.decode(), self.document_for("I wish I was bold.")) + + def test_wrap_extracts_tag_from_elsewhere(self): + soup = self.soup("I wish I was bold.") + soup.b.next_sibling.wrap(soup.b) + self.assertEqual( + soup.decode(), self.document_for("I wish I was bold.")) + + def test_wrap_puts_new_contents_at_the_end(self): + soup = self.soup("I like being bold.I wish I was bold.") + soup.b.next_sibling.wrap(soup.b) + self.assertEqual(2, len(soup.b.contents)) + self.assertEqual( + soup.decode(), self.document_for( + "I like being bold.I wish I was bold.")) + + def test_extract(self): + soup = self.soup( + 'Some content. More content.') + + self.assertEqual(len(soup.body.contents), 3) + extracted = soup.find(id="nav").extract() + + self.assertEqual( + soup.decode(), "Some content. More content.") + self.assertEqual(extracted.decode(), '') + + # The extracted tag is now an orphan. + self.assertEqual(len(soup.body.contents), 2) + self.assertEqual(extracted.parent, None) + self.assertEqual(extracted.previous_element, None) + self.assertEqual(extracted.next_element.next_element, None) + + # The gap where the extracted tag used to be has been mended. + content_1 = soup.find(text="Some content. ") + content_2 = soup.find(text=" More content.") + self.assertEqual(content_1.next_element, content_2) + self.assertEqual(content_1.next_sibling, content_2) + self.assertEqual(content_2.previous_element, content_1) + self.assertEqual(content_2.previous_sibling, content_1) + + def test_extract_distinguishes_between_identical_strings(self): + soup = self.soup("
          foobar") + foo_1 = soup.a.string + bar_1 = soup.b.string + foo_2 = soup.new_string("foo") + bar_2 = soup.new_string("bar") + soup.a.append(foo_2) + soup.b.append(bar_2) + + # Now there are two identical strings in the tag, and two + # in the tag. Let's remove the first "foo" and the second + # "bar". + foo_1.extract() + bar_2.extract() + self.assertEqual(foo_2, soup.a.string) + self.assertEqual(bar_2, soup.b.string) + + def test_extract_multiples_of_same_tag(self): + soup = self.soup(""" + + + + + + + + + +""") + [soup.script.extract() for i in soup.find_all("script")] + self.assertEqual("\n\n\n", str(soup.body)) + + + def test_extract_works_when_element_is_surrounded_by_identical_strings(self): + soup = self.soup( + '\n' + 'hi\n' + '') + soup.find('body').extract() + self.assertEqual(None, soup.find('body')) + + + def test_clear(self): + """Tag.clear()""" + soup = self.soup("

          String Italicized and another

          ") + # clear using extract() + a = soup.a + soup.p.clear() + self.assertEqual(len(soup.p.contents), 0) + self.assertTrue(hasattr(a, "contents")) + + # clear using decompose() + em = a.em + a.clear(decompose=True) + self.assertEqual(0, len(em.contents)) + + def test_string_set(self): + """Tag.string = 'string'""" + soup = self.soup(" ") + soup.a.string = "foo" + self.assertEqual(soup.a.contents, ["foo"]) + soup.b.string = "bar" + self.assertEqual(soup.b.contents, ["bar"]) + + def test_string_set_does_not_affect_original_string(self): + soup = self.soup("foobar") + soup.b.string = soup.c.string + self.assertEqual(soup.a.encode(), b"barbar") + + def test_set_string_preserves_class_of_string(self): + soup = self.soup("") + cdata = CData("foo") + soup.a.string = cdata + self.assertTrue(isinstance(soup.a.string, CData)) + +class TestElementObjects(SoupTest): + """Test various features of element objects.""" + + def test_len(self): + """The length of an element is its number of children.""" + soup = self.soup("123") + + # The BeautifulSoup object itself contains one element: the + # tag. + self.assertEqual(len(soup.contents), 1) + self.assertEqual(len(soup), 1) + + # The tag contains three elements: the text node "1", the + # tag, and the text node "3". + self.assertEqual(len(soup.top), 3) + self.assertEqual(len(soup.top.contents), 3) + + def test_member_access_invokes_find(self): + """Accessing a Python member .foo invokes find('foo')""" + soup = self.soup('') + self.assertEqual(soup.b, soup.find('b')) + self.assertEqual(soup.b.i, soup.find('b').find('i')) + self.assertEqual(soup.a, None) + + def test_deprecated_member_access(self): + soup = self.soup('') + with warnings.catch_warnings(record=True) as w: + tag = soup.bTag + self.assertEqual(soup.b, tag) + self.assertEqual( + '.bTag is deprecated, use .find("b") instead.', + str(w[0].message)) + + def test_has_attr(self): + """has_attr() checks for the presence of an attribute. + + Please note note: has_attr() is different from + __in__. has_attr() checks the tag's attributes and __in__ + checks the tag's chidlren. + """ + soup = self.soup("") + self.assertTrue(soup.foo.has_attr('attr')) + self.assertFalse(soup.foo.has_attr('attr2')) + + + def test_attributes_come_out_in_alphabetical_order(self): + markup = '' + self.assertSoupEquals(markup, '') + + def test_string(self): + # A tag that contains only a text node makes that node + # available as .string. + soup = self.soup("foo") + self.assertEqual(soup.b.string, 'foo') + + def test_empty_tag_has_no_string(self): + # A tag with no children has no .stirng. + soup = self.soup("") + self.assertEqual(soup.b.string, None) + + def test_tag_with_multiple_children_has_no_string(self): + # A tag with no children has no .string. + soup = self.soup("foo") + self.assertEqual(soup.b.string, None) + + soup = self.soup("foobar
          ") + self.assertEqual(soup.b.string, None) + + # Even if all the children are strings, due to trickery, + # it won't work--but this would be a good optimization. + soup = self.soup("foo
          ") + soup.a.insert(1, "bar") + self.assertEqual(soup.a.string, None) + + def test_tag_with_recursive_string_has_string(self): + # A tag with a single child which has a .string inherits that + # .string. + soup = self.soup("foo") + self.assertEqual(soup.a.string, "foo") + self.assertEqual(soup.string, "foo") + + def test_lack_of_string(self): + """Only a tag containing a single text node has a .string.""" + soup = self.soup("feo") + self.assertFalse(soup.b.string) + + soup = self.soup("") + self.assertFalse(soup.b.string) + + def test_all_text(self): + """Tag.text and Tag.get_text(sep=u"") -> all child text, concatenated""" + soup = self.soup("ar t ") + self.assertEqual(soup.a.text, "ar t ") + self.assertEqual(soup.a.get_text(strip=True), "art") + self.assertEqual(soup.a.get_text(","), "a,r, , t ") + self.assertEqual(soup.a.get_text(",", strip=True), "a,r,t") + + def test_get_text_ignores_comments(self): + soup = self.soup("foobar") + self.assertEqual(soup.get_text(), "foobar") + + self.assertEqual( + soup.get_text(types=(NavigableString, Comment)), "fooIGNOREbar") + self.assertEqual( + soup.get_text(types=None), "fooIGNOREbar") + + def test_all_strings_ignores_comments(self): + soup = self.soup("foobar") + self.assertEqual(['foo', 'bar'], list(soup.strings)) + +class TestCDAtaListAttributes(SoupTest): + + """Testing cdata-list attributes like 'class'. + """ + def test_single_value_becomes_list(self): + soup = self.soup("") + self.assertEqual(["foo"],soup.a['class']) + + def test_multiple_values_becomes_list(self): + soup = self.soup("") + self.assertEqual(["foo", "bar"], soup.a['class']) + + def test_multiple_values_separated_by_weird_whitespace(self): + soup = self.soup("") + self.assertEqual(["foo", "bar", "baz"],soup.a['class']) + + def test_attributes_joined_into_string_on_output(self): + soup = self.soup("") + self.assertEqual(b'', soup.a.encode()) + + def test_accept_charset(self): + soup = self.soup('
          ') + self.assertEqual(['ISO-8859-1', 'UTF-8'], soup.form['accept-charset']) + + def test_cdata_attribute_applying_only_to_one_tag(self): + data = '' + soup = self.soup(data) + # We saw in another test that accept-charset is a cdata-list + # attribute for the tag. But it's not a cdata-list + # attribute for any other tag. + self.assertEqual('ISO-8859-1 UTF-8', soup.a['accept-charset']) + + def test_string_has_immutable_name_property(self): + string = self.soup("s").string + self.assertEqual(None, string.name) + def t(): + string.name = 'foo' + self.assertRaises(AttributeError, t) + +class TestPersistence(SoupTest): + "Testing features like pickle and deepcopy." + + def setUp(self): + super(TestPersistence, self).setUp() + self.page = """ + + + +Beautiful Soup: We called him Tortoise because he taught us. + + + + + + +foo +bar + +""" + self.tree = self.soup(self.page) + + def test_pickle_and_unpickle_identity(self): + # Pickling a tree, then unpickling it, yields a tree identical + # to the original. + dumped = pickle.dumps(self.tree, 2) + loaded = pickle.loads(dumped) + self.assertEqual(loaded.__class__, BeautifulSoup) + self.assertEqual(loaded.decode(), self.tree.decode()) + + def test_deepcopy_identity(self): + # Making a deepcopy of a tree yields an identical tree. + copied = copy.deepcopy(self.tree) + self.assertEqual(copied.decode(), self.tree.decode()) + + def test_unicode_pickle(self): + # A tree containing Unicode characters can be pickled. + html = "\N{SNOWMAN}" + soup = self.soup(html) + dumped = pickle.dumps(soup, pickle.HIGHEST_PROTOCOL) + loaded = pickle.loads(dumped) + self.assertEqual(loaded.decode(), soup.decode()) + + def test_copy_navigablestring_is_not_attached_to_tree(self): + html = "FooBar" + soup = self.soup(html) + s1 = soup.find(string="Foo") + s2 = copy.copy(s1) + self.assertEqual(s1, s2) + self.assertEqual(None, s2.parent) + self.assertEqual(None, s2.next_element) + self.assertNotEqual(None, s1.next_sibling) + self.assertEqual(None, s2.next_sibling) + self.assertEqual(None, s2.previous_element) + + def test_copy_navigablestring_subclass_has_same_type(self): + html = "" + soup = self.soup(html) + s1 = soup.string + s2 = copy.copy(s1) + self.assertEqual(s1, s2) + self.assertTrue(isinstance(s2, Comment)) + + def test_copy_entire_soup(self): + html = "
          FooBar
          end" + soup = self.soup(html) + soup_copy = copy.copy(soup) + self.assertEqual(soup, soup_copy) + + def test_copy_tag_copies_contents(self): + html = "
          FooBar
          end" + soup = self.soup(html) + div = soup.div + div_copy = copy.copy(div) + + # The two tags look the same, and evaluate to equal. + self.assertEqual(str(div), str(div_copy)) + self.assertEqual(div, div_copy) + + # But they're not the same object. + self.assertFalse(div is div_copy) + + # And they don't have the same relation to the parse tree. The + # copy is not associated with a parse tree at all. + self.assertEqual(None, div_copy.parent) + self.assertEqual(None, div_copy.previous_element) + self.assertEqual(None, div_copy.find(string='Bar').next_element) + self.assertNotEqual(None, div.find(string='Bar').next_element) + +class TestSubstitutions(SoupTest): + + def test_default_formatter_is_minimal(self): + markup = "<<Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>" + soup = self.soup(markup) + decoded = soup.decode(formatter="minimal") + # The < is converted back into < but the e-with-acute is left alone. + self.assertEqual( + decoded, + self.document_for( + "<<Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>")) + + def test_formatter_html(self): + markup = "<<Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>" + soup = self.soup(markup) + decoded = soup.decode(formatter="html") + self.assertEqual( + decoded, + self.document_for("<<Sacré bleu!>>")) + + def test_formatter_minimal(self): + markup = "<<Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>" + soup = self.soup(markup) + decoded = soup.decode(formatter="minimal") + # The < is converted back into < but the e-with-acute is left alone. + self.assertEqual( + decoded, + self.document_for( + "<<Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>")) + + def test_formatter_null(self): + markup = "<<Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!>>" + soup = self.soup(markup) + decoded = soup.decode(formatter=None) + # Neither the angle brackets nor the e-with-acute are converted. + # This is not valid HTML, but it's what the user wanted. + self.assertEqual(decoded, + self.document_for("<>")) + + def test_formatter_custom(self): + markup = "<foo>bar" + soup = self.soup(markup) + decoded = soup.decode(formatter = lambda x: x.upper()) + # Instead of normal entity conversion code, the custom + # callable is called on every string. + self.assertEqual( + decoded, + self.document_for("BAR")) + + def test_formatter_is_run_on_attribute_values(self): + markup = 'e' + soup = self.soup(markup) + a = soup.a + + expect_minimal = 'e' + + self.assertEqual(expect_minimal, a.decode()) + self.assertEqual(expect_minimal, a.decode(formatter="minimal")) + + expect_html = 'e' + self.assertEqual(expect_html, a.decode(formatter="html")) + + self.assertEqual(markup, a.decode(formatter=None)) + expect_upper = 'E' + self.assertEqual(expect_upper, a.decode(formatter=lambda x: x.upper())) + + def test_formatter_skips_script_tag_for_html_documents(self): + doc = """ + +""" + encoded = BeautifulSoup(doc, 'html.parser').encode() + self.assertTrue(b"< < hey > >" in encoded) + + def test_formatter_skips_style_tag_for_html_documents(self): + doc = """ + +""" + encoded = BeautifulSoup(doc, 'html.parser').encode() + self.assertTrue(b"< < hey > >" in encoded) + + def test_prettify_leaves_preformatted_text_alone(self): + soup = self.soup("
          foo
            \tbar\n  \n  
          baz ") + # Everything outside the
           tag is reformatted, but everything
          +        # inside is left alone.
          +        self.assertEqual(
          +            '
          \n foo\n
            \tbar\n  \n  
          \n baz\n
          ', + soup.div.prettify()) + + def test_prettify_accepts_formatter(self): + soup = BeautifulSoup("foo", 'html.parser') + pretty = soup.prettify(formatter = lambda x: x.upper()) + self.assertTrue("FOO" in pretty) + + def test_prettify_outputs_unicode_by_default(self): + soup = self.soup("") + self.assertEqual(str, type(soup.prettify())) + + def test_prettify_can_encode_data(self): + soup = self.soup("") + self.assertEqual(bytes, type(soup.prettify("utf-8"))) + + def test_html_entity_substitution_off_by_default(self): + markup = "Sacr\N{LATIN SMALL LETTER E WITH ACUTE} bleu!" + soup = self.soup(markup) + encoded = soup.b.encode("utf-8") + self.assertEqual(encoded, markup.encode('utf-8')) + + def test_encoding_substitution(self): + # Here's the tag saying that a document is + # encoded in Shift-JIS. + meta_tag = ('') + soup = self.soup(meta_tag) + + # Parse the document, and the charset apprears unchanged. + self.assertEqual(soup.meta['content'], 'text/html; charset=x-sjis') + + # Encode the document into some encoding, and the encoding is + # substituted into the meta tag. + utf_8 = soup.encode("utf-8") + self.assertTrue(b"charset=utf-8" in utf_8) + + euc_jp = soup.encode("euc_jp") + self.assertTrue(b"charset=euc_jp" in euc_jp) + + shift_jis = soup.encode("shift-jis") + self.assertTrue(b"charset=shift-jis" in shift_jis) + + utf_16_u = soup.encode("utf-16").decode("utf-16") + self.assertTrue("charset=utf-16" in utf_16_u) + + def test_encoding_substitution_doesnt_happen_if_tag_is_strained(self): + markup = ('
          foo
          ') + + # Beautiful Soup used to try to rewrite the meta tag even if the + # meta tag got filtered out by the strainer. This test makes + # sure that doesn't happen. + strainer = SoupStrainer('pre') + soup = self.soup(markup, parse_only=strainer) + self.assertEqual(soup.contents[0].name, 'pre') + +class TestEncoding(SoupTest): + """Test the ability to encode objects into strings.""" + + def test_unicode_string_can_be_encoded(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertEqual(soup.b.string.encode("utf-8"), + "\N{SNOWMAN}".encode("utf-8")) + + def test_tag_containing_unicode_string_can_be_encoded(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertEqual( + soup.b.encode("utf-8"), html.encode("utf-8")) + + def test_encoding_substitutes_unrecognized_characters_by_default(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertEqual(soup.b.encode("ascii"), b"") + + def test_encoding_can_be_made_strict(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertRaises( + UnicodeEncodeError, soup.encode, "ascii", errors="strict") + + def test_decode_contents(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertEqual("\N{SNOWMAN}", soup.b.decode_contents()) + + def test_encode_contents(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertEqual( + "\N{SNOWMAN}".encode("utf8"), soup.b.encode_contents( + encoding="utf8")) + + def test_deprecated_renderContents(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + self.assertEqual( + "\N{SNOWMAN}".encode("utf8"), soup.b.renderContents()) + + def test_repr(self): + html = "\N{SNOWMAN}" + soup = self.soup(html) + if PY3K: + self.assertEqual(html, repr(soup)) + else: + self.assertEqual(b'\\u2603', repr(soup)) + +class TestNavigableStringSubclasses(SoupTest): + + def test_cdata(self): + # None of the current builders turn CDATA sections into CData + # objects, but you can create them manually. + soup = self.soup("") + cdata = CData("foo") + soup.insert(1, cdata) + self.assertEqual(str(soup), "") + self.assertEqual(soup.find(text="foo"), "foo") + self.assertEqual(soup.contents[0], "foo") + + def test_cdata_is_never_formatted(self): + """Text inside a CData object is passed into the formatter. + + But the return value is ignored. + """ + + self.count = 0 + def increment(*args): + self.count += 1 + return "BITTER FAILURE" + + soup = self.soup("") + cdata = CData("<><><>") + soup.insert(1, cdata) + self.assertEqual( + b"<><>]]>", soup.encode(formatter=increment)) + self.assertEqual(1, self.count) + + def test_doctype_ends_in_newline(self): + # Unlike other NavigableString subclasses, a DOCTYPE always ends + # in a newline. + doctype = Doctype("foo") + soup = self.soup("") + soup.insert(1, doctype) + self.assertEqual(soup.encode(), b"\n") + + def test_declaration(self): + d = Declaration("foo") + self.assertEqual("", d.output_ready()) + +class TestSoupSelector(TreeTest): + + HTML = """ + + + +The title + + + +Hello there. +
          +
          +

          An H1

          +

          Some text

          +

          Some more text

          +

          An H2

          +

          Another

          +Bob +

          Another H2

          +me + +span1a1 +span1a2 test + +span2a1 + + + +
          + +
          + + + + + + + + +

          English

          +

          English UK

          +

          English US

          +

          French

          +
          + + +""" + + def setUp(self): + self.soup = BeautifulSoup(self.HTML, 'html.parser') + + def assertSelects(self, selector, expected_ids): + el_ids = [el['id'] for el in self.soup.select(selector)] + el_ids.sort() + expected_ids.sort() + self.assertEqual(expected_ids, el_ids, + "Selector %s, expected [%s], got [%s]" % ( + selector, ', '.join(expected_ids), ', '.join(el_ids) + ) + ) + + assertSelect = assertSelects + + def assertSelectMultiple(self, *tests): + for selector, expected_ids in tests: + self.assertSelect(selector, expected_ids) + + def test_one_tag_one(self): + els = self.soup.select('title') + self.assertEqual(len(els), 1) + self.assertEqual(els[0].name, 'title') + self.assertEqual(els[0].contents, ['The title']) + + def test_one_tag_many(self): + els = self.soup.select('div') + self.assertEqual(len(els), 4) + for div in els: + self.assertEqual(div.name, 'div') + + el = self.soup.select_one('div') + self.assertEqual('main', el['id']) + + def test_select_one_returns_none_if_no_match(self): + match = self.soup.select_one('nonexistenttag') + self.assertEqual(None, match) + + + def test_tag_in_tag_one(self): + els = self.soup.select('div div') + self.assertSelects('div div', ['inner', 'data1']) + + def test_tag_in_tag_many(self): + for selector in ('html div', 'html body div', 'body div'): + self.assertSelects(selector, ['data1', 'main', 'inner', 'footer']) + + def test_tag_no_match(self): + self.assertEqual(len(self.soup.select('del')), 0) + + def test_invalid_tag(self): + self.assertRaises(ValueError, self.soup.select, 'tag%t') + + def test_select_dashed_tag_ids(self): + self.assertSelects('custom-dashed-tag', ['dash1', 'dash2']) + + def test_select_dashed_by_id(self): + dashed = self.soup.select('custom-dashed-tag[id=\"dash2\"]') + self.assertEqual(dashed[0].name, 'custom-dashed-tag') + self.assertEqual(dashed[0]['id'], 'dash2') + + def test_dashed_tag_text(self): + self.assertEqual(self.soup.select('body > custom-dashed-tag')[0].text, 'Hello there.') + + def test_select_dashed_matches_find_all(self): + self.assertEqual(self.soup.select('custom-dashed-tag'), self.soup.find_all('custom-dashed-tag')) + + def test_header_tags(self): + self.assertSelectMultiple( + ('h1', ['header1']), + ('h2', ['header2', 'header3']), + ) + + def test_class_one(self): + for selector in ('.onep', 'p.onep', 'html p.onep'): + els = self.soup.select(selector) + self.assertEqual(len(els), 1) + self.assertEqual(els[0].name, 'p') + self.assertEqual(els[0]['class'], ['onep']) + + def test_class_mismatched_tag(self): + els = self.soup.select('div.onep') + self.assertEqual(len(els), 0) + + def test_one_id(self): + for selector in ('div#inner', '#inner', 'div div#inner'): + self.assertSelects(selector, ['inner']) + + def test_bad_id(self): + els = self.soup.select('#doesnotexist') + self.assertEqual(len(els), 0) + + def test_items_in_id(self): + els = self.soup.select('div#inner p') + self.assertEqual(len(els), 3) + for el in els: + self.assertEqual(el.name, 'p') + self.assertEqual(els[1]['class'], ['onep']) + self.assertFalse(els[0].has_attr('class')) + + def test_a_bunch_of_emptys(self): + for selector in ('div#main del', 'div#main div.oops', 'div div#main'): + self.assertEqual(len(self.soup.select(selector)), 0) + + def test_multi_class_support(self): + for selector in ('.class1', 'p.class1', '.class2', 'p.class2', + '.class3', 'p.class3', 'html p.class2', 'div#inner .class2'): + self.assertSelects(selector, ['pmulti']) + + def test_multi_class_selection(self): + for selector in ('.class1.class3', '.class3.class2', + '.class1.class2.class3'): + self.assertSelects(selector, ['pmulti']) + + def test_child_selector(self): + self.assertSelects('.s1 > a', ['s1a1', 's1a2']) + self.assertSelects('.s1 > a span', ['s1a2s1']) + + def test_child_selector_id(self): + self.assertSelects('.s1 > a#s1a2 span', ['s1a2s1']) + + def test_attribute_equals(self): + self.assertSelectMultiple( + ('p[class="onep"]', ['p1']), + ('p[id="p1"]', ['p1']), + ('[class="onep"]', ['p1']), + ('[id="p1"]', ['p1']), + ('link[rel="stylesheet"]', ['l1']), + ('link[type="text/css"]', ['l1']), + ('link[href="blah.css"]', ['l1']), + ('link[href="no-blah.css"]', []), + ('[rel="stylesheet"]', ['l1']), + ('[type="text/css"]', ['l1']), + ('[href="blah.css"]', ['l1']), + ('[href="no-blah.css"]', []), + ('p[href="no-blah.css"]', []), + ('[href="no-blah.css"]', []), + ) + + def test_attribute_tilde(self): + self.assertSelectMultiple( + ('p[class~="class1"]', ['pmulti']), + ('p[class~="class2"]', ['pmulti']), + ('p[class~="class3"]', ['pmulti']), + ('[class~="class1"]', ['pmulti']), + ('[class~="class2"]', ['pmulti']), + ('[class~="class3"]', ['pmulti']), + ('a[rel~="friend"]', ['bob']), + ('a[rel~="met"]', ['bob']), + ('[rel~="friend"]', ['bob']), + ('[rel~="met"]', ['bob']), + ) + + def test_attribute_startswith(self): + self.assertSelectMultiple( + ('[rel^="style"]', ['l1']), + ('link[rel^="style"]', ['l1']), + ('notlink[rel^="notstyle"]', []), + ('[rel^="notstyle"]', []), + ('link[rel^="notstyle"]', []), + ('link[href^="bla"]', ['l1']), + ('a[href^="http://"]', ['bob', 'me']), + ('[href^="http://"]', ['bob', 'me']), + ('[id^="p"]', ['pmulti', 'p1']), + ('[id^="m"]', ['me', 'main']), + ('div[id^="m"]', ['main']), + ('a[id^="m"]', ['me']), + ('div[data-tag^="dashed"]', ['data1']) + ) + + def test_attribute_endswith(self): + self.assertSelectMultiple( + ('[href$=".css"]', ['l1']), + ('link[href$=".css"]', ['l1']), + ('link[id$="1"]', ['l1']), + ('[id$="1"]', ['data1', 'l1', 'p1', 'header1', 's1a1', 's2a1', 's1a2s1', 'dash1']), + ('div[id$="1"]', ['data1']), + ('[id$="noending"]', []), + ) + + def test_attribute_contains(self): + self.assertSelectMultiple( + # From test_attribute_startswith + ('[rel*="style"]', ['l1']), + ('link[rel*="style"]', ['l1']), + ('notlink[rel*="notstyle"]', []), + ('[rel*="notstyle"]', []), + ('link[rel*="notstyle"]', []), + ('link[href*="bla"]', ['l1']), + ('[href*="http://"]', ['bob', 'me']), + ('[id*="p"]', ['pmulti', 'p1']), + ('div[id*="m"]', ['main']), + ('a[id*="m"]', ['me']), + # From test_attribute_endswith + ('[href*=".css"]', ['l1']), + ('link[href*=".css"]', ['l1']), + ('link[id*="1"]', ['l1']), + ('[id*="1"]', ['data1', 'l1', 'p1', 'header1', 's1a1', 's1a2', 's2a1', 's1a2s1', 'dash1']), + ('div[id*="1"]', ['data1']), + ('[id*="noending"]', []), + # New for this test + ('[href*="."]', ['bob', 'me', 'l1']), + ('a[href*="."]', ['bob', 'me']), + ('link[href*="."]', ['l1']), + ('div[id*="n"]', ['main', 'inner']), + ('div[id*="nn"]', ['inner']), + ('div[data-tag*="edval"]', ['data1']) + ) + + def test_attribute_exact_or_hypen(self): + self.assertSelectMultiple( + ('p[lang|="en"]', ['lang-en', 'lang-en-gb', 'lang-en-us']), + ('[lang|="en"]', ['lang-en', 'lang-en-gb', 'lang-en-us']), + ('p[lang|="fr"]', ['lang-fr']), + ('p[lang|="gb"]', []), + ) + + def test_attribute_exists(self): + self.assertSelectMultiple( + ('[rel]', ['l1', 'bob', 'me']), + ('link[rel]', ['l1']), + ('a[rel]', ['bob', 'me']), + ('[lang]', ['lang-en', 'lang-en-gb', 'lang-en-us', 'lang-fr']), + ('p[class]', ['p1', 'pmulti']), + ('[blah]', []), + ('p[blah]', []), + ('div[data-tag]', ['data1']) + ) + + def test_unsupported_pseudoclass(self): + self.assertRaises( + NotImplementedError, self.soup.select, "a:no-such-pseudoclass") + + self.assertRaises( + NotImplementedError, self.soup.select, "a:nth-of-type(a)") + + + def test_nth_of_type(self): + # Try to select first paragraph + els = self.soup.select('div#inner p:nth-of-type(1)') + self.assertEqual(len(els), 1) + self.assertEqual(els[0].string, 'Some text') + + # Try to select third paragraph + els = self.soup.select('div#inner p:nth-of-type(3)') + self.assertEqual(len(els), 1) + self.assertEqual(els[0].string, 'Another') + + # Try to select (non-existent!) fourth paragraph + els = self.soup.select('div#inner p:nth-of-type(4)') + self.assertEqual(len(els), 0) + + # Pass in an invalid value. + self.assertRaises( + ValueError, self.soup.select, 'div p:nth-of-type(0)') + + def test_nth_of_type_direct_descendant(self): + els = self.soup.select('div#inner > p:nth-of-type(1)') + self.assertEqual(len(els), 1) + self.assertEqual(els[0].string, 'Some text') + + def test_id_child_selector_nth_of_type(self): + self.assertSelects('#inner > p:nth-of-type(2)', ['p1']) + + def test_select_on_element(self): + # Other tests operate on the tree; this operates on an element + # within the tree. + inner = self.soup.find("div", id="main") + selected = inner.select("div") + # The
          tag was selected. The