summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* vlc: Add -pthread on riscvKhem Raj2019-03-071-0/+2
| | | | | | | | | Fixes missing atomic symols during linking e.g. vlc-3.0.6/src/misc/picture_pool.c:201: undefined reference to `__atomic_fetch_add_2' collect2: error: ld returned 1 exit status Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php_7.3.2.bb: Switch to mysqlndKhem Raj2019-03-071-2/+2
| | | | | | | | | With mariadb 10.x it fails to find headers in right location during builds https://bugs.php.net/bug.php?id=75612 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wireless-regdb: Upgrade 2018.10.24 -> 2019.03.01Adrian Bunk2019-03-071-2/+2
| | | | | Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libqmi: Upgrade 1.22.0 -> 1.22.2Adrian Bunk2019-03-071-2/+2
| | | | | Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* run-ptest: supplied user inputs to add_person_cppAditya Tayade2019-03-071-1/+1
| | | | | | | | | | | During protobuf-ptest execution, add_person_cpp waits for user inputs to write data into test.data file. Fixed this by supplying dummy data through standard input. Upstream-Status: Pending Signed-off-by: Aditya Tayade <Aditya.Tayade@kpit.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hdf5: support 32-bit targetHongxu Jia2019-03-073-3/+979
| | | | | | Add pre-generated 32-bit H5Tinit.c to support 32-bit target Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
* mysql-python: fix compilation with MariaDB 10.3.13Mingli Yu2019-03-072-1/+37
| | | | | | | | | | | | Use standard API function MYSQL_OPT_RECONNECT instead of direct modification of internal structures which does not work for MariaDB to fix below compile issue. | _mysql.c: In function '_mysql_ConnectionObject_ping': | _mysql.c:2005:41: error: 'MYSQL' {aka 'struct st_mysql'} has no member named 'reconnect' Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmxml: Upgrade to 3.0 releaseKhem Raj2019-03-071-4/+7
| | | | | | | | | | License-Update: Switch to Apache-2.0 as upstream has switched https://github.com/michaelrsweet/mxml/commit/f166ad1977f2f13295689772a5d9e442f73d46f1#diff-9879d6db96fd29134fc802214163b95a Fix build on risc-v Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rabbitmq-c: Upgrade to 0.9.0Khem Raj2019-03-071-3/+4
| | | | | | Switch to Cmake Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openocd: Fix build for risc-vKhem Raj2019-03-071-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* webrtc-audio-processing: Add support for risc-vKhem Raj2019-03-072-0/+34
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* netdata: Link with libpthreadKhem Raj2019-03-071-0/+2
| | | | | | | | Fixes global_statistics.c:90: undefined reference to `__atomic_fetch_add_2' | collect2: error: ld returned 1 exit status Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nmap: Fix build on RISC-VKhem Raj2019-03-071-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-grpcio: Upgrade to 1.19.0Khem Raj2019-03-065-9/+25
| | | | | | | Refresh patch to apply cleanly Fix build for RISC-V Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-greenlet: Upgrade to 0.4.15Khem Raj2019-03-063-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: Upgrade to 3.1.1Khem Raj2019-03-062-37/+2
| | | | | | Drop upstreamed patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liboil: Fix build on risc-vKhem Raj2019-03-062-0/+16
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poco: Backport riscv support patchKhem Raj2019-03-062-0/+42
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfsprogs: Fix build with riscv/muslKhem Raj2019-03-061-0/+2
| | | | | | The riscv tuples do not exist in older gnu-config Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-idna: Upgrade 2.7 -> 2.8Otavio Salvador2019-03-063-2/+2
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-idna: Avoid removing executing bit from `.egg-info/` directoryOtavio Salvador2019-03-061-4/+0
| | | | | | | | The chmod was removing the executing bit from the directory and then the native version was failing to build. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdbd-mysql-perl: fix do_compile failureMingli Yu2019-03-062-0/+54
| | | | | | | | | | | | | After mariadb upgrade to 10.3.13, there comes below do_compile failure for libdbd-mysql-perl: | dbdimp.c: In function 'mysql_dr_connect': | dbdimp.c:2000:13: error: 'MYSQL' {aka 'struct st_mysql'} has no member named 'reconnect' | result->reconnect=0; Backport a patch to fix it. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mariadb: Upgrade to 10.3.13Mingli Yu2019-03-0614-271/+248
| | | | | | | | | | | | | | | | | | | | | | | | | | Per https://mariadb.org/about/maintenance-policy/, mariadb 5.5.x series only supported until next year April 2020, so upgrade it to 10.3.13. Remove some deprecated patches, add some new patches to fix build failure and rework two patches to avoid fuzz warnings. Add -latomic to linker flags for armv5 Use -pthread to link for mussing atomic symbols on arches e.g. riscv Fixes issues like ld.bfd: librocksdblib.a(memtable.cc.o):/usr/include/c++/9.0.1/bits/atomic_base.h:438: more undefined references to `__atomic_compare_exchange_1' follow Fix build with musl add libxml2 to depends Fix build with clang Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ttf-arphic-uming: Use license file instead of README for license checksumsKhem Raj2019-03-051-1/+1
| | | | | | | Patch based on https://github.com/openembedded/meta-openembedded/issues/126 from Frank Mori Hess Signed-off-by: Khem Raj <raj.khem@gmail.com>
* radvd:upgrade to 2.18Hong Liu2019-03-052-5/+5
| | | | | | | Upgrade radvd from 2.17 to 2.18 Signed-off-by: Hong Liu <hongl.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* twm: upgrade to 1.0.10Hong Liu2019-03-041-2/+2
| | | | | | | 1.Upgrade tem from 1.0.9 to 1.0.10 Signed-off-by: Hong Liu <hongl.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* leveldb: restrict building for mips64Slater, Joseph2019-03-041-0/+4
| | | | | | | Do not try to build lib32-leveldb. libn32-leveldb will build. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Replaced cryptograpy by crypt.Jan Vermaete2019-03-041-2/+2
| | | | | | | | | | | Replaced 'cryptography' by the much small 'crypto' package. With cryptography, the build is too big with e.g. cpp included. PS: this was already a long time the mailinglist. I guess with my attempt to attach a patch, this could be processed. Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dvb-apps: Disable static librariesKhem Raj2019-03-041-0/+2
| | | | | | | | It can be undesired linking to a static library especially when static linking it disabled globally so lets disable it always here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bdwgc: upgrade 7.6.10 -> 7.6.12Ivan Maidanski2019-03-041-1/+1
| | | | | | | | | | | | Highlights of this upgrade: * Fix 'unexpected mark stack overflow' abort * Fix executable memory allocation See the following for detailed changes: * https://github.com/ivmai/bdwgc/releases/tag/v7.6.12 Signed-off-by: Ivan Maidanski <ivmai@mail.ru> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libc-bench: Upgrade to use new location for SRC_URIKhem Raj2019-03-041-5/+9
| | | | | | This also clarifies the copyright and license Signed-off-by: Khem Raj <raj.khem@gmail.com>
* firewalld: add new recipeCallaghan, Dan2019-03-043-0/+209
| | | | | Signed-off-by: Dan Callaghan <dan.callaghan@opengear.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* octave: Exclude from world buildsKhem Raj2019-03-041-0/+1
| | | | | | | it needs lapack which inturn needs libgfortran and fortran support in compiler is not on by default Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nghttp2: update to 1.36Oleksandr Kravchuk2019-03-031-3/+3
| | | | | Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2/libdevmapper: 2.03.01 -> 2.03.02Kai Kang2019-03-038-86/+45
| | | | | | | | | | | | | | | Upgrade lvm2/libdevmapper from 2.03.01 to 2.03.02. * update SRC_URI back to use ftp url - 2.03.02 has been released but no such tag in git repo - subdir 'releases' on ftp site should be a persistent place for tarballs * drop 0003-include-fcntl.h-for-O_-defines-and-fcntl-signature.patch which is not needed any longer * remove backpoort patch * update patch contexts Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* live555: update to version 20190227Slater, Joseph2019-03-031-3/+2
| | | | | | | Fixes CVE-2019-7314. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mimic: Initial commit of version 1.2.0.2Alistair Francis2019-03-031-0/+27
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* license: Add licenses required for MimicAlistair Francis2019-03-034-0/+70
| | | | | | | | | | | | Add the CMU-Tex, Sun and BellBird licenses that are required for Mimic. See: BellBird: https://github.com/MycroftAI/mimic/blob/development/COPYING#L959 Sun: https://github.com/MycroftAI/mimic/blob/development/COPYING#L915 CMU-Tex: https://github.com/MycroftAI/mimic/blob/development/COPYING#L840 Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftrace: Upgrade to 0.9.2Khem Raj2019-03-032-42/+2
| | | | | | Drop pathes which are upstreamed Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vlc: Upgrade to 3.0.6Khem Raj2019-03-0311-598/+127
| | | | | | Drop upstreamed patches or fixed differently upstream Signed-off-by: Khem Raj <raj.khem@gmail.com>
* glm: Upgrade to 0.9.9.3Khem Raj2019-03-034-911/+123
| | | | | | | | | Drop local patches, they were not accepted upstream Fix build with clang while here Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* upgrade python-click from 6.7 to 7.0Felix Snow2019-03-013-3/+5
| | | | | Signed-off-by: Felix Snow <fsnow@phoenixcontact.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dash: upgrade 0.5.9.1 -> 0.5.10.2Zang Ruochen2019-03-011-2/+2
| | | | | | | upgrade from dash_0.5.9.1.bb to dash_0.5.10.2.bb Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* net-snmp: Add PACKAGECONFIG desChangqing Li2019-03-011-2/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Revert "meta-oe: fixup LAYERDEPENDS to include meta-python"Khem Raj2019-02-281-1/+0
| | | | This reverts commit 987d28c27e70ba12edf2b99745c13e7525206f4a.
* krb5: fix CVE-2018-20217Wenlin Kang2019-02-282-0/+81
| | | | | | | Fix CVE-2018-20217 Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlrpc-c: inherit binconfigKai Kang2019-02-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | libreport calls xmlrpc-c-config from package xmlrpc-c-native to get cflags and libs. But it gets dirs in ${STAGING_DIR_NATIVE} which make lib32-libreport compile failed with config: require conf/multilib.conf MACHINE = "qemuarm64" MULTILIBS = "multilib:lib32" DEFAULTTUNE_virtclass-multilib-lib32 = "armv7vethf" | arm-wrs-linux-gnueabi-libtool: link: (cd ".libs" && rm -f "libabrt_dbus.so" && ln -s "libabrt_dbus.so.0.0.1" "libabrt_dbus.so") | .../tmp-glibc/work/armv5e-wrs-linux-gnueabi/libreport/2.9.7-r0/recipe-sysroot-native/usr/lib/libxml2.so: file not recognized: file format not recognized | collect2: error: ld returned 1 exit status | make[3]: *** [Makefile:780: libreport-web.la] Error 1 Make xmlrpc-c inherit binconfig to avoid such kind of errors. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* krb5: Add PACKAGECONFIG pkinitChangqing Li2019-02-281-1/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openhpi: Add PACKAGECONFIG snmp-bcChangqing Li2019-02-281-1/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freeradius: Add PACKAGECONFIG openssl/rlm-eap-fast/rlm-eap-pwdChangqing Li2019-02-281-0/+4
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>