aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-09-14postfix: fix pkg_postinst_${PN}Mingli Yu
"exit 0" will break the postinst logic below the line "exit 0" such as: === update-alternatives --install /usr/sbin/sendmail sendmail /usr/sbin/sendmail.postfix 120 update-alternatives --install /usr/bin/mailq mailq /usr/bin/mailq.postfix 120 update-alternatives --install /usr/bin/newaliases newaliases /usr/bin/newaliases.postfix 120 === It's enough to call "$INTERCEPT_DIR/postinst_intercept delay_to_first_boot ${PKG} mlprefix=${MLPREFIX}" , so remove it to guarantee the postinstall logic is correct Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-14cyrus-sasl: fix parallel build issueHongxu Jia
While building plugins, each <plugin>.c requires a <plugin>_init.c, and the <plugin>_init.c is dynamically generated by makeinit.sh. But the makeinit.sh generates all *_init.c (13 mechanism plugins, 3 auxprop plugins) at one time, if there are multiple plugins, there will be multiple makeinit.sh invoking. It caused a parallel issue, the *_init.c files will be generated repeatedly. It occasionally generate dapdb_init.c incorrectly [snip plugins/ldapdb_init.c] SASL_CANONUSER_PLUG_INIT( ldapdb ) SASL_CANONUSER_PLUG_INIT( ldapdb ) SASL_CANONUSER_PLUG_INIT( ldapdb ) [snip plugins/ldapdb_init.c] Let makeinit.sh generate the expected <plugin>_init.c which is exactly required by <plugin>.c. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-14spice: cleanup leftover patch from upgrade to 0.13.90Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-14spice: fix compile error on 32bit systemChangqing Li
Fix below compile error on 32bit system, since input argument is uLong, but use format %d: format '%d' expects argument of type 'int', but argument 6 has type 'long unsigned int' [-Werror=format=] Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-14kexec-tools-klibc: Deliberately add -O2Khem Raj
This helps the compiler to be more aggressive and do the expected optimizations to remove unused code which otherwise gets flagged on some architectures e.g. armv7l errors like undefined reference to `bad_unaligned_access_length' Also see http://lists.infradead.org/pipermail/kexec/2009-August/003488.html Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrea Adami <andrea.adami@gmail.com>
2018-09-12nbd: Upgrade to nbd 3.17Andrew Bresticker
Upgrade to a more recent version of nbd that supports listening on multiple IP addresses. Signed-off-by: Andrew Bresticker <abrestic@waymo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-12pmdk: Initial commit of the PMDK SDKAlistair Francis
Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-12cyrus-sasl: fix build out of source tree failed while configuring with ↵Hongxu Jia
`--enable-ldapdb' [snip] | powerpc-wrs-linux-gcc [snip] -I../common |../../git/saslauthd/lak.c:58:10: fatal error: crypto-compat.h: No such file or directory [snip] The crypto-compat.h locates in git/common/, it should be | `-I../../git/common' Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-12networkd-dispatcher: new packageBartosz Golaszewski
This adds a recipe for networkd-dispatcher. It's a simple package containing a python script that needs to be installed together with a systemd service and an example config file. There's nothing to build. Tested with current poky & meta-openembedded master branches. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-12snappy: modify cmake variable to generate shared libraryHongzhi.Song
FILES_${PN}-xxx under packages-split/ depend on FILES_${PN}. But the FILES_${PN} is empty. This is because snappy doesn't generate shared library by default. So we should modify cmake variable to generate shared library. Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-12gd: Fix CVE-2018-1000222Mingli Yu
check return value in gdImageBmpPtr Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-11lcdproc: Update to master tipKhem Raj
* Do not build on musl/arm since it does not build due to musl not implementing ioperm() function on ARM Drop 0001-include-asm-ioctl.h-explicitly.patch its fixed differently upstream already Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-11opencv: Fix build with clangKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-11klibc: Fix build with security flagsKhem Raj
Drop -Os which is also causing the relro Fixes | x86_64-bec-linux-musl-ld.bfd: discarded output section: `.got.plt' Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrea Adami <andrea.adami@gmail.com>
2018-09-11start-stop-daemon: Recognise musleabi triplet in dpkgKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-11minidlna: restore & fix recipeBaptiste DURAND
Restore minidlna recipe and bump it to v1.2.1 Move it to meta-multimedia Signed-off-by: Baptiste Durand <baptiste.durand@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-11gstd: Upgrade to latest and fix unrecognised options to configureKhem Raj
QA Issue: gstd: configure was passed unrecognised options: --disable-gtk-doc [unknown-configure-option] Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-10python-pyflame: skip for aarch64 as wellMartin Jansa
* fails with: | ../../git/src/ptrace.cc: In function 'user_regs_struct pyflame::PtraceGetRegs(pid_t)': | ../../git/src/ptrace.cc:127:14: error: 'PTRACE_GETREGS' was not declared in this scope | if (ptrace(PTRACE_GETREGS, pid, 0, &regs)) { | ^~~~~~~~~~~~~~ | ../../git/src/ptrace.cc:127:14: note: suggested alternative: 'PTRACE_GETREGSET' | if (ptrace(PTRACE_GETREGS, pid, 0, &regs)) { | ^~~~~~~~~~~~~~ | PTRACE_GETREGSET | ../../git/src/ptrace.cc: In function 'void pyflame::PtraceSetRegs(pid_t, user_regs_struct)': | ../../git/src/ptrace.cc:136:14: error: 'PTRACE_SETREGS' was not declared in this scope | if (ptrace(PTRACE_SETREGS, pid, 0, &regs)) { | ^~~~~~~~~~~~~~ | ../../git/src/ptrace.cc:136:14: note: suggested alternative: 'PTRACE_SETREGSET' | if (ptrace(PTRACE_SETREGS, pid, 0, &regs)) { | ^~~~~~~~~~~~~~ | PTRACE_SETREGSET | Makefile:524: recipe for target 'ptrace.o' failed | make[2]: *** [ptrace.o] Error 1 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-10xmlstarlet: Disable PARALLEL_MAKE (again)Richard Purdie
* MJ: this was applied for 1.5.0 version in: https://patchwork.openembedded.org/patch/116023/ then removed with the upgrade to 1.6.1 in: https://patchwork.openembedded.org/patch/141059/ but as reported before this issue is still reproducible with 1.6.1 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-10cpprest: bump version to 2.10.6, drop clang 747 patch: upstreamGianfranco Costamagna
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-10libpwquality: clean up python3-libpwqualityHongxu Jia
Since `8d3d529 libpwquality: Inherit distutils3-base' applied, sub package python3-libpwquality was merged into package libpwquality. So clean up obsolete python3-libpwquality definition. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-10split net-snmp-libs into smaller packagesAlexander Filippov
By default `net-snmp-libs` contains all compiled libs. This commit splits `net-snmp-libs` into subpackages for each library. This allows for smaller resulting image due to finer packaging. Signed-off-by: Alexander Filippov <a.filippov@yadro.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-10cyrus-sasl: do not set CLEANBROKENQi.Chen@windriver.com
A previous commit set CLEANBROKEN to "1" to claim to fix the following error. Fixed rebuild error: configure: error: changes in the environment can compromise the build configure: error: run `make distclean' and/or `rm .././config.cache' and start over configure: error: ./configure failed for saslauthd However, I'm still seeing these errors! The actual problem is about autotools.bbclass not cleaning things up. It just uses 'make clean' while maybe 'make distclean' and 'rm -f ${B}/config.cache' also needs to be there. In fact, setting CLEANBROKEN will do no cleanup except removing some .la files. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09opencv: Fix build on big-endian systemsKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09klcc-cross: Recognise clang optionsKhem Raj
Let klcc understand '-no-integrated-as' which is a clang option used by meta-clang for compiler defaults Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrea Adami <andrea.adami@gmail.com>
2018-09-09nano: upgrade to 3.0Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk <dev@sashko.rv.ua> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09sanlock: add version 3.6.0Hongxu Jia
A shared storage lock manager. - Fix compile failure with musl - Fix installed-vs-shipped QA issue - Fix ldflags QA issue Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09evince: Fix build with clangKhem Raj
The added patch aids clang to avoid format warnings Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@googlemail.com>
2018-09-09libkcapi: Disable Wsign-compare warning with clang/muslKhem Raj
clang 7.0 is grumpy and complains about cmsg structures and macros from sys/socket.h kcapi-kernel-if.c:25:11: error: comparison of integers of different signs: 'unsigned long' and 'long' [-Werror,-Wsign-compare] header = CMSG_NXTHDR(&msg, header); Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09breakpad: Pass correct type name to sizeof()Khem Raj
memset is clearing memory area address starting at contect.context but it needs the correct size of type 'ucontext_t', currently its getting size of 'ucontext_t*' Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andre McCurdy <armccurdy@gmail.com>
2018-09-09wvstreams: Add openssl 1.1.x supportKhem Raj
* Backport a pull request to support OpenSSL 1.1.x Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09opencv: Update to 3.4.3Khem Raj
* Drop backported patches * Update versions of external submodules Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09openflow: Fix build with openSSL 1.1.xKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09openhpi: Upgrade to 3.8.0Khem Raj
* Add patches to fix build with OpenSSL 1.1.x * Forward patches and drop ones not needed anymore * openhpi: Fix build with musl Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09libqmi: Upgrade to 1.20.2Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09uftrace: Upgrade to 0.8.3Khem Raj
* Deliberately provide a non existing path to with_elfutils so it does not copy libelf.so into its staged install and become a provider for that library while elfutils should be the legit provider and this package should just list it in its rdeps * Fix build with musl Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09xfce4-vala: Build for vala 0.42 to match oe-coreKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09kea: Fix build with boost 1.68+Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-09umip: Fetch from git.umip.orgKhem Raj
* Adjust patches * Depend on openssl10 * remove spurious dep on rpm Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08md5deep: Upgrade to latest masterKhem Raj
* Add clang fix Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08opensc: Upgrade to 0.18.0Khem Raj
* Fixes build with OpenSSL 1.1.x * Fix build with gcc8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08rtorrent: Upgrade to 0.9.7 release pointKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08libfribidi: delete recipeOleksandr Kravchuk
Deleted recipe as it is already part of poky. Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08python-m2crypto: Ignore WCHAR_MAX and WCHAR_MIN when on muslKhem Raj
This fixes the build until we upgrade to swig 4.0 where this is fixed Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08vboxguestdrivers: Update to 5.2.18Khem Raj
* Fix build with 4.18 kernel Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08ipmitool: Fix build with OpenSSL 1.1.xKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08oscam: Depend on openssl10Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08android-tools: Depend on openssl10Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08ipsec-tools: Depend on openssl10Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08synergy: Upgrade to 1.10.1-releaseKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>