Commit Graph

10704 Commits

Author SHA1 Message Date
Adrian Zaharia d799db35da lapack: add packageconfig for lapacke
Signed-off-by: Adrian Zaharia <Adrian.Zaharia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-08 23:44:33 -07:00
Khem Raj ee3c680c30 audit: Upgrade to 3.0.8 and fix build with linux 5.17+
audit errors out due to swig munging it does with kernel headers

| audit_wrap.c: In function '_wrap_audit_rule_data_buf_set':
| audit_wrap.c:4701:17: error: cast specifies array type
|  4701 |     arg1->buf = (char [])(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
|       |                 ^
| audit_wrap.c:4701:15: error: invalid use of flexible array member
|  4701 |     arg1->buf = (char [])(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
|       |               ^
| audit_wrap.c:4703:15: error: invalid use of flexible array member
|  4703 |     arg1->buf = 0;
|       |               ^

These errors are due to VLAIS from kernel headers, so we copy
linux/audit.h and make the needed change in local audit.h and make
needed arrangements in build to use it when building audit package

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Bruce Ashfield <bruce.ashfield@gmail.com>
2022-08-08 11:38:15 -07:00
Markus Volk e3dac1a87f waylandpp: add recipe
This adds C++ bindings for Wayland as used e.g. in the Kodi project

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-08 11:38:15 -07:00
Lei Maohui abe35f5953 xrdp: Fix buildpaths warning.
Don't print configure message.

Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-08 00:10:35 -07:00
Lei Maohui 5a93ce005d dnf-plugin-tui: Fix somw issue in postinstall process.
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-08 00:10:35 -07:00
Khem Raj f7ae5c6dca sdbus-c++-libsystemd: Fix build with glibc 2.36
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 22:53:24 -07:00
Khem Raj 32b42cd3e5 ostree: Upgrade to 2022.5 release
Backport a fix for building with glibc 2.36+ while here

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 22:53:24 -07:00
Bruce Ashfield 349f0be073 vboxguestdrivers: fix build against 5.19 kernel / libc-headers
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>
2022-08-06 09:51:32 -07:00
Anuj Mittal a7346d2bb1 yasm: fix buildpaths warning
ax_create_stdint_h.m4 includes $CC as a comment in the generated header
which leads to buildpaths warning:

| WARNING: yasm-1.3.0+gitAUTOINC+ba463d3c26-r0 do_package_qa: QA Issue: File /usr/include/libyasm-stdint.h in package yasm-dev contains reference to TMPDIR [buildpaths]

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:51:32 -07:00
wangmy 8f222c9f37 xrdp: upgrade 0.9.18 -> 0.9.19
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>
2022-08-06 09:51:32 -07:00
Markus Volk ba38106eb4 spdlog: update to v1.10.0
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>
2022-08-06 09:51:32 -07:00
Bartosz Golaszewski 28a3b1eba5 imagemagick: add PACKAGECONFIG for C++ bindings
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>
2022-08-06 09:40:09 -07:00
wangmy 85b7ff3a38 zabbix: upgrade 6.0.5 -> 6.2.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
wangmy ca0c0abe86 xrefresh: upgrade 1.0.6 -> 1.0.7
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
wangmy 09700552e2 xmessage: upgrade 1.0.5 -> 1.0.6
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
wangmy 769a67086b xfontsel: upgrade 1.0.6 -> 1.1.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
Markus Volk 0d73ddc998 libass: update to v1.16.0
- enca support has been dropped
- add PACKAGECONFIG for asm
- build with asm support for x86_64

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
Paulo Neves d09755e8e3 fluentbit Upgrade to 1.3.5 -> 1.9.6
Signed-off-by: Paulo Neves <ptsneves@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
wangmy 21233e7ac9 poco: upgrade 1.12.0 -> 1.12.1
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>
2022-08-06 09:12:15 -07:00
wangmy 11d5fe77c8 libmxml: upgrade 3.3 -> 3.3.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>
2022-08-06 09:12:15 -07:00
wangmy eb7b368ffc icewm: upgrade 2.9.7 -> 2.9.8
Changelog:
=========
 Omit trailing dot in CPU temperature and add centigrade symbol for issue bbidulock/icewm#652.
 If there is no WM active, then a request to restart will start icewm.
 Don't create the ~/.icewm directory, unless required to save a file.
 When showing the desktop, also minimize a focused fullscreen window.
 Add support for COMPOUND_TEXT title names in WM_NAME strings for issue bbidulock/icewm#26.
 Limit window dimensions to 32732 pixels in the icesh command.
 Improve the truncation of titles for TaskBarTaskGrouping in issue bbidulock/icewm#658.
 Let TaskBarShowAllWindows influence TaskBarTaskGrouping for issue bbidulock/icewm#560.
 Update the TaskBarTaskGrouping menu, when tasks are added or removed.
 Restore the 2.5.0 container handling of button presses for issue bbidulock/icewm#649.
 Make the TaskBarGraphHeight preference themable for issue bbidulock/icewm#659.
 Clarify which preferences are themable in icewm-preferences(5).
 Update the translations for Macedonian and Swedish.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
wangmy 7dae7bfe18 freerdp: upgrade 2.7.0 -> 2.8.0
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>
2022-08-06 09:12:15 -07:00
wangmy 5e3bd1a83e debootstrap: upgrade 1.0.126 -> 1.0.127
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
wangmy d6a30ef441 avro-c: upgrade 1.11.0 -> 1.11.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
Julian Haller 0f7c6c2901 ccid: upgrade 1.4.33 -> 1.5.0
Signed-off-by: Julian Haller <julian.haller@philips.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:12:15 -07:00
Julian Haller 1a71d99fef pcsc-lite: upgrade 1.9.0 -> 1.9.8
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>
2022-08-06 09:12:14 -07:00
Mingli Yu 59eff6269c postgresql: Fix the buildpaths issue
Fixes:
  WARNING: postgresql-14.4-r0 do_package_qa: QA Issue: File /usr/bin/postgres in package postgresql contains reference to TMPDIR
  File /usr/bin/pg_config in package postgresql contains reference to TMPDIR [buildpaths]
  WARNING: postgresql-14.4-r0 do_package_qa: QA Issue: File /usr/include/pg_config.h in package libpq-dev contains reference to TMPDIR [buildpaths]
  WARNING: postgresql-14.4-r0 do_package_qa: QA Issue: File /usr/include/postgresql/server/pg_config.h in package postgresql-server-dev contains reference to TMPDIR
  File /usr/lib/postgresql/pgxs/src/Makefile.global in package postgresql-server-dev contains reference to TMPDIR [buildpaths]
  WARNING: postgresql-14.4-r0 do_package_qa: QA Issue: File /usr/lib/libpgcommon.a in package postgresql-staticdev contains reference to TMPDIR
  File /usr/lib/libpgcommon_shlib.a in package postgresql-staticdev contains reference to TMPDIR [buildpaths]

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-08-06 09:07:11 -07:00
Khem Raj d55a063a0a mariadb: Add packageconfig for lz4 and enable it
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-29 09:18:14 -07:00
Khem Raj a52e78d441 mariadb: Inherit pkgconfig
Fixes
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-29 09:18:14 -07:00
Marta Rybczynska 271282b1a5 polkit: update patches for musl compilation
Update the patch to make netgroup support optional to fit the commit
merged upstream [1], update the other patch depending on one of the
changes.

Without this update, a compilation using duktape with musl fails with:
| ../../../polkit-0.119/src/polkitbackend/polkitbackendduktapeauthority.c: In function 'js_polkit_user_is_in_netgroup':
| ../../../polkit-0.119/src/polkitbackend/polkitbackendduktapeauthority.c:1039:7: warning: implicit declaration of function 'innetgr' [-Wimplicit-function-declaration]
|  1039 |   if (innetgr (netgroup,
|       |       ^~~~~~~

The main patch has been split in two, to apply the duktape part only when duktape is
applied.

[1] https://gitlab.freedesktop.org/polkit/polkit/-/commit/b57deee8178190a7ecc75290fa13cf7daabc2c66

Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-29 09:18:14 -07:00
Akash Hadke 7ca63e5454 polkit: Add --shell /bin/nologin to polkitd user
polkitd user has default access to /bin/sh, add --shell /bin/nologin
to remove default access to /bin/sh and avoid login through it.

Signed-off-by: Akash Hadke <akash.hadke@kpit.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-28 08:34:19 -07:00
Mingli Yu f563466af7 s-nail: fix buildpaths issue
Fixes:
  WARNING: s-nail-14.9.24-r0 do_package_qa: QA Issue: File /usr/bin/s-nail in package s-nail contains reference to TMPDIR [buildpaths]

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-27 11:59:40 -04:00
wangmy 86b58eb819 googlebenchmark: upgrade 1.6.1 -> 1.7.0
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>
2022-07-26 20:54:55 -04:00
Alexander Thoma 447de4d47b Fix tigervnc crash due to missing xkbcomp rdepends
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy 41d34e2a79 valijson: upgrade 0.6 -> 0.7
Changelog:
===========
This release includes a number of improvements:

    Memory management improvements
    Shellcheck improvements
    CMake improvements
    Add yaml-cpp support
    Fixes for PocoJson
    Support for time-related format validations

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy 5719b75341 unattended-upgrades: upgrade 2.6 -> 2.9.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy d2a6027876 ser2net: upgrade 4.3.6 -> 4.3.7
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy a487ec9362 redis: upgrade 7.0.2 -> 7.0.4
Changelog:
==========
Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
----------------
    (CVE-2022-31144) A specially crafted XAUTOCLAIM command on a stream
    key in a specific state may result with heap overflow, and potentially
    remote code execution. The problem affects Redis versions 7.0.0 or newer.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy b85feca281 redis-plus-plus: upgrade 1.3.3 -> 1.3.5
0001-cmake-Use-CMAKE_INSTALL_LIBDIR-from-GNUInstallDirs.patch
removed since it's included in 1.3.5

Changelog:
==========
  Ensure running async callback when error happens.
  Add sentinel support for coroutine interface.
  Add publish command for async interface.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy 82c6f50e0d nanopb: upgrade 0.4.5 -> 0.4.6.4
Changelog:
=========
 Fix passing of error message from substream callback (#703)
 Fix comments going to wrong member variables (#701)
 Fix regression in 0.4.3 where generator did not find all dependencies (#720)
 Fix FindNanopb.cmake not finding options file (#659)
 Fix double-definition errors with size_union (#692)
 Fix generator error with same inner message name (#746)
 Fix infinite recursion in generator/protoc script (#762)
 Fix unicode comment handling for Python 2 (#740)
 Fix compiler warnings with PB_BUFFER_ONLY (#717)
 Fix options dependency in nanopb.mk (#666)
 Fix handling of filenames with dot in them in FindNanopb.cmake (#756)
 Add fallback_type option (#772, #773)
 Use C11 static assert mechanism by default (#761, #766)
 Use 'static_assert'  keyword for iar (#679)
 Explicitly check for pItem == NULL to satisfy Xcode analyzer (#667, #674)
 Support --proto-path as alias to -I (#749)
 Refactor name mangling to separate class, improve error messages (#735)
 Move PB_WT_PACKED definition to the header to fix compiler warnings (#671)
 FindNanopb.cmake: use --nanopb_opt for option passing by default (#752)
 FindNanopb.cmake: Add option NANOPB_GENERATE_CPP_STANDALONE (#741)
 FindNanopb.cmake: Add PROTOC_OPTIONS variable (#768, #771)
 CMakeLists: add build interface for using as a submodule (#669)
 CMakeLists: fix error with nanopb_BUILD_GENERATOR=OFF (#764)
 CMakeLists: make more uniform (#676)
 CMakeLists: Fix uninitialized PYTHON_INSTDIR (#652)
 Clean up CMake examples (#741)
 Rebuild nanopb_pb2.py and print version numbers on import failure (#733, #742)
 Use memcpy instead of iterating on buf_read/write (#751)
 Add generator support for PlatformIO (#718)
 Add clean target to generator/proto/Makefile (#681)
 Windows .bats: use standard python invocation instead of py.exe launcher (#657)
 Fix problems running tests with newer SCons version
 Improve handling of varint overflows
 Improve optimization for little-endian platforms

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 20:49:05 -04:00
wangmy 75209f0de1 atkmm-2.36: upgrade 2.36.1 -> 2.36.2
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-26 10:40:36 -04:00
Radovan Scasny 0c4f3404ef libwebsockets: update to version 4.3.2
Signed-off-by: Radovan Scasny <radovan.scasny@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-24 06:28:56 -07:00
Khem Raj 0e46331835 libmtp: Upgrade to 1.1.20
Use github for downloading the release artifacts.
This has support for new devices

https://github.com/libmtp/libmtp/releases/tag/v1.1.20

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-24 06:28:56 -07:00
Gianfranco 47f66939ff vboxguestdrivers: fix build failure on 32 bit architectures
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>
2022-07-24 06:28:56 -07:00
Gianfranco Costamagna ffdde0f2ef vboxguestdrivers: upgrade 6.1.34 -> 6.1.36
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>
2022-07-24 06:28:42 -07:00
kazuki0824 6d05828e4a ttf-fonts: fix URIs, upgrade 1.004 -> 2.004 2022-07-19 18:38:44 -07:00
Wang Mingyu 8d7b56ff23 php: upgrade 8.1.7 -> 8.1.8
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-19 18:38:44 -07:00
wangmy 7568000c31 pegtl: upgrade 3.2.6 -> 3.2.7
Removed superfluous deprecated include.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-19 18:38:44 -07:00
wangmy 2b3bcd14c2 modemmanager: upgrade 1.18.8 -> 1.18.10
Changelog:
=========
 * Build:
   ** Require libqmi 1.30.8.

 * FCC unlock:
   ** Updated SDX55 unlock script to handle the new method introduced in
      the latest firmware releases.

 * Modem interface:
   ** Set signal quality to 0% on shutdown.
   ** Set signal quality as recent on init.

 * MBIM:
   ** Fix task completion when peeking device fails.
   ** Fix several GError double-frees.

 * mmcli:
   ** Don't print signal quality until modem is enabled.

 * Plugins:
   ** foxconn: remove carrier mapping table for T99W175.

 * Several other minor improvements and fixes.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-19 18:38:44 -07:00
wangmy 6f342fe241 libp11: upgrade 0.4.11 -> 0.4.12
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>
2022-07-19 18:38:44 -07:00