summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cli11: Refresh patch to fix fuzzKhem Raj2019-07-211-7/+5
| | | | | | | Fixes cli11-1.8.0+gitAUTOINC+13becaddb6: Patch log indicates that patches do not apply cleanly. [patch-fuzz] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Use BPN instead of PN in SRC_URIsKhem Raj2019-07-215-6/+6
| | | | | | | | Makes it work for multilib case and fixes QA error SRC_URI uses PN not BPN [src-uri-bad] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python: pypi: Add python3-termAlistair Francis2019-07-212-0/+11
| | | | | Signed-off-by: Alistair Francis <alistair@alistair23.me> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librelp: Pass Wno-error to compilerKhem Raj2019-07-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | After autoconf-archive was upgraded to 2019.01.06 it started to add extra warning flags via WARN_CFLAGS along with -Werror which means that now compiler could be stricter and break the build if any of the new warnings are flagged The difference is old WARN_CFLAGS='-fno-strict-aliasing -Wimplicit-function-declaration -Wold-style-definition -Wjump-misses-init -Werror -Wno-suggest-attribute=format -Wunused-parameter -Wmissing-field-initializers' new WARN_CFLAGS='-fno-strict-aliasing -Wimplicit-function-declaration -Wold-style-definition -Wjump-misses-init -Wall -Wextra -Wundef -Wwrite-strings -Wpointer-arith -Wmissing-declarations -Wredundant-decls -Wno-unused-parameter -Wno-missing-field-initializers -Wformat=2 -Wcast-align -Wformat-nonliteral -Wformat-security -Wsign-compare -Wstrict-aliasing -Wshadow -Winline -Wpacked -Wmissing-format-attribute -Wmissing-noreturn -Winit-self -Wmissing-include-dirs -Wunused-but-set-variable -Warray-bounds -Wreturn-type -Wswitch-enum -Wswitch-default -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wdouble-promotion -pedantic -Wunused-parameter -Wmissing-field-initializers -Werror -Wno-suggest-attribute=format -Wunused-parameter -Wmissing-field-initializers' Hence we started seing build failure like https://errors.yoctoproject.org/Errors/Details/252684/ This fix just turns off warnings-as-errors so build can still go on, if we need to fix the warnings they still are present in log.do_compile Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Cc: Robert Yang <liezhi.yang@windriver.com>
* networkmanager: Use ALTERNATIVES for resolv-conf handling.Drew Moseley2019-07-211-1/+11
| | | | | | | | This brings the networkmanager in sync with how systemd-resolved and connman work. Additionally this allows it to function with a read-only rootFS. Signed-off-by: Drew Moseley <drew.moseley@northern.tech> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zstd: New recipeAlex Kiernan2019-07-211-0/+50
| | | | | Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libzip: Upgrade 1.5.1 -> 1.5.2Alex Kiernan2019-07-211-2/+2
| | | | | Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* samba: upgrade 4.10.5 -> 4.10.6Yi Zhao2019-07-211-4/+4
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libldb: upgrade 1.5.4 -> 1.5.5Yi Zhao2019-07-211-2/+2
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* iperf3: Upgrade to 3.7Mingli Yu2019-07-213-27/+10
| | | | | | | | | | | | * Licence-Update: - Copyright years are updated to 2019 * Remove automake-foreign.patch as the logic included in the new version * Rebase 0002-Remove-pg-from-profile_CFLAGS.patch to new version Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hwloc: Upgrade to 1.11.13Mingli Yu2019-07-211-2/+2
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* makedumpfile: Upgrade to 1.6.6Mingli Yu2019-07-213-30/+38
| | | | | | | Rebase two patches. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* crash: Upgrade to 7.2.6Mingli Yu2019-07-211-1/+1
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pmdk: update from 1.4.2 to 1.6Yongxin Liu2019-07-217-128/+24
| | | | | | | | | | | | | | | | 1) Use git repo instead of github archive tarball. 2) PMDK libraries can be installed in lib or lib64, depending on host building system. If host has /usr/local/lib64, libraries will be installed in lib64, otherwise they will be installed in lib. PMDK is only for 64-bit system, so use LIB_PREFIX=lib64 to force the install path to be lib64. 3) Use prefix instead of PREFIX to install. 4) Remove unneeded files in /usr/lib64/pmdk_debug. 5) Add "/usr/etc" and "/usr/share" to fix package QA issue. 6) Revise patches for version 1.6. Remove upstream accepted patches. Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: remove host specific info from header fileSlater, Joseph2019-07-212-0/+32
| | | | | | | Import patch from Debian. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* s-suite: push SRCREV to version 3.5Paolo Valente2019-07-211-2/+2
| | | | | Signed-off-by: Paolo Valente <paolo.valente@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-verve-plugin: 1.1.0 -> 2.0.0Kai Kang2019-07-211-4/+2
| | | | | | | xfce4-verve-plugin 2.0.0 is first GTK+ 3 release. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fio: Upgrade to 3.15Mingli Yu2019-07-181-1/+1
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dhcpcd: update to 7.2.3Oleksandr Kravchuk2019-07-181-2/+4
| | | | | Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftrace: upgrade 0.9.2 -> 0.9.3Zang Ruochen2019-07-181-2/+2
| | | | | | | -Upgrade from uftrace_0.9.2.bb to uftrace_0.9.3.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* setxkbmap: upgrade 1.3.1 -> 1.3.2Zang Ruochen2019-07-181-2/+2
| | | | | | | -Upgrade from setxkbmap_1.3.1.bb to setxkbmap_1.3.2.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unbound: create recipe for version 1.9.2Beniamin Sandu2019-07-182-0/+124
| | | | | Signed-off-by: Beniamin Sandu <beniaminsandu@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtevent: fix do_package_qa issueChangqing Li2019-07-171-1/+1
| | | | | | | | fix below error: ERROR: lib32-libtevent-0.10.0-r0 do_package_qa: QA Issue: non -dev/-dbg/nativesdk- package contains symlink .so: lib32-python3-tevent path '/work/core2-32-wrsmllib32-linux/lib32-libtevent/0.10.0-r0/packages-split/lib32-python3-tevent/usr/lib/python3.7/site-packages/_tevent.so' [dev-so] Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: Upgrade 3.18.1 -> 3.19Adrian Bunk2019-07-162-4/+4
| | | | | | | Licencing changed from 3-clause BSD to 2-clause BSD. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-dateutil: add native BBCLASSEXTENDJoshua Lock2019-07-161-0/+2
| | | | | Signed-off-by: Joshua Lock <jlock@vmware.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-attrs: add native BBCLASSEXTENDJoshua Lock2019-07-161-0/+2
| | | | | Signed-off-by: Joshua Lock <jlock@vmware.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-cffi: add missing RDEPENDS on pycparserJoshua Lock2019-07-161-0/+1
| | | | | | | | pycparser is a dependency as listed in the installation docs: https://cffi.readthedocs.io/en/release-1.12/installation.html Signed-off-by: Joshua Lock <jlock@vmware.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-pulseaudio-plugin: add dependency dbus-glibKai Kang2019-07-161-1/+1
| | | | | | | | Xfce core modules have ported to gdbus. But xfce4-pulseaudio-plugin stills needs dbus-glib. Add dbus-glib to DEPENDS. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-settings: 4.12.4 -> 4.13.7Kai Kang2019-07-162-55/+5
| | | | | | | | | | | | | | Upgrade xfce4-settings from 4.12.4 to 4.13.7: * update SRC_URI to re-use official tarball and not inherit xfce-git * remove unneeded backport patch * remove dependency gtk+ that gtk+3 is used now * remove dependency dbus-glib which is replaced by gdbus * clean DEPENDS that libxfce4util and xfconf are requried by libxfce4ui which is required by exo and garcon * remove packageconfig datetime-setter Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* garcon: 0.6.2 -> 0.6.3Kai Kang2019-07-161-3/+3
| | | | | | | * remove libxfce4util from DEPENDS which is required by libxfce4ui Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thunar-volman: 0.9.2 -> 0.9.3Kai Kang2019-07-161-3/+3
| | | | | | | | | * clean DEPENDS that removed items are required by exo: exo --> libxfce4ui --> libxfce4util --> glib-2.0 --> xfconf Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-dev-tools: 4.12.0 -> 4.13.0Kai Kang2019-07-161-2/+2
| | | | | Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-panel: 4.13.5 -> 4.13.6Kai Kang2019-07-161-4/+4
| | | | | | | | | | * clean DEPENDS - libxfce4util xfconf and gtk+3 are required by libxfce4ui which is required by garcon and exo * bbclass gtk-icon-cache has been inherited in xfce.bbclass Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-power-manager: 1.6.2 -> 1.6.3Kai Kang2019-07-161-4/+3
| | | | | | | | | | * clean DEPENDS - dbus-glib has been replaced by gdbus - gtk+3 glib-2.0 xfconf and libxfce4util are required by libxfce4ui which is required by xfce4-panel Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfdesktop: 4.13.4 -> 4.13.5Kai Kang2019-07-161-3/+3
| | | | | | | | | * clean DEPENDS - dbus-glib has been replaced by gdbus - libxfce4util and xfconf are required by libxfce4ui Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfwm4: 4.13.2 -> 4.13.3Kai Kang2019-07-161-3/+3
| | | | | | | | | * clean DEPENDS - remove dbus-glib which is replaced by gdbus - libxfce4util and xfconf are required by libxfce4ui Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-session: 4.13.2 -> 4.13.3Kai Kang2019-07-161-13/+3
| | | | | | | | | * remove dependency dbus-glib which is replaced by gdbus already * remove dependency gtk+ that gtk+3 is used right now * clean items in DEPENDS which are imported indirectly by libxfce4ui Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thunar: 1.8.6 -> 1.8.7Kai Kang2019-07-161-3/+3
| | | | | | | | | | * dbus-glib is removed from DEPENDS that it has been replace by gdbus from 1.7.0 * remove glib-2.0 gtk+3 libxfce4util and xfconf from DEPENDS for clean which are required by libxfce4ui Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfconf: 4.13.7 -> 4.13.8Kai Kang2019-07-161-4/+4
| | | | | | | | | | * remove dbus-glib from DEPENDS that it has been replaced by gdbus. glib-2.0 provides gdbus and has been imported to DEPENDS by libxfce4util. * inherit class gobject-introspection which has been supported by xfconf 4.13.8 Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* exo: 0.12.5 -> 0.12.6Kai Kang2019-07-161-3/+3
| | | | | | | | | | * gtk+3 is required but not added to DEPENDS that libxfce4ui depends on it already * remove libxfce4util from DEPENDS for clean that it is required by libxfce4ui Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxfce4ui: 4.13.5 -> 4.13.6Kai Kang2019-07-161-4/+4
| | | | | | | | | | * dependency glib-2.0 is required by libxfce4util, so remove it from DEPENDS to make it more clean. And sort DEPENDS at same time. * not inherit autotools and gettext which have been inherited in xfce.bbclass already Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxfce4util: 4.13.3 -> 4.13.4Kai Kang2019-07-161-2/+2
| | | | | Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: remove 5.6.40Hongxu Jia2019-07-1611-2057/+0
| | | | | | | | Lets remove it directly, since October would be a year after EOL so waiting until then would make it quite stale Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: Disable manpage building by config option instead of patchingAdrian Bunk2019-07-152-52/+1
| | | | | Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* exfat-utils: update 1.2.3 -> 1.3.0Luca Ceresoli2019-07-151-2/+2
| | | | | | | | 1.2.3 is >3 years old now, and several bugfixes have been applied in the meanwhile. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fuse-exfat: update 1.2.3 -> 1.3.0Luca Ceresoli2019-07-151-2/+2
| | | | | | | | 1.2.3 is >3 years old now, and several bugfixes have been applied in the meanwhile. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* exfat-utils: moved to githubLuca Ceresoli2019-07-151-1/+1
| | | | | | | exfat-utils has been moved long ago to github. Update HOMEPAGE. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fuse-exfat: moved to githubLuca Ceresoli2019-07-151-3/+3
| | | | | | | fuse-exfat has been moved long ago to github. Update URLs. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* postfix: use alternatives to manage /usr/lib/sendmailQi.Chen@windriver.com2019-07-151-6/+5
| | | | | | | | There are several packages which all provide /usr/lib/sendmail when lsb is enabled. So use alternative to manage it. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* picocom: update to 3.1Paul Eggleton2019-07-152-5/+125
| | | | | | | | | | | | | There have been a couple of releases since we last upgraded, including a number of additional features. Changelog is here: https://github.com/npat-efault/picocom/releases Also tweak SUMMARY - I don't think this has been 20k in a while; with this upgrade the binary alone went from 60k to 70k. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>