summaryrefslogtreecommitdiffstats
path: root/meta-oe/dynamic-layers
Commit message (Collapse)AuthorAgeFilesLines
* lirc: Define SH_PATH=/bin/shKhem Raj2023-05-281-1/+1
| | | | | | | | | | | It points to sh provided by HOSTTOOLS in the build systems path Fixes WARNING: lirc-0.10.2-r0 do_package_qa: QA Issue: File /usr/include/lirc/config.h in package lirc-dev contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit d112323521083a4369bd8c80e1f860f1ca8ebe8d) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* nanopb: fix installed-vs-shipped with multilibMartin Jansa2023-05-162-1/+72
| | | | | | | | | | | | | | | | | | | * fixes: ERROR: QA Issue: nanopb: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/python3.11 /usr/lib/python3.11/site-packages /usr/lib/python3.11/site-packages/proto /usr/lib/python3.11/site-packages/proto/nanopb_pb2.py /usr/lib/python3.11/site-packages/proto/nanopb.proto /usr/lib/python3.11/site-packages/proto/_utils.py Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. nanopb: 7 installed and not shipped files. [installed-vs-shipped] when libdir is /usr/lib64 with multilib. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* lirc: fix do_install with multilibMartin Jansa2023-04-181-3/+3
| | | | | | | | | | | * use ${S} instead of ${WORKDIR}/${PN}-${PV} and ${BP} instead of ${PN}-${PV} to fix build with multilib, where PN is lib32-lirc, but S is correctly set as ${WORKDIR}/${BP} and do_install fails with: mkdir: cannot create directory ‘lib32-lirc/0.10.1-r0/lib32-lirc-0.10.1/python-pkg/dist/’: No such file or directory Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* mongodb: fix chown user for multilib buildsMartin Jansa2023-04-071-1/+1
| | | | | | | | * the user is named mongodb (BPN) and in multilib builds this fails with: chown: invalid user: 'lib32-mongodb:lib32-mongodb' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: fix systemd service settingChen Qi2023-04-061-1/+1
| | | | | | | The service file belongs to ${PN}-adbd instead of ${PN}. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: update to 29.0.6.r14Etienne Cordonnier2023-03-2275-2084/+2857
| | | | | | | | | Note: the adbd makefile can't be upstreamed to debian, because there is already an open PR upstream: https://salsa.debian.org/android-tools-team/android-platform-tools/-/merge_requests/4/diffs Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: Remove mongodb from rdep list of packagegroupKhem Raj2023-03-221-4/+4
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lirc: Fix build with usrmerge feature building on ubuntu hostsKhem Raj2023-03-172-0/+27
| | | | | | | | | | | | | We get a very cryptic error during do_package ERROR: Didn't find service unit 'lircmd.service', specified in SYSTEMD_SERVICE:lirc. The reason is on ubuntu build hosts configure pokes at build host and decided its ubuntu and applies hardcoded value of /lib/systemd/system for systemdunitdir instead of /usr/lib/systemd/system as passed from recipe Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: fix TMPDIREtienne Cordonnier2023-03-171-6/+15
| | | | | | | | | Remove the TMPDIR environment variable from adb which is used by commands like mktemp (set to /data/local/tmp in android but vanilla linux uses /tmp per default). Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools 10: port some patches from version 5Etienne Cordonnier2023-03-143-0/+77
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools 10: various fixesEtienne Cordonnier2023-03-146-21/+325
| | | | | | | | | | | - fix img2simg which was broken in the original recipe (wrong rpath and missing linking to libbase) - remove clang dependency and make it compile with gcc - fix installation of img2simg and simg2img which was broken in the original recipe - backport patch https://github.com/nmeum/android-tools/blob/master/patches/adb/0023-Update-usage-of-usbdevfs_urb-to-match-new-kernel-UAP.patch The license is MIT, so it can be used. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools 10: Add flag to enable adbd serviceEtienne Cordonnier2023-03-141-0/+6
| | | | | | | | | | | | | android-tools-adbd service can be enabled in the image using USB_DEBUGGING_ENABLED = "1" in local.conf. See commit 4271cc28279b791 of meta-openembedded. The existing ConditionPathExists line in the service file checks for the existence of this file. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools 10: move adbd to its own packageEtienne Cordonnier2023-03-141-1/+6
| | | | | | | | | | This is consistent with the existing recipe in meta-openembedded, and will make it easier for users of the recipe to switch between versions. Also prepend the list of packages instead of appending. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools 10: remove dead codeEtienne Cordonnier2023-03-141-4/+0
| | | | | | | This is a copy-paste leftover from the original meta-openembedded recipe (version 5). Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools 10: import version from meta-clangEtienne Cordonnier2023-03-1453-0/+2415
| | | | | | | | | | | | | | Imported from: https://github.com/kraj/meta-clang.git Commit 87d41f7dd7a69bbf159 This version is on the one hand newer than the version currently in meta-openembedded (version 10 vs 5) and on the other hand based on the debian sources, which already contain some makefiles added by debian (android normally compiles with Android.bp files) and should thus be easier to maintain than current version. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* netplan: add missing runtime dependenciesYi Zhao2023-03-091-1/+1
| | | | | | | | | Add python3-dbus and python3-rich[1] to RDEPENDS. [1] https://github.com/canonical/netplan/pull/290 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix type mitmatch found with clang16Khem Raj2023-03-042-0/+34
| | | | | | Use std::size to avoid explicit typecasting Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Upgrade to 4.4.19Khem Raj2023-03-042-2/+35
| | | | | | Add a patch to fix build with clang16 while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe: fix Upstream-Status formatYi Zhao2023-02-241-1/+1
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* netplan: upgrade 0.104 -> 0.106Wang Mingyu2023-02-183-50/+5
| | | | | | | | | | | 0001-Makefile-do-not-use-Werror.patch refreshed for new version. 0001-Makefile-fix-parallel-build-failure.patch removed since it's included in new version. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Use bfd linker for x86/musl with gccKhem Raj2023-02-011-0/+4
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lcdproc: Update to latest tip of trunkKhem Raj2023-02-015-169/+2
| | | | | | Drop patches already present in trunk as of now Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Pass MAXLINELENGTH to scons invocationKhem Raj2023-01-291-0/+1
| | | | | | | | | | | | | | | | | | | This helps in overcoming a problem when using scons with ccache enabled. When commands get longer, then it resorts to using response files to do the operations e.g. @/tmp/tmp96j6icra.lnk when this response file is inboked by compiler it works ok, however, this does not when ccache is used to invoke the complilation. We see errors e.g. ccache @/tmp/tmppsyij_0v.lnk ccache: error: execute_noreturn of @/tmp/tmppsyij_0v.lnk failed: No such file or directory Using MAXLINELENGTH setting ensures that we can use ARG_MAX to extend the length of commandline and hence avoid using response files. This issue is also reported in mongodb [1] [1] https://jira.mongodb.org/browse/SERVER-38389 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Upgrade to 4.4.18Khem Raj2023-01-291-5/+5
| | | | | | | Use wildchar instead of /opt/ for build paths becasue it might be different when building with ccache Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix build with gcc13Khem Raj2023-01-292-0/+27
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rwmem: Update to latestKhem Raj2023-01-272-13/+45
| | | | | | | | - Switch to using meson - Fix build with gcc13 - Use packageconfig for enabling python support and static libs Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: Remove mongodb for upsupported archesKhem Raj2023-01-211-0/+4
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: Update to reflect latest recipesKhem Raj2023-01-111-2/+1
| | | | | | | Some recipes are removed and some have changed PROVIDERS, adjust accordingly. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Do not use off64_t on muslKhem Raj2022-12-312-0/+31
| | | | | | Its not available on musl since off_t is 64bit by default Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nanopb: upgrade 0.4.6.4 -> 0.4.7Wang Mingyu2022-12-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Fix comments generation for submessages (#788) Fix handling of spaces in arguments passed through protoc (#810) Fix problems with multiple files and mangle_names option (#783, #820) Fix generator error when using M_STRIP_PACKAGE without package name (#795) Fix compilation error with fixed size array and FT_POINTER (#630) Fix wrong format in Python Poetry project file (#811) Fix unnecessary generator message when using --quiet (#831) Fix enum_to_string with C++ (#838) Fix /* */ inside .proto file comment Workaround python-protobuf version issues (#787) Safeguard substraction in pb_read() with custom streams (#697) Always include pb_release() as function, instead of macro. (#802) Allow using = instead of : with generator option -s Allow specifying include format without special characters (#810) Allow including headers from inside of extern C (#814) Add option NANOPB_PB2_TEMP_DIR to store nanopb_pb2.py in a temporary dir (#601) Add compile-time error message for when PB_FIELD_32BIT is needed (#680, #827) Add --c-style command line option for naming style (#199, #533, #791) Add --protoc-opt to nanopb_generator.py (#628) Add ENUMTYPE convenience macros (#803) Add Bazel build rules (#360, #500) Generator: keep order of messages when possible Test case improvements (#792) PlatformIO build rule improvements (#808, #809, #819, #834, #839, #840) CMake build rule improvements (#822) CMakeLists: use protoc wrapper script by default (#769) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lirc: correctly use PYTHONPATHAlexander Kanavin2022-11-102-10/+66
| | | | | Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thingsboard-gateway: upgrade 3.1 -> 3.2Wang Mingyu2022-10-311-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lirc: upgrade 0.10.1 -> 0.10.2Wang Mingyu2022-10-091-2/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs-78: remove the recipeAlexander Kanavin2022-09-1415-1035/+0
| | | | | | | Nothing is depending on it, and mozjs-78 has been EOL for a while. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lcdproc: Fix build on non-x86 and arm architecturesKhem Raj2022-09-072-14/+21
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rasdaemon: Upgrade to 0.6.8Khem Raj2022-08-313-50/+37
| | | | | | | Fix build on musl while here Drop unneeded header include patch which is fixed upstream Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix boost build with clang-15Khem Raj2022-08-282-0/+41
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lirc: Fix build on muslKhem Raj2022-08-282-0/+45
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs: Use RUST_HOST_SYS and RUST_TARGET_SYSKhem Raj2022-08-081-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nanopb: upgrade 0.4.5 -> 0.4.6.4wangmy2022-07-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========= Fix passing of error message from substream callback (#703) Fix comments going to wrong member variables (#701) Fix regression in 0.4.3 where generator did not find all dependencies (#720) Fix FindNanopb.cmake not finding options file (#659) Fix double-definition errors with size_union (#692) Fix generator error with same inner message name (#746) Fix infinite recursion in generator/protoc script (#762) Fix unicode comment handling for Python 2 (#740) Fix compiler warnings with PB_BUFFER_ONLY (#717) Fix options dependency in nanopb.mk (#666) Fix handling of filenames with dot in them in FindNanopb.cmake (#756) Add fallback_type option (#772, #773) Use C11 static assert mechanism by default (#761, #766) Use 'static_assert' keyword for iar (#679) Explicitly check for pItem == NULL to satisfy Xcode analyzer (#667, #674) Support --proto-path as alias to -I (#749) Refactor name mangling to separate class, improve error messages (#735) Move PB_WT_PACKED definition to the header to fix compiler warnings (#671) FindNanopb.cmake: use --nanopb_opt for option passing by default (#752) FindNanopb.cmake: Add option NANOPB_GENERATE_CPP_STANDALONE (#741) FindNanopb.cmake: Add PROTOC_OPTIONS variable (#768, #771) CMakeLists: add build interface for using as a submodule (#669) CMakeLists: fix error with nanopb_BUILD_GENERATOR=OFF (#764) CMakeLists: make more uniform (#676) CMakeLists: Fix uninitialized PYTHON_INSTDIR (#652) Clean up CMake examples (#741) Rebuild nanopb_pb2.py and print version numbers on import failure (#733, #742) Use memcpy instead of iterating on buf_read/write (#751) Add generator support for PlatformIO (#718) Add clean target to generator/proto/Makefile (#681) Windows .bats: use standard python invocation instead of py.exe launcher (#657) Fix problems running tests with newer SCons version Improve handling of varint overflows Improve optimization for little-endian platforms Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: ignore unrelated CVEsDavide Gardenal2022-07-181-0/+6
| | | | | | | | CVE-2014-8180, CVE-2017-18381 and CVE-2017-2665 are not affecting our configuration so they can be safely ignored. Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thingsboard-gateway: upgrade 2.9 -> 3.1Wang Mingyu2022-05-241-1/+1
| | | | | | | | Changelog: https://github.com/thingsboard/thingsboard-gateway/releases/tag/3.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* speedtest-cli: drop the recipeBartosz Golaszewski2022-05-191-14/+0
| | | | | | | | | This is the same project as the one in the python3-speedtest-cli recipe in meta-python except that the other one is downloaded from pypi. Drop this recipe. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: update pkg groupArmin Kuster2022-05-021-0/+1
| | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nvmetcli: move recipe to meta-oeArmin Kuster2022-05-021-0/+39
| | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* netplan: move from meta-networking to meta-oeArmin Kuster2022-05-024-0/+168
| | | | | | | add to the dynamic meta-pthon lot Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lirc: Delete systemd unit files on non systemd distrosKhem Raj2022-04-261-3/+4
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lirc: install systemd units only when using systemd distro featureKhem Raj2022-04-251-3/+5
| | | | | | These files are not needed when init system is not systemd Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs-78: Switch to system libicuKhem Raj2022-04-201-0/+2
| | | | | | | | Fixes build with gcc-12 intl/icu/source/common/stringtriebuilder.cpp:388: more undefined references to `std::type_info::operator==(std::type_info const&) const' follow collect2: error: ld returned 1 exit status Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix aarch64 build with gcc12Khem Raj2022-04-142-0/+38
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>