summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended
Commit message (Collapse)AuthorAgeFilesLines
...
* minifi-cpp: specify GCC_AR and GCC_RANLIBYi Zhao2020-11-022-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We encountered a minifi-cpp build error on a self-hosted image: [snip] /build/tmp-glibc/work/corei7-64-wrs-linux/minifi-cpp/0.7.0-r0/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/x86_64-wrs-linux-ranlib: thirdparty/civetweb-1.10/src/libcivetweb-cpp.a(CivetServer.cpp.o): plugin needed to handle lto object /build/tmp-glibc/work/corei7-64-wrs-linux/minifi-cpp/0.7.0-r0/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/x86_64-wrs-linux-ranlib: thirdparty/civetweb-1.10/src/libcivetweb.a(civetweb.c.o): plugin needed to handle lto object [snip] /build/tmp-glibc/work/corei7-64-wrs-linux/minifi-cpp/0.7.0-r0/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/../../libexec/x86_64-wrs-linux/gcc/x86_64-wrs-linux/10.2.0/ld: DWARF error: could not find variable specification at offset c960f /build/tmp-glibc/work/corei7-64-wrs-linux/minifi-cpp/0.7.0-r0/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/../../libexec/x86_64-wrs-linux/gcc/x86_64-wrs-linux/10.2.0/ld: DWARF error: could not find variable specification at offset c961d [snip] extensions/civetweb/libminifi-civet-extensions.a(ListenHTTP.cpp.o): in function `org::apache::nifi::minifi::processors::ListenHTTP::WriteCallback::process(std::shared_ptr<org::apache::nifi::minifi::io::BaseStream>)': /usr/src/debug/minifi-cpp/0.7.0-r0/git/extensions/civetweb/processors/ListenHTTP.cpp:464: undefined reference to `mg_read' [snip] When using GCC's link-time optimization with static linked libraries, we should use gcc-ar and gcc-ranlib to create the static libraries. By default, it will search gcc-ar and gcc-ranlib in the system. But if the gcc-ranlib is not found, it will use ranlib instead which causes this issue. Specify GCC_AR and GCC_RANLIB in EXTRA_OECMAKE to make sure it can find the correct gcc-ar/gcc-ranlib. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsigrokdecode: add python 3.9 supportAlexander Kanavin2020-10-292-1/+29
| | | | | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* collect: do not build with -WerrorAlexander Kanavin2020-10-291-1/+1
| | | | | | | | | The option is prone to unwanted regressions, particularly new version of python has introduced new deprecations, which broke the build. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: Fix build with clang on riscv32Khem Raj2020-10-272-0/+49
| | | | | | | | | clang defines __ILP32__ for rv32 but gcc does not as a result backtracing gets enabled when using clang but not when using gcc so clang build exposes a porting error. Therefore add code to return correct mcontext on rv32 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: Do not use lld on riscv32Khem Raj2020-10-261-0/+1
| | | | | | | | Fixes errors like | riscv32-yoe-linux-ld.lld: error: init.c:(.text+0x0): relocation R_RISCV_ALIGN requires unimplemented linker relaxation; recompile with -mno-relax | riscv32-yoe-linux-ld.lld: error: testCCompiler.c:(.text+0x0): relocation R_RISCV_ALIGN requires unimplemented linker relaxation; recompile with -mno-relax Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libpwquality: upgrade 1.4.2 -> 1.4.4zangrc2020-10-231-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wxwidgets: upgrade 3.1.3 -> 3.1.4Andreas Müller2020-10-131-2/+2
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wxwidgets: Add what's necessary so that consumers of wxwidgets_git can find itAndreas Müller2020-10-132-2/+58
| | | | | | | | | | | | | | | | | | | When I created wxwidgets recipe I had no test case for consumers of wxwidgets. This changed now and it showed that wxwidgets is building fine but is completely useless: It is a collection of libraries that are impossible to find for other recipes. To get rid wxwidgets now inherits binconfig: wxwidgets creates wx-config that at least cmake relies upon. wx-config content had to be adjusted: * As is it is a symlink to a useless file: Make it a file with usable contents * To let wx-config report correct libraries a patch was added disabling cross magic not working here. * Set full sysroot paths for includedir/libdir/bindir so that sstate can adjust them when creating recipe-sysroot for recipes depending on wxwidgets Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wxwidgets: add opengl PACKAGECONFIG / enable it if opengl is in DISTRO_FEATURESAndreas Müller2020-10-131-2/+3
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* collectd: make rrdtool and rrdcached optionalSinan Kaya2020-09-281-0/+2
| | | | | | | | rrdtool plugin pulls x11 library dependencies into the target. It should be only set on need basis. Signed-off-by: Sinan Kaya <okaya@kernel.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: Adapt to potential psuedo changesRichard Purdie2020-09-281-4/+4
| | | | | | | | | | If we do adopt path filtering for pseudo, we may filter out ${B} as not needing to be tracked for "root" permissions. We do need to track the data installed by do_install though, so move the temp directory this recipe uses out of ${B} and place it in WORKDIR. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: set the default repositories location to /var/libYi Zhao2020-09-284-18/+9
| | | | | | | | | | | | | | | | Currently, the provenance repository, flowfile repository and content repository are created in /var/run/ directory which is mounted as tmpfs. Since the minifi uses RocksDB repositories with direct IO, we will encounter an error when restart minifi service: [org::apache::nifi::minifi::provenance::ProvenanceRepository] [error] MiNiFi Provenance Repository database open /var/run/minifi/provenance_repository failed: IO error: While open a file for appending: /var/run/minifi/provenance_repository/000004.sst: Invalid argument Set the default repositories directory to /var/lib to fix this issue. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: do not download source during compileYi Zhao2020-09-284-0/+114
| | | | | | | | | The minifi-cpp needs to download and compile several sources during compile. Add these sources to SRC_URI to make sure they are downloaded in do_fetch not in do_compile. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* smartmontools: Remove obsolete setting regarding the Standard OutputMingli Yu2020-09-221-1/+0
| | | | | | | | | | | | The Standard output type "syslog" is obsolete, causing a warning since systemd version 246 [1]. Please consider using "journal" or "journal+console" [1] https://github.com/systemd/systemd/blob/master/NEWS#L202 Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: upgrade 6.0.7 -> 6.0.8Zang Ruochen2020-09-171-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* byacc: upgrade 20200330 -> 20200910Zang Ruochen2020-09-162-20/+23
| | | | | | | | Refresh the following patch: 0001-byacc-do-not-reorder-CC-and-CFLAGS.patch Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: fix wrong option of PACKAGECONFIG[valgrind]Haiqing Bai2020-09-151-7/+1
| | | | | | | | | | | | | | | | | | | | The source configure.ac shows: --enable-valgrind: Enable somes special code that rsyslog core developers consider useful for testing.Do NOT use if you don't exactly know what you are doing, except if told so by rsyslog developers. NOT to be used by distro maintainers for building regular packages. --without-valgrind-testbench: Don't use valgrind in testbench PACKAGECONFIG[valgrind] should use '--without-valgrind-testbench' And after this fix, the code which removes the valgrind depended ptest cases for arm,mips is no longer needed. Signed-off-by: Haiqing Bai <Haiqing.Bai@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: upgrade 6.0.6 -> 6.0.7Zang Ruochen2020-09-101-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: upgrade 2020.5 -> 2020.6Zang Ruochen2020-09-101-1/+1
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* collectd: upgrade 5.11.0 -> 5.12.0Zang Ruochen2020-09-101-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hplip: use libexecdirDiego Rondini2020-09-101-7/+7
| | | | | | | | | | In oe-core commit: 2ce6ef29b9bb4f16ed9d78e166d455b7a6d968bf cups crossscripts have been fixed to report the correct serverbin folder, so backend, filters, etc, need to go in ${libexecdir} now. Signed-off-by: Diego Rondini <diego.rondini@kynetics.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcec: split the python example into a separate packageYann Dirson2020-09-101-3/+4
| | | | | | | | | It does not provide more functionality than the C-based examples, so is of little value on a target except for checking the python module is working. Signed-off-by: Yann Dirson <yann@blade-group.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcec: rename libcec-tools to libcec-examplesYann Dirson2020-09-101-4/+4
| | | | | | | | Those are really not general-usage tools, just examples of the API usage. Let's use a more explicit package name. Signed-off-by: Yann Dirson <yann@blade-group.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcec: build with Linux CEC APIYann Dirson2020-09-101-0/+4
| | | | | | | | | The Linux CEC API is available in linux-kernel-headers 4.10 and newer, and supported since libcec 5.0.0, though they still default to the legacy Raspberry Pi API. Signed-off-by: Yann Dirson <yann@blade-group.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcec: workaround wrong choice of PYTHON_PKG_DIR when building on DebianYann Dirson2020-09-102-0/+32
| | | | | | | | | As described in https://github.com/Pulse-Eight/libcec/issues/530 the cmake code looks at the host to make decisions about the target, and we can't even override this with a flag. Signed-off-by: Yann Dirson <yann@blade-group.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* brotli: set upstream-status for the patch backported from upstreamGianfranco Costamagna2020-09-081-0/+1
| | | | | | Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* brotli: update to 1.0.9Gianfranco Costamagna2020-09-042-3/+51
| | | | | | | | cherry-pick upstream fix for pkg-config based detection failure Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* byacc: add nativesdk supportArturo Buzarra2020-09-041-1/+1
| | | | | | | | This support is required if a tool depends on this package and must be installed on the sdk. Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tmux: Add -p option to mkdirKhem Raj2020-09-031-1/+1
| | | | | | This help avoiding a build failure when this dir already exists Signed-off-by: Khem Raj <raj.khem@gmail.com>
* properties-cpp: Add recipeKhem Raj2020-08-311-0/+22
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uml-utilities: Use update alternatives for tunctlKhem Raj2020-08-311-0/+5
| | | | | | This can then live along with toybox Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hexedit: Define update alternativesKhem Raj2020-08-311-1/+5
| | | | | | hexedit can also be provided by toybox Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sblim-sfcb: Fix target postinstKhem Raj2020-08-311-3/+3
| | | | | | | | | Separate out target specific postintalls into pkg_postinst_ontarget_PN Fixes /mnt/b/yoe/master/build/tmp/work/qemuarm64-yoe-linux/meta-oe-ptest-image/1.0-r0/rootfs//var/lib/opkg/info/sblim-sfcb.postinst: line 6: /usr/share/sfcb/genSslCert.sh: No such file or directory Signed-off-by: Khem Raj <raj.khem@gmail.com>
* canutils: Use update-alternativesKhem Raj2020-08-312-1/+12
| | | | | | | canutils provides applications which conflict with can-utils recipe. update-alternatives helps fix this when both are installed Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dlt-daemon: superseed upstream pr #238 patch with pr #245 due to unexpected ↵Gianfranco Costamagna2020-08-302-8/+47
| | | | | | | | | | behaviour Upstream commented to use the second one Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libidn: upgrade 1.35 -> 1.36Zang Ruochen2020-08-272-27/+26
| | | | | | | | | | -License-Update: Copyright year updated to 2020. Refresh the following patch: 0001-idn-format-security-warnings.patch Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sanlock: upgrade 3.8.1 -> 3.8.2Zang Ruochen2020-08-211-1/+1
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: upgrade 2020.4 -> 2020.5Alex Kiernan2020-08-191-1/+1
| | | | | Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: Fix linking with libxml2Khem Raj2020-08-182-1/+41
| | | | | | | when libxml2-native is staged, then on x86 it starts to detect that for target and fail to build Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sedutils: Fix build with clang11Khem Raj2020-08-172-0/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: Fix build with lto/clangKhem Raj2020-08-172-0/+41
| | | | | | | | | | | | | Define CMAKE_RANLIN to llvm-ranlib and use lld for linking since it detects LTO use for civetweb and therefore archives (.a) should be creatd is compiler ar/ranlib and gold or lld be used. backport a patch to fix build with clang, this patch is already proposed via [1] [1] https://github.com/facebook/rocksdb/pull/7265 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pegtl: Disable type-limits warningKhem Raj2020-08-171-0/+2
| | | | | | | gcc 10.2 warns with this rep_one_min_max.hpp:40:26: error: comparison of unsigned expression in '>= 0' is always true [-Werror=type-limits] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sblim-sfcb: Fix build with -fno-commonKhem Raj2020-08-1313-0/+101
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fluentbit: Use -fcommon to compileKhem Raj2020-08-131-0/+2
| | | | | | | gcc10+ defaults to -fno-common and fluentbit does not compile with -fno-common Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lprng: Fix build with -fno-commonKhem Raj2020-08-132-1/+37
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dialog: Turn X11 support into a packageconfig optionKhem Raj2020-08-131-0/+4
| | | | | | | | | Enable it only if x11 is in distro features Ensure patch to X includes/libs is pointing into sysroot otherwise it starts to poke at build systems includes/libs dirs Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi: Add recipe for c++ versionwonjong.lee2020-08-1011-0/+380
| | | | | | | | | | | | MiNiFi--a subproject of Apache NiFi--is a complementary data collection approach that supplements the core tenets of NiFi in dataflow management, focusing on the collection of data at the source of its creation. The C++ implementation is an additional implementation to the one in Java with the aim of an even smaller resource footprint. Signed-off-by: wonjong.lee <wonjong.lee@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dlt-daemon: fix build with upstream-proposed patch for MUSL libcGianfranco Costamagna2020-08-102-0/+31
| | | | | | Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dlt-daemon: enable some configurations by default in PACKAGECONFIGGianfranco2020-08-101-1/+4
| | | | | | | | | | | | | | | | | | | | | | | such as udp-connection dlt-system dlt-filetransfer and if systemd is enabled also: - systemd - systemd-watchdog - systemd-journal - dlt-examples - dlt-adaptor - dlt-console rationale is: all of the keys above are not that heavy in building and running, and dlt-daemon doesn't take more than some seconds to build. Not building them by default can result in a lot of missing functionalities to the end user, such as the ability to talk with the dlt-daemon via bash script or Python. The end user can still change or disable something if needed. Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dlt-daemon: fix build failure when dlt-dbus is enabled, due to missing ↵Gianfranco2020-08-101-1/+2
| | | | | | | | service file. Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>