summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* libyui-ncurses: Disable WerrorKhem Raj2021-03-031-2/+1
| | | | | | | | | | | There are new warnings seen with new clang 12 and gcc11 lets disable the warnings-as-errors for now src/NCPopupTextEntry.cc:76:74: error: 'void operator delete(void*, std::size_t)' called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] | 76 | NCInputField::PLAIN); | | ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libyui,libyui-ncurses: Upgrade to 4.0.0Khem Raj2021-03-036-75/+17
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Pascal Bach <pascal.bach@siemens.com>
* mongodb: Include <optional> c++ headerKhem Raj2021-03-032-0/+30
| | | | | | Fixes build with gcc11 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: Upgrade to 1.36.1Khem Raj2021-03-031-2/+2
| | | | | | | | | Changelog https://github.com/grpc/grpc/releases/tag/v1.36.0-pre1 https://github.com/grpc/grpc/releases/tag/v1.36.0 https://github.com/grpc/grpc/releases/tag/v1.36.1 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opengl-es-cts: Disable -Wuninitialized for external/amberKhem Raj2021-03-032-0/+30
| | | | | | | | | | | the code in verifier.cc needs to be ported to use enums or memcpy as it violates aliasing rules. Until then disable the warning HexFloat16ToFloat, HexFloat10ToFloat, HexFloat11ToFloat are the functions to be reworked in external/amber/src/src/verifier.cc Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
* rsyslog: Update 8.2012.0 -> 8.2102.0Yi Fan Yu2021-03-031-2/+2
| | | | | | | | | | | | | | | | | | Ptest Results: (Timeout 800) (qemux86-64) 2012 2102 ================ TOTAL: 424 424 PASS: 369 369 SKIP: 41 41 XFAIL: 0 0 FAIL: 14 14 XPASS: 0 0 ERROR: 0 0 Many ptest failures are due to busybox logger not having the `-d` flag. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs: Drop using JS_VOLATILE_ARMKhem Raj2021-03-032-0/+112
| | | | | | | | | | | | | | | JS_VOLATILE_ARM was a workaround for a gcc 4.7 bug on B2G where it would generate unaligned word accesses that should have been individual byte accesses. firefox now a days require at least gcc 6.1+ (and ARM systems support unaligned accesses). see [1] in gcc11 volatile wont be accepted as argument qualifier in functions, hence the build breaks, this patch unbreaks it [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1495731 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* libinih: install header files without prefix dir inihKai Kang2021-03-032-1/+26
| | | | | | | | | | The other flavor of inih which adapted by Fedora and Ubuntu installs header files to /usr/include directly. And xfsprogs 5.10.0 also checks ini.h without extra search path and failed. So install header files without prefix dir inih. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire: Rework 0.3 recipe and upgrade to 0.3.22Carlos Rafael Giani2021-03-032-77/+273
| | | | | | | | | | | | | | | | * Use a versioned recipe instead of _git * Add more packageconfigs: alsa, docs, sdl2, sndfile, v4l2, pipewire-alsa, pipewire-jack * Split SPA and module packages dynamically to generate one package for each SPA plugin and for each module * Split pipewire library, shim PulseAudio daemon, main tools & SPA tools, pipewire-alsa, pipewire-jack, ALSA card profiles, GStreamer plugin, and example session manager into separate packages * Set up a "pipewire" user and group to run the PipeWire daemon with that user instead of root Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire: Move to meta-multimediaCarlos Rafael Giani2021-03-032-0/+0
| | | | | Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfsprogs: 5.9.0 -> 5.10.0Kai Kang2021-03-031-2/+2
| | | | | | | | | Upgrade xfsprogs from 5.9.0 to 5.10.0 * add build dependency libinih Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mcelog: Upgrade to 175Mingli Yu2021-03-032-8/+8
| | | | | | | Rebase 0001-test-avoid-the-pfa-test-hang.patch to the new version. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Upgrade to 4.5.1Khem Raj2021-03-034-31/+60
| | | | | | | | Drop upstreamed patch Add patches to support gcc 11 while here Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Jose Quaresma <quaresma.jose@gmail.com>
* minifi-cpp: include limits header for numeric_limits definitionKhem Raj2021-03-032-0/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* squid: Include <limits> for using std::numeric_limitsKhem Raj2021-03-032-3/+108
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vlc: Fix build with gcc 11Khem Raj2021-03-032-0/+44
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* nautilus: Drop use of volatileKhem Raj2021-03-032-0/+33
| | | | | | | volatile qualifier has been dropped in gcc11 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* gerbera: Update to 1.7.0Khem Raj2021-03-032-2/+35
| | | | | | | Fix build with gcc11 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* srt: Backport fix for missing <limits> headerKhem Raj2021-03-032-0/+27
| | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Jose Quaresma <quaresma.jose@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* mpich: Upgrade to 3.4.1Khem Raj2021-03-032-47/+54
| | | | | | | | Add fixes to work with/with-out X Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Jose Quaresma <quaresma.jose@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* v4l-utils: Package systemd fragment for systemd-udevd.service.dKhem Raj2021-03-031-1/+2
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
* v4l-utils: update to 1.20.0Ulrich ?lmann2021-03-025-93/+7
| | | | | | | | | | | | Add new buildtime configuration options, update context of two patches and remove two patches as there are fixes [1]-[3] found upstream in the meantime. [1] 38f4ce74275a ("keytable: use input_event properly") [2] 8b7e6ce9367f ("keytable: add compatibility for input_event_sec") [3] 976a2f681b4e ("keymap.h needs sys/types.h and argp.h with musl") Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Fix do_package error when enable multilib.zhengruoqin2021-03-021-0/+5
| | | | | | | | | | | | | | | | | ERROR: grpc-1.35.0-r0 do_package: QA Issue: grpc: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/pkgconfig /usr/lib/pkgconfig/grpc.pc /usr/lib/pkgconfig/grpc_unsecure.pc /usr/lib/pkgconfig/grpc++.pc /usr/lib/pkgconfig/gpr.pc /usr/lib/pkgconfig/grpc++_unsecure.pc Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. grpc: 7 installed and not shipped files. [installed-vs-shipped] ERROR: grpc-1.35.0-r0 do_package: Fatal QA errors found, failing task. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2/libdevmapper: 2.03.06 -> 2.03.11Hongxu Jia2021-03-025-44/+11
| | | | | | | | | | | Drop backport patch: - 0001-dev-hdc-open-failed-No-medium-found-will-print-out-i.patch Refresh: - 0001-fix-command-bin-findmnt-bin-lsblk-bin-sort-not-found.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbedtls: Fix gcc11 stringop-overflow warningKhem Raj2021-03-022-0/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mpd: Upgrade to 0.22 seriesKhem Raj2021-03-024-168/+96
| | | | | | | | | | | Drop the gcc10 patches the problem is fixed in newer versions Migrate to use meson build system Drop libwrap packageconfig, its dropped upstream too Use systemd_user_unit_dir to match OE Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Max Kellermann <max.kellermann@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* glog: Upgrade to 0.4.0Khem Raj2021-03-014-161/+21
| | | | | | | Drop upstreamed patch Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Vyacheslav Yurkov <Vyacheslav.Yurkov@bruker.com>
* dvb-apps: Allow insecure inc pathsKhem Raj2021-03-011-0/+2
| | | | | | | | Latest perl have switched the default to not allow the unsafe include paths like current dir (.), but dvb-apps depend on this behaviour Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
* libauthen-sasl-perl,libhtml-tree-perl: allow PERL_USE_UNSAFE_INCKhem Raj2021-03-012-0/+4
| | | | | | | | latest perl has made it defualt to remove current directory from default include paths but some modules still depend on this behavior, so let them use it Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-semantic-version: Add recipeLeon Anavi2021-03-011-0/+12
| | | | | | | | | | | Add semantic_version - a library implementing the 'SemVer' scheme. Version 2.8.5 brings: - Properly handle wildcards in SimpleSpec (e.g. ==1.2.*) Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohttp: Upgrade 3.7.3 -> 3.7.4Leon Anavi2021-03-011-1/+1
| | | | | | | | | | | | | | Upgrade to release 3.7.4: - (SECURITY BUG) Started preventing open redirects in the aiohttp.web.normalize_path_middleware middleware. - Fix interpretation difference of the pure-Python and the Cython-based HTTP parsers construct a yarl.URL object for HTTP request-target. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-autobahn: Upgrade 21.2.1 -> 21.2.2Leon Anavi2021-03-011-1/+1
| | | | | | | | | | | | | | | | | | | | Upgrade to release 21.2.2: - fix: correct some sphinx doc references - new: minimum supported Python (language) version is now 3.7 (on CPython and PyPy) - new: more XBR proxy/stub code generation capabilities (RPC call/invoation handlers) - fix: wamp-cryptosign loading of keys from SSH agent - fix: update Docker image building and build Docker multi-arch images - new: add more WAMP-cryptosign signature test vectors and unit tests - fix: include XBR code rendering templates in package manifest Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tqdm: Upgrade 4.57.0 -> 4.58.0Leon Anavi2021-03-011-1/+1
| | | | | | | | | | | | | Upgrade to release 4.58.0: - add start delay in seconds - add tests - misc code tidy - misc documentation updates Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyzmq: Upgrade 22.0.2 -> 22.0.3Leon Anavi2021-03-011-1/+1
| | | | | | | | | | | Upgrade to release 22.0.3: - Fix fork-safety bug in garbage collection thread (regression in 20.0) when using subprocesses. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rsa: Upgrade 4.7.1 -> 4.7.2Leon Anavi2021-03-011-1/+1
| | | | | | | | | | Upgrade to release 4.7.2: - Fix picking/unpickling issue introduced in 4.7 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cvxopt: Upgrade 1.2.5 -> 1.2.6Leon Anavi2021-03-011-2/+2
| | | | | | | | | | | | | | | | Upgrade to release 1.2.6: - Change construction of sparse matrix to avoid limitations of linear indexing with long int - Make create_indexlist declaration match definition in dense.c - Update version, copyright, and documentation - Fixes typos in examples, documentation License-Update: Update year Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pulsectl: Upgrade 20.5.1 -> 21.2.0Leon Anavi2021-03-011-2/+1
| | | | | | | | | | Upgrade to release 21.2.0: - Link pulsectl-asyncio as an alternative for async code Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-markdown: Upgrade 3.3.3 -> 3.3.4Leon Anavi2021-03-011-2/+1
| | | | | | | | | | | | | | | Upgrade to release 3.3.4: - Properly parse unclosed tags in code spans - Properly parse processing instructions in md_in_html - Properly parse code spans in md_in_html - Preserve text immediately before an admonition - Simplified regex for HTML placeholders addressing - Ensure permalinks and ankorlinks are not restricted by toc_depth Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pytest-runner: Upgrade 5.2 -> 5.3.0Leon Anavi2021-03-011-3/+2
| | | | | | | | | | | | | Upgrade to release 5.3.0: - Require Python 3.6 or later - Refreshed package metadata License-Update: License remains MIT Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: Upgrade 2.4.137.3 -> 2.4.138Leon Anavi2021-03-011-2/+2
| | | | | | | | | | | Upgrade to release 2.4.138: - Bump version - Bump deps Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cffi: Upgrade 1.14.4 -> 1.14.5Leon Anavi2021-03-011-1/+1
| | | | | | | | | | | Upgrade to release 1.14.5: - Source fix for old gcc version - This and future releases should include wheels on more platforms Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pandas: Upgrade 1.2.1 -> 1.2.2Leon Anavi2021-03-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.2.2: - Fixed regression in read_excel() that caused it to raise AttributeError when checking version of older xlrd versions - Fixed regression in DataFrame constructor reordering element when construction from datetime ndarray with dtype not "datetime64[ns]" - Fixed regression in DataFrame.astype() and Series.astype() not casting to bytes dtype - Fixed regression in to_pickle() failing to create bz2/xz compressed pickle files with protocol=5 - Fixed regression in pandas.testing.assert_series_equal() and pandas.testing.assert_frame_equal() always raising AssertionError when comparing extension dtypes - Fixed regression in to_csv() opening codecs.StreamWriter in binary mode instead of in text mode and ignoring user-provided mode - Fixed regression in Categorical.astype() casting to incorrect dtype when np.int32 is passed to dtype argument - Fixed regression in to_excel() creating corrupt files when appending (mode="a") to an existing file - Fixed regression in DataFrame.transform() failing in case of an empty DataFrame or Series - Fixed regression in groupby() or resample() when aggregating an all-NaN or numeric object dtype column - Fixed regression in Rolling.count() where the min_periods argument would be set to 0 after the operation - Fixed regression in read_excel() that incorrectly raised when the argument io was a non-path and non-buffer and the engine argument was specified - pandas.read_excel() error message when a specified sheetname does not exist is now uniform across engines - Fixed bug in pandas.read_excel() producing incorrect results when the engine openpyxl is used and the excel file is missing or has incorrect dimension information; the fix requires openpyxl >= 3.0.0, prior versions may still fail - Fixed bug in pandas.read_excel() sometimes producing a DataFrame with trailing rows of np.nan when the engine openpyxl is used Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rsa: Upgrade 4.7 -> 4.7.1Leon Anavi2021-03-011-1/+1
| | | | | | | | | | Upgrade to release 4.7.1: - Fix threading issue introduced in 4.7 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remmina: Upgrade 1.4.10 -> 1.4.11Alejandro Hernandez Samaniego2021-02-281-2/+2
| | | | | Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freerdp: Upgrade 2.2.0 -> 2.3.0Alejandro Hernandez Samaniego2021-02-281-1/+1
| | | | | Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mosquitto: Upgrade 2.0.7 -> 2.0.8Gianfranco2021-02-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2.0.8 - 2021-02-25 ================== Broker: - Fix incorrect datatypes in `struct mosquitto_evt_tick`. This changes the size and offset of two of the members of this struct, and changes the size of the struct. This is an ABI break, but is considered to be acceptable because plugins should never be allocating their own instance of this struct, and currently none of the struct members are used for anything, so a plugin should not be accessing them. It would also be safe to read/write from the existing struct parameters. - Give compile time warning if libwebsockets compiled without external poll support. Closes #2060. - Fix memory tracking not being available on FreeBSD or macOS. Closes #2096. Client library: - Fix mosquitto_{pub|sub}_topic_check() functions not returning MOSQ_ERR_INVAL on topic == NULL. Clients: - Fix possible loss of data in `mosquitto_pub -l` when sending multiple long lines. Closes #2078. Build: - Provide a mechanism for Docker users to run a broker that doesn't use authentication, without having to provide their own configuration file. Closes #2040. Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librcereal: A couple of improvementsPeter Kjellerstedt2021-02-281-7/+3
| | | | | | | | | | * Add "+git${SRCPV}" to PV to indicate that a non-released version is used. * Do not redefine FILES_${PN}-dev; the default will work just fine. * Move PROVIDES to better match the style guide. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgphoto2: upgrade 2.5.26 -> 2.5.27Wang Mingyu2021-02-281-2/+2
| | | | | Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gphoto2: upgrade 2.5.26 -> 2.5.27Wang Mingyu2021-02-281-2/+2
| | | | | Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vsftpd: allow newfstatat and pselect6 syscalls in the seccomp sandboxYi Zhao2021-02-282-0/+52
| | | | | | | | | | | | | | | | | | | | Allow newfstatat and pselect6 in the seccomp sanbox for glibc 2.33. Fixes the following OOPS error: root@qemux86-64:~# tnftp 192.168.1.1 Connected to 192.168.1.1. 220 (vsFTPd 3.0.3) Name (192.168.1.1:root): anonymous 331 Please specify the password. Password: 230 Login successful. Remote system type is UNIX. Using binary mode to transfer files. ftp> ls OOPS: priv_sock_get_cmd Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>