summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* schroedinger: Fix building testsKhem Raj2023-06-122-0/+44
| | | | | | | lld finds out this error where _orc_code_orc_deinterleave2_s16 is needed but is not linked into a testcase wavelet_max_gain Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: drop explicite ARM_INSTRUCTION_SETMichael Heimpold2023-06-121-9/+0
| | | | | | | | | | | | | | | If my git skills don't trick me, forcing ARM mode for PHP dates back to year 2015 with commit e836f8f93. I wondered whether the compile problem still persists and just tested that it compiles fine for qemuarm nowaydays. I also tested the binaries on a physical device, a NXP iMX6ULL based one, and did not notice any problems so far. Signed-off-by: Michael Heimpold <mhei@heimpold.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-stopit: add missing run-time dependenciesAdrian Zaharia2023-06-121-0/+4
| | | | | | | | | | | | The stopit package needs setuptools python module so add it to RDEPENDS. This fixes: File "/usr/lib64/python3.9/site-packages/stopit/__init__.py", line 10, in <module> import pkg_resources ModuleNotFoundError: No module named 'pkg_resources' Signed-off-by: Adrian Zaharia <Adrian.Zaharia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* crucible: Upgrade to 2023.04.12 releaseKhem Raj2023-06-111-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ply: Demand BFD linker explicitlyKhem Raj2023-06-111-0/+2
| | | | | | | | | | | | Default ld on OE could be either gold/bfd/lld, here its assuming ld to ld.bfd which is not right assumption when it really should ask for BFD linker since its relying on its options see src/ply/Makefile.am $(LD) -r -b binary -o $(abs_builddir)/self-test.o self-test.sh Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: point to the native protobuf compiler binaryDenys Dmytriyenko2023-06-081-0/+1
| | | | | | | | | | | Latest version of grpc fails to build nativesdk variant since it finds and tries to execute protoc binary from nativesdk-protobuf instead of protobuf-native. Shortcut the detection logic by pointing to the correct version of protoc binary in native sysroot. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe: add pahole to NON_MULTILIB_RECIPESXiangyu Chen2023-06-081-1/+1
| | | | | | | | pahole need to line up with kernel's architectures bitsize, so add it to NON_MULTILIB_RECIPES. Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mpich: Upgrade to 4.1.1Zoltán Böszörményi2023-06-082-58/+67
| | | | | | | | | | | | | | | | | | | mpich 4.1+ has its own official way to allow cross-compiling, use it. Remove the old PACKAGECONFIG[x11], the configuration option does not exist anymore. Add PACKAGECONFIG knobs to allow building the C++ and FORTRAN parts. Both are needed by intel-oneapi-mkl in meta-intel. Don't enable either by default to keep the current minimalistic build. Remove configuration options that don't exist in the new version. Fix TMPDIR being emitted into binaries and scripts like mpicc and mpicxx Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: add libgpiod-tools to RRECOMMENDSEnguerrand de Ribaucourt2023-06-081-0/+2
| | | | | | | | The cukinia statement `cukinia_gpio_libgpiod` requires the `gpioinfo` command. Alternatively, the deprecated sysfs GPIO API can be used with `cukinia_gpio_sysfs`. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: inherit allarchEnguerrand de Ribaucourt2023-06-081-0/+2
| | | | | | | | The recipe installs a shell script which does not depend on the architecture. Inheriting allarch will make sure that the recipe is built only once accross different architectures. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: upgrade 0.6.1 -> 0.6.2Enguerrand de Ribaucourt2023-06-081-1/+1
| | | | | | | | Changes: cukinia: add /proc/cmdline parameter check cukinia: add test suite and class to csv cukinia: add kernel config check in boot partition Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: remove trailing whitespacesEnguerrand de Ribaucourt2023-06-081-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lmsensors: do not pull in unneeded perl modules for run-time dependenciesBeniamin Sandu2023-06-081-2/+3
| | | | | Signed-off-by: Beniamin Sandu <beniaminsandu@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* glog: Correct the packaging of /usr/share/glog/cmake/FindUnwind.cmakePeter Kjellerstedt2023-06-081-0/+2
| | | | | | | It belongs in the glog-dev package. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uutils-coreutils: upgrade 0.0.18 -> 0.0.19Etienne Cordonnier2023-06-072-336/+354
| | | | | | | | Note: the removal of "name=XXX" in the crates.inc file is normal and due to a change in cargo-update-recipe-crates.bbclass in poky. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-python: Add stopitAdrian Zaharia2023-06-072-0/+34
| | | | | | | | | | | | | stopit is a library to raise asynchronous exceptions in other threads, control the timeout of blocks or callables with two context managers and two decorators. The license isn't shipped in the pypi package, so it was extracted from the github repo at [1]. [1] https://github.com/glenfant/stopit/blob/master/LICENSE Signed-off-by: Adrian Zaharia <Adrian.Zaharia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-python-ptest-fast-image: Do not run python3-pytest-mock ptestsKhem Raj2023-06-061-1/+1
| | | | | | | | | | | | | | | | | | | | | These ptests fail as of now. ============================================================================================================== Failed test cases (sorted by testseries, ID) ============================================================================================================== -------------------------------------------------------------------------------------------------------------- testseries | result_id : oeqa | runtime_meta-python-ptest-image-python3-pytest-mock_qemux86-64_20230606201650 ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_assert_called_args_with_introspection ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_assert_called_kwargs_with_introspection ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_detailed_introspection_async ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_plain_stopall ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_used_with_class_scope ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_used_with_module_scope ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_used_with_package_scope ptestresult.python3-pytest-mock.tests/test_pytest_mock.py::test_used_with_session_scope -------------------------------------------------------------------------------------------------------------- Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-padaos: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+2
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-oslash: add missing run-time dependenciesBartosz Golaszewski2023-06-061-2/+3
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-nmap: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+5
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ninja: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ninja-syntax: new packageBartosz Golaszewski2023-06-061-0/+10
| | | | | | | | Add a recipe for ninja-syntax - a package that allows to use all features of python3-ninja. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-netaddr: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+1
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-netaddr: stop using PYTHON_PNBartosz Golaszewski2023-06-061-2/+2
| | | | | | | We no longer support python2 so switch to using python3 explicitly. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-msm: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+8
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-lazy: new recipeBartosz Golaszewski2023-06-061-0/+8
| | | | | | | | Add a recipe for python3-lazy - a package on which python3-msm run-time depends but which dependency is not satisfied by meta-python. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-msm: fix coding styleBartosz Golaszewski2023-06-061-3/+3
| | | | | | | | Order run-time dependencies alphabetically and add some whitespaces for consistency. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-lockfile: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+4
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-linux-procfs: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+2
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-libevdev: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+5
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-kconfiglib: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jstyleson: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+2
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jsonrpcclient: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+3
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jsonpath-rw: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pefile: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-petact: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pickleshare: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+2
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pynetlinux: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pynetlinux: fix relative importsBartosz Golaszewski2023-06-062-1/+64
| | | | | | | | Pull in a patch from upstream that addresses an issue with relative imports. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyexpect: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+2
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyjks: fix run-time dependenciesBartosz Golaszewski2023-06-061-1/+1
| | | | | | | This package actually depends on python3-pycryptodomex. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyjks: stop using PYTHON_PNBartosz Golaszewski2023-06-061-6/+6
| | | | | | | | We no longer support python2, so use python3 explicitly. While at it: add missing spaces for consistent coding style. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-javaobj-py3: add missing run-time dependenciesBartosz Golaszewski2023-06-061-0/+5
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyjwt: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+4
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyjwt: stop using PYTHON_PNBartosz Golaszewski2023-06-061-1/+1
| | | | | | | We no longer support python2, so use python3 explicitly. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pylyrics: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+7
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-classes: new packageBartosz Golaszewski2023-06-061-0/+10
| | | | | | | | Add a recipe for the package python3-pylyrics run-time depends on but which was never provided by meta-python. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyproj: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+7
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyproj: drop unnecessary run-time dependencyBartosz Golaszewski2023-06-061-1/+1
| | | | | | | libproj is already included in the rootfs as it's in recipe's DEPENDS. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyproj: don't use PYTHON_PNBartosz Golaszewski2023-06-061-1/+1
| | | | | | | We no longer support python2. Drop PYTHON_PN and use python3 explicitly. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>