summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* sdbus-c++: Disable ccacheKhem Raj2023-01-211-0/+3
| | | | | | It adds spurious -isystem from somewhere else Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftreace: Fix a build raceKhem Raj2023-01-212-0/+39
| | | | | | | | | | | | | Fixes a build race seen after 0.13 upgrade | /home/pokybuild/yocto-worker/meta-oe/build/build/tmp/work/core2-64-poky-linux/uftrace/0.13-r0/git/cmds/dump.c: In function 'dump_mermaid_footer': | /home/pokybuild/yocto-worker/meta-oe/build/build/tmp/work/core2-64-poky-linux/uftrace/0.13-r0/git/cmds/dump.c:1347:10: fatal error: utils/mermaid.html.cstr: No such file or directory | 1347 | #include "utils/mermaid.html.cstr" /* This file is a converted of mermaid.html to one string literal in build-time */ | | ^~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | make[1]: *** [Makefile:310: /home/pokybuild/yocto-worker/meta-oe/build/build/tmp/work/core2-64-poky-linux/uftrace/0.13-r0/build/cmds/dump.o] Error 1 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: update to 8.2212.0Randy MacLeod2023-01-211-1/+1
| | | | | | | | | | | ptest results for qemux86-64/kvm with extra FS space and 1 GB RAM: Version | Passed | Failed | Skipped 8.2208 | 465 | 1 | 5 8.2212 | 470 | 0 | 5 Signed-off-by: Randy MacLeod <randy.macleod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librelp: update to 1.11.0Randy MacLeod2023-01-211-2/+0
| | | | | | | | | Drop "-Wno-error", it builds fine now. Release notes: https://github.com/rsyslog/librelp/blob/master/ChangeLog Signed-off-by: Randy MacLeod <randy.macleod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: cmake: Do not use -isystemKhem Raj2023-01-212-0/+193
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcereal: Use -idirafter instead of -isystemKhem Raj2023-01-212-0/+53
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thrift: Fix c++ and system header include order problemKhem Raj2023-01-212-0/+181
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rtorrent: Add missing dependency on autoconf-archiveKhem Raj2023-01-211-1/+1
| | | | | | | Fixes configure errors e.g. | configure:8269: error: possibly undefined macro: PKG_CHECK_EXISTS Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: Remove mongodb for upsupported archesKhem Raj2023-01-211-0/+4
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* exiv2: Upgrade to 0.27.6Khem Raj2023-01-2110-432/+19
| | | | | | Drop backported patches Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlsec1: Include xmlsec/parser.h for xmlSecParserSetDefaultOptions()Khem Raj2023-01-212-0/+44
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uw-imap: Fix build with clang 16Khem Raj2023-01-212-0/+179
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* espeak: Drop using 'register' keyword for storage classifierKhem Raj2023-01-212-0/+39
| | | | | | Fixes build with latest clang Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hplip: Update to 3.22.10Khem Raj2023-01-213-3/+312
| | | | | | Add a patch to drop 'register' keyword Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libol: Drop recipeKhem Raj2023-01-213-35/+0
| | | | | | | | | | | In past it was needed by syslog-ng until it was bundled into syslog-ng and once syslog-ng was upgraded [1] this recipe became more or less unused This package is now included in the syslog-ng 1.6.x or newer release tarball [1] https://git.openembedded.org/meta-openembedded/commit/?id=1a6e16bcb1145df51b15c19df0d7ef655b683f5e Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlstarlet: Fix build with clang16Khem Raj2023-01-212-2/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* net-snmp: Fix build with clang16Khem Raj2023-01-212-0/+33
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nspr: Fix build with clang16Khem Raj2023-01-212-0/+40
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rtorrent: Update to latest tip of trunkKhem Raj2023-01-212-115/+8
| | | | | | | | | | | | | | This is needed to get it working with latest compilers always --enable-aligned so it does not have to perform runtime test Drop the patch for removing AC_RUN_IFELSE as this macro is no longer excercised in OE builds Pin to c++14 for now, since std::binary_function is in use which is gone in c++17 ( default with clang 16+ ) License-Update: Use GPL-2.0 or later identifier correctly Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire-media-session: Use PW_ENABLE_DEPRECATEDKhem Raj2023-01-211-1/+2
| | | | | | | | | | pipewire 0.64 has removed [1] NODE_TARGET which is still used by pipewire-media-session so enable deprecated features for now to get the definition of PW_KEY_NODE_TARGET [2] [1] https://gitlab.freedesktop.org/pipewire/pipewire/-/releases/0.3.64#highlights [2] https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/2952 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ace: Upgrade to 6.5.19Khem Raj2023-01-211-4/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmimetic: Pin to using -std=c++14Khem Raj2023-01-211-1/+1
| | | | | | | | | | It uses unary_function which is removed in c++17 | ../../../git/mimetic/rfc822/header.h:37:21: error: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'? | public std::unary_function<const Field, bool> | ~~~~~^~~~~~~~~~~~~~ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gengetopt: Use std=c++14Khem Raj2023-01-211-0/+2
| | | | | | | | | | | It needs std::unary_operator which is gone in c++17, until it is forward ported to work with c++17, pin to c++14 ../../gengetopt-2.23/src/gm_utils.h:132:35: error: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'? | struct pair_print_f : public std::unary_function<T, void> | ~~~~~^~~~~~~~~~~~~~ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* log4cpp: Keep using std=c++14Khem Raj2023-01-211-0/+2
| | | | | | | | It still needs auto_ptr which is pre c++17 | ../../log4cpp/include/log4cpp/BufferingAppender.hh:21:81: error: no template named 'auto_ptr' in namespace 'std' Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ssiapi: Use c++14 standardKhem Raj2023-01-211-0/+2
| | | | | | | It depends on std::auto_ptr which is gone with c++17 therefore pin to c++14 until auto_ptr is replaced with something else e.g. unique_ptr Signed-off-by: Khem Raj <raj.khem@gmail.com>
* audiofile: Stick to c++14 stdKhem Raj2023-01-211-0/+2
| | | | | | | It uses std::unary_function which is removed from c++17 onwards, until this is removed/replaced we can not move beyond c++14 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ippool: Use unsigned int type for 1-bit integer bitfieldKhem Raj2023-01-212-0/+43
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gnuchess: Fix build with c++17Khem Raj2023-01-212-1/+151
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtorrent: Update to tip of trunkKhem Raj2023-01-212-39/+7
| | | | | | | | | Drop cross compile patch as we do not need it anymore since we now use --enable-aligned License-Update: Correctly mark the license as GPL-2.0+ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freerdp: Fix incompatible function pointer typeKhem Raj2023-01-212-0/+33
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* p8platform: Fix build with c++17 clangKhem Raj2023-01-212-68/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* satyr: Fix build with muslKhem Raj2023-01-211-13/+11
| | | | | | | Add missing typedefs for __compar_fn_t and compare_fn_t for non __GLIBC__ case. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlrpc-c: Upgrade to 1.54.06Khem Raj2023-01-212-33/+2
| | | | | | | | Drop upstream applied patch see [1] [1] https://github.com/mirror/xmlrpc-c/commit/148e64a5bb5588a89840ee498430332456c216f3 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmodplug: Fix build with c++17Khem Raj2023-01-212-2/+41
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-configobj: Upgrade 5.0.6 -> 5.0.8Leon Anavi2023-01-193-39/+13
| | | | | | | | | | | | | | Upgrade to release 5.0.8: - fixing/test for a regression introduced in 5.0.7 that prevented import validate from working - update testing to validate against python version 2.7 & 3.5-3.11 - update broken links / non-existent services and references License-Update: Use file LICENSE, no change of the license Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eventlet: Upgrade 0.33.2 -> 0.33.3Leon Anavi2023-01-191-1/+1
| | | | | | | | | Upgrade to release 0.33.3: - Fix greendns for dnspython 2.3.0+ Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* boinc-client: Update boinc from 7.20.4 to 7.20.5Gianfranco Costamagna2023-01-191-1/+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>
* redis: Upgrade to 6.2.9Chee Yang Lee2023-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Upgrade urgency: SECURITY, contains fixes to security issues. Security Fixes: (CVE-2022-35977) Integer overflow in the Redis SETRANGE and SORT/SORT_RO commands can drive Redis to OOM panic (CVE-2023-22458) Integer overflow in the Redis HRANDFIELD and ZRANDMEMBER commands can lead to denial-of-service Bug Fixes: Avoid possible hang when client issues long KEYS, SRANDMEMBER, HRANDFIELD, and ZRANDMEMBER commands and gets disconnected by client output buffer limit (#11676) Fix sentinel issue if replica changes IP (#11590) Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: Upgrade to 7.0.8Chee Yang Lee2023-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade urgency: SECURITY, contains fixes to security issues. Security Fixes: (CVE-2022-35977) Integer overflow in the Redis SETRANGE and SORT/SORT_RO commands can drive Redis to OOM panic (CVE-2023-22458) Integer overflow in the Redis HRANDFIELD and ZRANDMEMBER commands can lead to denial-of-service Bug Fixes Avoid possible hang when client issues long KEYS, SRANDMEMBER, HRANDFIELD, and ZRANDMEMBER commands and gets disconnected by client output buffer limit (#11676) Make sure that fork child doesn't do incremental rehashing (#11692) Fix a bug where blocking commands with a sub-second timeout would block forever (#11688) Fix sentinel issue if replica changes IP (#11590) Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnsmasq: Expand configuration optionsAlex Kiernan2023-01-171-17/+58
| | | | | | | | | Expose all current dnsmasq configuration options in PACKAGECONFIG, enable i18n generation, filter supplementary systemd files against DISTRO_FEATURES. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnsmasq: Merge .inc into .bbAlex Kiernan2023-01-172-91/+86
| | | | | Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-greenlet: Drop using register keywordKhem Raj2023-01-172-0/+33
| | | | | | Its gone in modern C/C++ since c++17 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbedtls: add option to use PSA for X.509/TLS operationsRoss Burton2023-01-171-0/+6
| | | | | | | | Add an option to use Platform Security Architecture for the X.509 and TLS operations. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl-demo-fb: Add recipeFabio Estevam2023-01-171-0/+17
| | | | | | | | | | Add a recipe for the LVGL framebuffer GUI demo. This allows to quickly test the LVGL framebuffer GUI demo application by running the "demo" binary. Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xlsxwriter: upgrade 3.0.6 -> 3.0.7Wang Mingyu2023-01-171-1/+1
| | | | | | | | | | | | Changelog: =========== * Improved :func:'autofit' algorithm to account for the additional width of autofilter and table dropdowns. * Improved :func:'autofit' take user defined column widths into account. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-txaio: upgrade 22.2.1 -> 23.1.1Wang Mingyu2023-01-171-2/+2
| | | | | | | | License-Update: Copyright changed from "Crossbar.io Technologies GmbH" to "typedef int GmbH" Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: upgrade 1.12.1 -> 1.13.0Wang Mingyu2023-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== - Add Starlite integration (#1748) - Adding support for the Starlite framework. Unhandled errors are captured. Performance spans for Starlite middleware are also captured. - Profiling: Remove sample buffer from profiler (#1791) - Profiling: Performance tweaks to profile sampler (#1789) - Add span for Django SimpleTemplateResponse rendering (#1818) - Use @wraps for Django Signal receivers (#1815) - Add enqueued_at and started_at to rq job extra (#1024) - Remove sanic v22 pin (#1819) - Add support for byterray and memoryview built-in types (#1833) - Handle "rc" in SQLAlchemy version. (#1812) - Doc: Use .venv (not .env) as a virtual env location in CONTRIBUTING.md (#1790) - Auto publish to internal pypi on release (#1823) - Added Python 3.11 to test suite (#1795) - Update test/linting dependencies (#1801) - Deps: bump sphinx from 5.2.3 to 5.3.0 (#1686) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-redis: upgrade 4.4.1 -> 4.4.2Wang Mingyu2023-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: =========== Experimental Features --------------------- Add support for BF.CARD (#2545) New Features ------------ Add support for custom connection pool class in NodesManager (#2547) Bug Fixes --------- Allow replica to master promotion in nodes_cache (#2549) Security Fix: Updating graph parser for potential injection cases (#2548) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyzmq: upgrade 24.0.1 -> 25.0.0Wang Mingyu2023-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== New: ------ - Added socket_class argument to zmq.Context.socket() - Support shadowing sockets with socket objects, not just via address, e.g. zmq.asyncio.Socket(other_socket). Shadowing an object preserves a reference to the original, unlike shadowing via address. - in zmq.auth, CredentialsProvider callbacks may now be async. - ZMQStream callbacks may now be async. - Add zmq.ReconnectStop draft constants. - Add manylinux_2_28 wheels for x86_64 CPython 3.10, 3.11, and PyPy 3.9 (these are in addition to not instead of the manylinux_2014 wheels). Fixed: ------- - When ZMQStream is given an async socket, it now warns and hooks up events correctly with the underlying socket, so the callback gets the received message, instead of sending the callback the incorrect arguments. - Fixed toml parse error in pyproject.toml, when installing from source with very old pip. - Removed expressed dependency on py when running with pypy, which hasn't been used in some time. Deprecated: ---------- - zmq.auth.ioloop.IOLoopAuthenticator is deprecated in favor of zmq.auth.asyncio.AsyncioAuthenticator - As part of migrating toward modern pytest, zmq.tests.BaseZMQTestCase is deprecated and should not be used outside pyzmq. - python setup.py test is deprecated as a way to launch the tests. Just use pytest. Removed: ---------- - Bundled subset of tornado's IOLoop (deprecated since pyzmq 17) is removed, so ZMQStream cannot be used without an actual install of tornado. - Remove support for tornado 4, meaning tornado is always assumed to run on asyncio. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.0.2 -> 3.1.0Wang Mingyu2023-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Add xdist pr default. (#1253) Create docker-publish.yml (#1250) Parallelize pytest with pytest-xdist (#1247) Support Python3.11 (#1246) Fix reconnectDelay to be within (100ms, 5min) (#1244) Fix typos in comments (#1233) WEB simulator, first version. (#1226) Clean async serial problem. (#1235) terminate when using 'randomize' and 'change_rate' at the same time (#1231) Used tooled python and OS (#1232) add 'change_rate' randomization option (#1229) add check_ci.sh (#1225) Simplify CI and use cache. (#1217) Solve issue 1210, update simulator (#1211) Add missing client calls in mixin.py. (#1206) Advanced simulator with cross memory. (#1195) AsyncModbusTcp/UdpClient honors delay_ms == 0 (#1203) (#1205) Fix #1188 and some pylint issues (#1189) Serial receive incomplete bytes.issue #1183 (#1185) Handle echo (#1186) Add updating server example. (#1176) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>