summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-10-30buildhistory-diff: drop use of distutilstimo/nodistutils_14610Tim Orling
The use of distutils.version.LooseVersion to check for > 0.3.1 is not really needed anymore since any supported distribution has at least 1.0.0 (centos-7 via epel7, debian-9, ubuntu-16.04) The alternative would be to require python3-packaging on all hosts and use packaging.version.Version [YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-30wic: do not use distutilsTim Orling
Replace disutils.spawn.find_executable with shutils.which [YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29btrfs-tools: use setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29librepo: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29createrepo-c: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29libcomps: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29python3-pygobject: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29systemtap: use setuptools-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29python3-pip: inherit setuptools3 not distuils3Tim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29gpgme: inherit setuptools-base not distuilsTim Orling
What was distutils-common-base has been merged into setuptools3-base, since we no longer need to support python2 and python3. [YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29gstreamer1.0-python: inherit setuptools-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29python3-dbus: inherit setuptools3-base not distuilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29libdnf: inherit setuptoools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29dnf: inherit setuptools3-base instead of distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29python3-cython: DISTUTILS_* -> SETUPTOOLS_*Tim Orling
Refactor to new SETUPTOOLS_* variables [YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29setuptools: refactor for no distutils bbclassesTim Orling
Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29distutils: remove bbclasses; deprecatedTim Orling
Upstream python 3.10 has deprecated disutils and it will be removed in 3.12. [YOCTO #14610] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2021-10-29gcc: Add missing patch Upstream-StatusRichard Purdie
(From OE-Core rev: c884878f6c833b18a3a95b193f5de68df5bcea48) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-29gcc: Drop testsuite failure fix patchRichard Purdie
This patch has headers as if it were submitted upstream but I can't find any record of it. I did try tests with it removed, building the referenced testsuite files with -Werror and it all works just fine with no warnings or errors (tested on MACHINE=qemux86). I suspect this was fixed in gcc itself in other ways. As such I think this patch isn't needed and suggest we drop it. If there is a reason it is needed, please report along with an example of how to reproduce issues. (From OE-Core rev: d83e12da74b853ae33045e5c216c90c78a19f54d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-29gcc: Update patches submitted/merged upstreamRichard Purdie
I took 5 of our patches and submitted to upstream gcc. This highlighted that patches 0026 and 0018 should be merged together and some tweaks were made to try and make it acceptable to upstream. The other patches have their headers updated to match what was submitted. The libstdc++ option patch was also cleaned up ready for upstream as the documentation wasn't quite right. The CXXFLAGS_FOR_BUILD piece of 0026 is separated out into a new patch which can be submitted separately to upstream. Two of the patches have been merged, status updated accordinly. (From OE-Core rev: df9b8ec56ff29f14feb1fde6acbdf9c4667430cf) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28oeqa/runtime/parselogs: modified drm error in common errors listTeoh Jay Shen
Changed the following line from: [drm] Cannot find any crtc or sizes - going 1024x768 > [drm] Cannot find any crtc or sizes This will expand the coverage of the failure to also cover the case when fallback size is not set. (From OE-Core rev: 0569fa735458512d6e15aa3315218ecbdf8510a3) Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28create-spdx: cross recipes are native alsoSaul Wold
Recipes that inherit cross should also be categorized as isNative (From OE-Core rev: ee113e3894deb1cfb18622085a3fe0600e1ef01d) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28create-spdx: add create_annotation functionSaul Wold
This allows code reuse and future usage with relationship annotations (From OE-Core rev: 1f8fdb7dc9d02d0ee3c42674ca16e03f0ec18cba) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28spdx.py: Add annotation to relationshipSaul Wold
Having annotations on relationship can provide additional information about the relationship such as how it was derived. (From OE-Core rev: d98585aa89e1d3819f8139a07fb7376ef89b37f8) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28cups: exclude beta/rc versions from version checkAlexander Kanavin
(From OE-Core rev: d651eea3dce926399cd42c62494e4ce1940bcf06) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28webkitgtk: drop unnecessary SSE disabling patchAlexander Kanavin
(From OE-Core rev: 825467808949c1024a470d45a2468987648d8984) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28gstreamer1.0-python: do not supply unknown g-i optionsAlexander Kanavin
meson 0.60 turns unknown options into them hard errors, so instead of relying on g-i class (where the options are mandatory) add g-i dependencies explicitly. (From OE-Core rev: f4bbbf2cd3e711875489b19f9b55b52ebd7be4bd) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28python3-pygobject: do not supply unknown g-i optionsAlexander Kanavin
meson 0.60 turns unknown options into them hard errors, so instead of relying on g-i class (where the options are mandatory) add g-i dependencies explicitly. (From OE-Core rev: 9c0cc06a3d857124c0e1c1c9342f79ba5a3b10bc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28igt-gpu-tools: address meson 0.60 compatibilityAlexander Kanavin
(From OE-Core rev: 33cd0f7e23d714869eda249ae6c3f9761caa4c96) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28systemtap: address ncurses 6.3 compatibilityAlexander Kanavin
(From OE-Core rev: 807f9bc8e35c24dba45724c3075f128e117cffad) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28powertop: address ncurses 6.3 compatibilityAlexander Kanavin
(From OE-Core rev: 0b6e9db98b69d931f965d32a57ca67afea8f4f11) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28gptfdisk: address ncurses 6.3 compatibilityAlexander Kanavin
(From OE-Core rev: 1a5254939a72319ffcd302449c0187c0383da0c9) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28virgl: skip headless test on specific older distros and fail otherwiseAlexander Kanavin
This allows catching failures on new build hosts, instead of quietly skipping the test due to incomplete host setup. (From OE-Core rev: c93f95f2e48a2bba76b231692f2c15bb32005132) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28waffle: update 1.6.1 -> 1.7.0Alexander Kanavin
(From OE-Core rev: 95acd86a4aeb8d2122285dd1745c77622462d33f) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28asciidoc: update 9.1.1 -> 10.0.0Alexander Kanavin
Convert from autotools to setuptools. (From OE-Core rev: 94e656959aba02491bf2f665391369d69c0fb039) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28tzdata: update 2021d -> 2021eAlexander Kanavin
(From OE-Core rev: 660f932c21fed410ad092ec610749e7090b6a324) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28ncurses: update 6.2 -> 6.3Alexander Kanavin
(From OE-Core rev: db7666551ee1f0e0cf63a36ea24babe986e36713) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28vte: upgrade 0.64.2 -> 0.66.0Alexander Kanavin
(From OE-Core rev: 35fa233f295bbbffafaa26bb446c4f0a4d166c8d) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28libcap: upgrade 2.59 -> 2.60Alexander Kanavin
(From OE-Core rev: 3b8d3da7cf1988685684e91249f71994022fe435) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28diffoscope: upgrade 187 -> 188Alexander Kanavin
(From OE-Core rev: 3d505d3eed4b7ab5c18555e8d0b5489118261d21) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28wpebackend-fdo: upgrade 1.10.0 -> 1.12.0Alexander Kanavin
(From OE-Core rev: 85266e431bc3556353a983b941c96b34cb638434) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28webkitgtk: upgrade 2.34.0 -> 2.34.1Alexander Kanavin
(From OE-Core rev: 2a9ae637d95cbf41e1cc2a3516ddd41e1c958104) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28puzzles: upgrade to latest revisionAlexander Kanavin
(From OE-Core rev: 142016c9c68dc21195b0c39cfd611d5d05ab195c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28mpg123: upgrade 1.29.0 -> 1.29.2Alexander Kanavin
(From OE-Core rev: d426cc82f198d400f6f09ae95d1283b14d9c8fc2) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28libinput: upgrade 1.19.1 -> 1.19.2Alexander Kanavin
(From OE-Core rev: 39a19417d2bd755ce0fcc6d34be265759030ee49) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28piglit: upgrade to latest revisionAlexander Kanavin
(From OE-Core rev: 1ccd71eb3ea71b0f91e5d0aded8b8ebafd76c5f1) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28gi-docgen: upgrade 2021.7 -> 2021.8Alexander Kanavin
(From OE-Core rev: ea394748a7d6973f266a9c1c9bae39ce36cb506e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28msmtp: upgrade 1.8.17 -> 1.8.18Alexander Kanavin
(From OE-Core rev: 3e95794412c1dfcdf1a505b2a9718d3faf113ef6) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28python3-setuptools: upgrade 58.2.0 -> 58.3.0Alexander Kanavin
(From OE-Core rev: 609afb2b408a4275fc4927886c53d337cef604e5) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-28python3-pip: upgrade 21.3 -> 21.3.1Alexander Kanavin
(From OE-Core rev: f95381108536e838fb66ba05657e579d2f85fad1) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>