summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
Commit message (Collapse)AuthorAgeFilesLines
...
* vboxguestdrivers: fix build against 5.19 kernel / libc-headersBruce Ashfield2022-08-062-63/+8
| | | | | | | | | | | | | | | | | | | We've bounced back and forth with the mixed libc/kernel module structure of these drivers. In particular the location and content of stdarg.h has caused compile problems, or can't be located. In particular kernel versions have issues with stdarg.h and compatibility with the sysroot and libc-headers/uapi. If we include the file directly from the kernel source (STAGING_KERNEL_DIR) we get conflicting types on many structures, due to kernel .h files being found before libc .h files. if we grab just this one file from the source, and put it into our file structure, everything holds together. Plus, we get to drop a patch we are carrying to change the include of stdarg.h Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xrdp: upgrade 0.9.18 -> 0.9.19wangmy2022-08-061-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========== New features --------------- -Both inbound and outbound clipboards can now be restricted for text, files or images Bug fixes ----------- -CVE-2022-23613: Privilege escalation on xrdp-sesman (This fix is also in the out-of-band v0.9.18.1 release) -The versions of imlib2 used on RHEL 7 and 8 are now detected correctly (#2118) -Some situations where zombie processes could exist have been resolved (#2146, #2151, #2168) -Some null-pointer exceptions which can happen in the logging module have been addressed (#2149) -Some minor logging errors have been corrected (#2152) -The signal handling in sesman has been reworked to prevent race conditions when a child exits. This has also made it possible to reliably reload the sesman configuration with SIGHUP (#1729, #2168) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* spdlog: update to v1.10.0Markus Volk2022-08-062-71/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump fmt to version 8.1.1. Added file event handlers #2165, #2169 Thanks @seker. You can get callbacks from spdlog before/after log file has been opened or closed. This is useful for cleanup procedures or for adding something to the start/end of the log files. Example: void file_events_example() { // pass the spdlog::file_event_handlers to file sinks for open/close log file notifications spdlog::file_event_handlers handlers; handlers.before_open = [](spdlog::filename_t filename) { spdlog::info("Before opening {}", filename); }; handlers.after_open = [](spdlog::filename_t filename, std::FILE *fstream) { fputs("After opening\n", fstream); }; handlers.before_close = [](spdlog::filename_t filename, std::FILE *fstream) { fputs("Before closing\n", fstream); }; handlers.after_close = [](spdlog::filename_t filename) { spdlog::info("After closing {}", filename); }; auto my_logger = spdlog::basic_logger_st("some_logger", "logs/events-sample.txt", true, handlers); } Fixed rotating file sink: when disk is full log rotation resulted zero size log files. #2261. (thanks @kishorekrd for reporting). Added new udp_sink #2090. Thanks @CJLove (Experimental) Option to depend on std::format instead of fmtlib (set SPDLOG_USE_STD_FORMAT and use C++20). #2170 Thanks @sylveon . Improved file name for hourly file sink #2047. Thanks @seker . Added code location information for error handler #2048. Thanks @D-r-P-3-p-p-3-r . Fixed qt_sinks ctor #2056. Thanks @mguludag . List Debian instructions in the README #2057. Thanks @mr-c , Updated to latest Travis CI Build Status #2094. Thanks @jspraul . Fixed unhandled errors in udp sink. #2096. Thanks @mmarkeloff . CMake improvement regarding cmake_minimum_required and policy. #2098. Thanks @reddwarf69 . Fixed mongo_sink compile in older gcc versions #2102 . Thanks @yzz-ihep . Remove mutable keyword from mutex_ member in of sinks. #2140 . Thanks @sunlong169 . Fix typos #2171. Thanks @rex4539 . Fixed udp sink build on FreeBSD #2172. Thanks @keith-dev . Avoid c-style casting in stdout sinks. #2179. Thanks @ibmibmibm . Fixed tweakme.h compile error under msvcs when SPDLOG_FUNCTION is defined #2182. Thanks @Light3039 . Fixed compiling errors on AIX #2181. Thanks @lisr . Fixed runtime when build with -fsanitize=cfi #1972. Thanks @bansan85 . Remove extraneous semicolon #2190. Thanks @sylveon. Added example how to replace default logger. #2194. Thanks @rioki . Fixed usage of ranges and to_hex in the same compile unit #2195. Thanks @patrickroocks . Reduce warnings with pedantic compiler -Wuseless-cast #2216. Thanks @vnepogodin . Support using std::span in to_hex #2228. Thanks @timblechmann . Reset current size if rotated files on open #2234. Thanks @SpriteOvO . Allow forward-declaration of level_enum #2245. Thanks @daverigby . Call localtime() only if pattern_formatter really needs it #2246. Thanks @doug1234 . Removed unneeded spaces from code. #2249. Thanks @PixelParas . Added a few missing files/directories to the gitignore #2255. Thanks @LeonBrands . Fixed issue #2201 (Pattern width is not applied for missing source information). #2269. Thanks @kyuheon-kr . Limit max number of rotating files to 200000. (Fixed #1905). Thanks @surfycui (#2273) pattern_formatter: fix reorder-ctor warning #2278. Thanks @adriweb . Fixed spdlogConfig.cmake when built with SPDLOG_FMT_EXTERNAL_HO #2300. Thanks @adamcalhoon . Fixed fopen_s(..) error handling when PREVENT_CHILD_FD is defined #2305. Thanks @nUl1. Fixed compiler error when building on Windows with #define UNICODE #2317. Thanks @risa2000 . Added option to enable formatting of systemd sink #2324, #2320. Thanks @Delgan . Added optional "ident" argument to systemd sink constructor #2328. Thanks @Delgan . Special thanks to @tt4g for his support in answering community questions and issues. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imagemagick: add PACKAGECONFIG for C++ bindingsBartosz Golaszewski2022-08-061-0/+1
| | | | | | | | Add a new PACKAGECONFIG switch for building C++ bindings for imagemagick. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poco: upgrade 1.12.0 -> 1.12.1wangmy2022-08-063-67/+4
| | | | | | | | | | | | | | The following patches removed since they're included in 1.12.1: 0001-fix-unbundled-PCRE2-dependency.patch 0002-remove-providers-unitialization.patch Changelog: ========== - GH #3677 PocoFoundationConfig.cmake should now check for PCRE2 - GH #3686 SIGSEGV in OSSL_PROVIDER_unload with static OpenSSL3 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmxml: upgrade 3.3 -> 3.3.1wangmy2022-08-061-1/+1
| | | | | | | Fixed POSIX thread cleanup bugs (Issue #293) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freerdp: upgrade 2.7.0 -> 2.8.0wangmy2022-08-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Noteworthy changes: ------------------- Backported API to get peer accepted channel option flags Backported API to get peer accepted channel names Backported Stream_CheckAndLogRequiredLength Backported #7954: Add server side handling for [MS-RDPET] Backported #8010: Add server side handling for [MS-RDPECAM] Backported #8041: Remove ALAW/ULAW codecs from linux backends (unreliable) Backported #8051: Relieve CLIPRDR filename restriction when connecting to non-MS Windows servers Backported #8048: TLS version control Backported #7987: Add a new command line arg to enforce tls1.2 Fixed issues: -------------- Fixed #7837: Prevent out of bound reads for FFMPEG Backported #7859 and #7861: Unwind support for backtrace generation Backported #7440: wlfreerdp appid Backported #7832: RAIL window restore Backported #7833: Refactored WinPR thread locking Backported #7893: Mac rdpsnd memory leak fixes Backported #7895: Mac audin memory leak fixes Backported #7898: Automatic android versioning Backported #7916: GFX 10.7 capability support Backported #7949: Server RDPSND API improvements Backported #7957: Server DVC API improvements Backported #7760: Fixed osMinorType values Backported #8013: Add missing osMajorType values Backported #8076: Fix wrong usage of subband diffing flag (tile artifact fix) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* avro-c: upgrade 1.11.0 -> 1.11.1wangmy2022-08-061-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ccid: upgrade 1.4.33 -> 1.5.0Julian Haller2022-08-061-3/+3
| | | | | Signed-off-by: Julian Haller <julian.haller@philips.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pcsc-lite: upgrade 1.9.0 -> 1.9.8Julian Haller2022-08-062-50/+5
| | | | | | | | | The python3 related patch is no longer due to similar changes in the project. This also requires changing the RDEPENDS to python3-core to avoid package QA warnings. Signed-off-by: Julian Haller <julian.haller@philips.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googlebenchmark: upgrade 1.6.1 -> 1.7.0wangmy2022-07-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog from 1.6.1 to 1.7.0: ========== Stop generating the export header and just check it in use target_compile_definitions simplified code Add docs for ThreadRange. Add docs on Memory profiling (#1217). Suppress GoogleTest warnings on windows (MSVC) too. Expand documentation for unpacking arbitrary arguments. Refine docs on changing cpufreq governor Refine the User Guide CPU Frequency Scaling section Fix some errors in Custom Statistics document demo code. Cache PerfCounters instance in PerfCountersMeasurement Fix cross compilation for macOS ARM builds in cibuildwheel bump numby, as per dependabot Use Win32 API only for Win32 apps Add mutex when reading counters_ (Fixes #1335) Avoid potential truncation issues for the integral type parameterized tests. Expose default display reporter creation in public API explicitly export public symbols Check for macro existence before using simplify reference to internal path Introduce the possibility to customize the help printer function move bzl file out of tools resolve case sensitivity issues with WORKSPACE and workspace Make generate_export_header.bzl work for Windows. @platforms is magical; remove it from WORKSPACE. restore BENCHMARK_MAIN() Allow setting the default time unit globally Add long description and content type for proper PyPI presentation Add SetBenchmarkFilter() to set --benchmark_filter flag value in user code Add PyPI upload job to wheel building workflow Fix float comparaison and add float comparison warning Add BENCHMARK_STATIC_DEFINE to the Python bindings' cc_binary local… Remove conditional trigger from PyPI upload job Change artifact download name to dist to match upload name Build //:benchmark as a static library only. Fix Bazel build breakage caused by commit 6a894bd. [nfc] Reformat doc-string in generate_export_header Updates for inclusive language getting sysinfo in line with Google style Small optimization to counter map management Shut down Bazel gracefully and revert wheel build strategy to job matrix Fix wheel job name for PyPI uploads Filter out benchmarks that start with "DISABLED_" Add benchmark labels to the output of the comparison tool Enable -Wconversion Add installation and build instructions for Python bindings fix some typos Add option to get the verbosity provided by commandline flag -v (#1330) Add support to get clock for new architecture CSKY Introduce warmup phase to BenchmarkRunner (#1130) Report large numbers in scientific notation in console reporter (#1303) add multiple OSes to bazel workflow Add possibility to ask for libbenchmark version number (#1004) Fix DoNotOptimize() GCC copy overhead (#1340) Clarify that the cpu frequency is not used for benchmark timings. Revert "Add possibility to ask for libbenchmark version number (#1004)" Remove redundant formatting tags Fix DoNotOptimize() GCC compile error with some types (#1340) Expose default help printer function fix sanitizer builds by using clang 13 Suppress nvcc offsetof warning Expose google_benchmark.State for python bindings. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vboxguestdrivers: fix build failure on 32 bit architecturesGianfranco2022-07-241-2/+2
| | | | | | | | A variable has been renamed upstream from BUILD_TARGET_ARCH to VBOX_KBUILD_TARGET_ARCH 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>
* vboxguestdrivers: upgrade 6.1.34 -> 6.1.36Gianfranco Costamagna2022-07-242-2/+2
| | | | | | | | refresh patch for new upstream release 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>
* libp11: upgrade 0.4.11 -> 0.4.12wangmy2022-07-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Fixed using an explicitly provided PIN regardless of the secure login flag Fixed RSA_PKCS1_PADDING handling Fixed a crash on LLP64, including 64-bit Windows Fixed searching objects when both ID and label are specified Fixed the OAEP "source" parameter Fixed object searching by label Fixed thread safety in slot enumeration Fixed storing certificates on tokens Fixed several memory leaks Fixed OpenSSL 3.0 compatibility Fixed LibreSSL compatibility Major concurrency improvements and refactoring Added re-numeration of slots as an engine control command Added the PKCS11_update_slots() API function Added support for the SHA3 hash function Added a self-test for engine RSA operations Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poco: Link with libatomic on mipsKhem Raj2022-07-181-0/+1
| | | | | | | mips compiler does not provide intrinsics for 64bit atomics, use libatomics to get them. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe: ignore patched CVEsDavide Gardenal2022-07-183-0/+13
| | | | | | | | | Some old CVEs don't have a vulnerable version range in the NVD database, this causes come mismatch with cve-check. Ignore many CVEs that are picked up by the class but are patched in our products. Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poco: Link with libatomic on riscv32Khem Raj2022-07-151-0/+2
| | | | | | | | | It does not have compiler intrinsics for 64bit atomics Fixes MetricsSample.cpp:(.text._ZN16MetricsSampleApp4mainERKNSt3__16vectorINS0_12basic_stringIcNS0_11char_t raitsIcEENS0_9allocatorIcEEEENS5_IS7_EEEE[_ZN16MetricsSampleApp4mainERKNSt3__16vectorINS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEENS5_IS7_EEEE]+0x104): undefined reference to `__atomic_compare_exchange_8' Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poco: upgrade 1.11.3 -> 1.12.0Andrej Valek2022-07-133-3/+68
| | | | | | | | | - switch from PCRE -> PCRE2 - add Prometheus library - add option to enable/disable ActiveRecord (disabled by default) Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liburing: upgrade 2.1 -> 2.2wangmy2022-07-122-64/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0001-test-Use-syscall-wrappers-instead-of-using-syscall-2.patch removed since it's included in 2.2. License-Update: Add "kernel version dependency" Add affect of "ulimit settings" Changelog: =========== - Support non-libc builds. - Optimized syscall handling for x86-64/x86/aarch64. - Enable non-lib function calls for fast path functions. - Add support for multishot accept. - io_uring_register_files() will set RLIMIT_NOFILE if necessary. - Add support for registered ring fds, io_uring_register_ring_fd(), reducingthe overhead of an io_uring_enter() system call. - Add support for the message ring opcode. - Add support for newer request cancelation features. - Add support for IORING_SETUP_COOP_TASKRUN, which can help reduce the overhead of io_uring in general. Most applications should set this flag, see the io_uring_setup.2 man page for details. - Add support for registering a sparse buffer and file set. - Add support for a new buffer provide scheme, see io_uring_register_buf_ring.3 for details. - Add io_uring_submit_and_wait_timeout() for submitting IO and waiting for completions with a timeout. - Add io_uring_prep_{read,write}v2 prep helpers. - Add io_uring_prep_close_direct() helper. - Add support for SQE128 and CQE32, which are doubly sized SQE and CQE rings. This is needed for some cases of the new IORING_OP_URING_CMD, notably for NVMe passthrough. - ~5500 lines of man page additions, including adding ~90 new man pages. - Synced with the 5.19 kernel release, supporting all the features of 5.19 and earlier. - 24 new regression test cases, and ~7000 lines of new tests in general. - General optimizations and fixes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Link with libatomic on rv32Khem Raj2022-07-111-0/+1
| | | | | | | Fixes undefined reference to `__atomic_fetch_add_8' Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: upgrade 22.06.0 -> 22.07.0wangmy2022-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ========== core: * Fix crash when filling in forms in some files. Issue #1258 * Fix first lines of Annotations sometimes being cut off. Issue #1246 * Signatures: Don't crash if the signature doesn't have a common name * CairoFontEngine: increment font_face reference when retrieving from the cache * Add ToUnicode support for lessorequalslant and greaterorequalslant glib: * Add support for stamp annotation build system: * Tweaks on how gperf is run Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hwdata: upgrade 0.360 -> 0.361wangmy2022-07-071-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Link with libatomic on mipsKhem Raj2022-07-071-0/+2
| | | | | | | Fixes linking errors e.g. parallel.cpp:(.text._ZN3tbb6detail2d19start_forINS1_13blocked_rangeIiEEN2cv12_GLOBAL__N_113ProxyLoopBodyEKNS1_16auto_partitionerEE8finalizeERKNS1_14execution_dataE+0xe8): undefined reference to `__atomic_fetch_add_8' Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imagemagick: upgrade 7.0.10-25 -> 7.0.10-62Davide Gardenal2022-07-061-4/+4
| | | | | | | | | | | | | | | | | This upgrade includes patches for the following CVEs: - CVE-2020-13902 - CVE-2020-27829 - CVE-2020-29599 - CVE-2021-20176 - CVE-2021-20241 - CVE-2021-20243 - CVE-2021-20244 - CVE-2021-20245 - CVE-2021-20246 - CVE-2021-3596 Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fix(syslog-ng): warning about conf versionAurélien Bertron2022-07-022-2/+2
| | | | | | The service warned on startup about running in compatibility mode since the configuration version was "3.31" instead of "3.36". Signed-off-by: Khem Raj <raj.khem@gmail.com>
* clinfo: use virtual opencl loader providerjybros2022-07-021-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gperftools: upgrade 2.9.1 -> 2.10wangmy2022-07-022-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | ppc-musl.patch refreshed for new version. Changelog: ========== * Matt T. Proud contributed documentation fix to call Go programming language by it's true name instead of golang. * Robert Scott contributed debugallocator feature to use readable (PROT_READ) fence pages. This is activated by TCMALLOC_PAGE_FENCE_READABLE environment veriable. * User stdpain contributed fix for cmake detection of libunwind. * Natale Patriciello contributed fix for OSX Monterey support. * Volodymyr Nikolaichuk contributed support for returning memory back to OS by using mmap with MAP_FIXED and PROT_NONE. It is off by default and enabled by preprocessor define: FREE_MMAP_PROT_NONE. This should help OSes that don't support Linux-style madvise MADV_DONTNEED or BSD-style MADV_FREE. * Jingyun Hua has contributed basic support for LoongArch. * Github issue #1338 of failing to build on some recent musl versions has been fixed. * Github issue #1321 of failing to ship cmake bits with .tar.gz archive has been fixed. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Upgrade to version 4.6.0Zoltán Böszörményi2022-06-302-32/+3
| | | | | | | | Re-enable automatic ffmpeg PACKAGECONFIG. Drop an upstream patch. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syslog-ng: upgrade 3.36.1 -> 3.37.1wangmy2022-06-301-1/+1
| | | | | | | | Changelog: https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-3.37.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poco: upgrade 1.11.2 -> 1.11.3wangmy2022-06-301-1/+1
| | | | | | | | | | | | Changelog: =========================== - GH #3567: fix(openssl-initializer): check legacy provider existence for legacy exception - GH #3587: MySQL UUID binding temporary string - GH #3632: Redis - add TLS support - updated a few copyright dates Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openldap: pass correct URANDOM_DEVICE to CPPFLAGSYi Zhao2022-06-301-1/+1
| | | | | | | | | | | | We encountered a runtime error with slappasswd: $ slappasswd -s foo Password generation failed for scheme {SSHA}: This is because the URANDOM_DEVICE is not passed to CPPFLAGS correctly, then the program can not open /dev/urandom. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* inotify-tools: upgrade 3.22.1.0 -> 3.22.6.0wangmy2022-06-301-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: upgrade 22.05.0 -> 22.06.0Wang Mingyu2022-06-061-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========== core: * Forms: Fix crash in forms with their own DR * Refactor CairoFontEngine caching * CairoOutputDev: preserve text color when drawing type 3 glyphs * Windows: font code simplification * Minor code improvements cpp: * Add missing header utils: * pdfattach: Assume filename is utf8 encoded * pdftohtml: Fix type 3 font size calculation Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* function2: upgrade 4.2.0 -> 4.2.1Wang Mingyu2022-06-061-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hwdata: upgrade 0.359 -> 0.360Wang Mingyu2022-06-061-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* htop: upgrade 3.2.0 -> 3.2.1Wang Mingyu2022-06-061-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* links: upgrade 2.26 -> 2.27Wang Mingyu2022-05-311-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libbytesize: upgrade 2.6 -> 2.7Wang Mingyu2022-05-311-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ========== Added translation using Weblate (Croatian) Translated using Weblate (Croatian) build: avoid bashisms in configure Do not use distutils to get Python library path Revert "Translations update from Weblate" Fix warnings dicovered by the GCC analyzer Fix some warnings and typos in docstrings and comments Remove Travis CI configuration Fix skipping tests when required locale is missing Update translation files Update translation files Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hidapi: upgrade 0.11.2 -> 0.12.0Wang Mingyu2022-05-311-2/+2
| | | | | | | | | | | | | | | | | | Changelog: ========== Windows: migrate from SetupApi to CfgMgr32 (#362) - as per recommendation from Microsoft; Windows: add hid_winapi_get_container_id WinAPI-specific function (#379); Windows: improved error messages (#388); Windows: fixed out-of-boundary memory access for some of the function (#418); windows: Add .rc (#415); macOS: add hid_darwin_get_location_id macOS-specific function (#378); macOS: add macOS-specific function(s) to open device(s) in non-exclusive mode (#397); libusb: improved CMake dependency on Iconv (#405) - as a result, better support for NetBSD; general: documentation improvements; general: small code cleanups/improvements; Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* devmem2: the source and patches moved to github repoDenys Dmytriyenko2022-05-315-226/+19
| | | | | | | | | | | | To cleanup metadata and improve source code management, github repo was created here with all patches integrated: https://github.com/denix0/devmem2 Update recipe accordingly, bump the version while at it to distinguish from the original. Signed-off-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lzop: add (from oe-core)Ross Burton2022-05-292-0/+417
| | | | | | | | lzop is being removed from oe-core, so add it here for people who still want to use it. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* smarty: upgrade 4.1.0 -> 4.1.1Wang Mingyu2022-05-241-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ========== Security -------- Prevent PHP injection through malicious block name or include file name. This addresses CVE-2022-29221 Fixed ------- Exclude docs and demo from export and composer #751 PHP 8.1 deprecation notices in demo/plugins/cacheresource.pdo.php #706 PHP 8.1 deprecation notices in truncate modifier #699 Math equation max(x, y) didn't work anymore #721 Fix PHP 8.1 deprecated warning when calling rtrim #743 PHP 8.1: fix deprecation in escape modifier #727 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openldap: Remove unnecessary use-urandom.patchJiaqing Zhao2022-05-242-36/+0
| | | | | | | | | | use-urandom.patch sets URANDOM_DEVICE to /dev/urandom when cross compiling, but the same value is also defined in the recipe's compile flags. This patch removes that unnecessary patch and resolves the redefinition warning. Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: move test dependencies to ptest packagePeter Marko2022-05-241-1/+2
| | | | | | | | | | | | This reverts and reworks commit e75cc87c4f944dff766c426fafafd48c378544fe These tools are needed by test-suites, not the package itself. I do not want bash (gpl3) or python (big/lot of dependencies) in my release image when I have ptest enabled in my distro for sdk/testing image. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlsec1: upgrade 1.2.33 -> 1.2.34wangmy2022-05-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unixodbc: upgrade 2.3.9 -> 2.3.11wangmy2022-05-091-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ========== * Add connection pooling via wide connection functions * Remove "#define VERSION" from unixodbc_conf.h * Call driver functions through prototypes * Add connection pool limit option * Add fseeko support in cursor lib * Try and prevent logging buffer overflow * Add 'echo' option to isql/iusql * Alter isql/iusql buffering * Alter unicode to ascii conversion in SQLGetDiagField * Fix pooling problem when user name and or password is not provided * Fix a couple of reported buffer overflow conditions * Fix iconv leak with timeout in pooled connection Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: upgrade 22.04.0 -> 22.05.0wangmy2022-05-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Release 22.05.0: core: * Annotations: Make sure we embed fonts for the FreeText annots * Forms: Make sure we embedd fonts as needed * Signatures: Make sure we embed the needed fonts * CairoOutputDev: color type 3 fonts * fix two bugs in multiline find_text() * code improvements utils: * pdftotext: added TSV mode * HtmlOutputDev: don't use png.h cpp: * Use time_t for time * Add page_transition::durationReal qt: * Pass leftFontSize down to 'FormWidgetSignature::signDocumentWithAppearence' Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nano: upgrade 6.2 -> 6.3wangmy2022-05-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hwdata: upgrade 0.358 -> 0.359wangmy2022-05-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* htop: upgrade 3.1.2 -> 3.2.0wangmy2022-05-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>