summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-cmake: New recipeZoltán Böszörményi2023-03-103-0/+59
| | | | | | | | | | | | | | | | Some python modules rely on "import cmake". Only build and ship the python parts, and don't download and build cmake from sources. Use the already built cmake instead. The CMakeLists.txt file is a crippled copy from this cmake python module's sources, removing almost everything, and adding a dummy install target, so do_install() doesn't fail. The python code is patched so cmake is used from PATH. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ninja: New recipeZoltán Böszörményi2023-03-103-0/+54
| | | | | | | | | | | | | | | | Some python modules rely on "import ninja". Only build and ship the python parts, and don't download and build ninja from sources. Use the already built ninja instead. The CMakeLists.txt file is a crippled copy from this ninja python module's sources, removing almost everything, and adding a dummy install target, so do_install() doesn't fail. The python code is patched so ninja is used from PATH. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unixodbc: Fix install conflict when enable multilib.Wang Mingyu2023-03-101-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Error: Transaction test error: file /usr/include/unixODBC/config.h conflicts between attempted installs of unixodbc-dev-2.3.11-r0.aarch64 and lib32-unixodbc-dev-2.3.11-r0.armv7ahf_neon   file /usr/include/unixODBC/unixodbc_conf.h conflicts between attempted installs of unixodbc-dev-2.3.11-r0.aarch64 and lib32-unixodbc-dev-2.3.11-r0.armv7ahf_neon   file /usr/include/unixodbc.h conflicts between attempted installs of unixodbc-dev-2.3.11-r0.aarch64 and lib32-unixodbc-dev-2.3.11-r0.armv7ahf_neon The differences of config.h are as follows: @@ -14,7 +14,7 @@ /* #undef C_ALLOCA */ /* Lib directory */ -#define DEFLIB_PATH "/usr/lib64" +#define DEFLIB_PATH "/usr/lib" /* Using perdriver iconv */ /* #undef ENABLE_DRIVER_ICONV */ @@ -275,7 +275,7 @@ #define INCLUDE_PREFIX "/usr/include" /* Lib directory */ -#define LIB_PREFIX "/usr/lib64" +#define LIB_PREFIX "/usr/lib" /* Define to the sub-directory where libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" @@ -311,7 +311,7 @@ #define PACKAGE_VERSION "2.3.11" /* Platform is 64 bit */ -#define PLATFORM64 /**/ +/* #undef PLATFORM64 */ /* Install prefix */ #define PREFIX "/usr" @@ -323,10 +323,10 @@ #define SHLIBEXT ".so" /* The size of `long', as computed by sizeof. */ -#define SIZEOF_LONG 8 +#define SIZEOF_LONG 4 /* The size of `long int', as computed by sizeof. */ -#define SIZEOF_LONG_INT 8 +#define SIZEOF_LONG_INT 4 /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be @@ -351,7 +351,7 @@ #define SYSTEM_FILE_PATH "/etc" /* Lib path */ -#define SYSTEM_LIB_PATH "/usr/lib64" +#define SYSTEM_LIB_PATH "/usr/lib" /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. This macro is obsolete. */ @@ -383,7 +383,7 @@ /* #undef _ALL_SOURCE */ /* Number of bits in a file offset, on hosts where this is settable. */ -/* #undef _FILE_OFFSET_BITS */ +#define _FILE_OFFSET_BITS 64 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ /* #undef _LARGEFILE_SOURCE */ The differences of unixodbc_conf.h are as follows: @@ -19,7 +19,7 @@ /* #undef C_ALLOCA */ /* Lib directory */ -#define DEFLIB_PATH "/usr/lib64" +#define DEFLIB_PATH "/usr/lib" /* Using perdriver iconv */ /* #undef ENABLE_DRIVER_ICONV */ @@ -342,7 +342,7 @@ #define INCLUDE_PREFIX "/usr/include" /* Lib directory */ -#define LIB_PREFIX "/usr/lib64" +#define LIB_PREFIX "/usr/lib" /* Define if the OS needs help to load dependent libraries for dlopen(). */ /* #undef LTDL_DLOPEN_DEPLIBS */ @@ -396,7 +396,7 @@ /* Define to the version of this package. */ /* Platform is 64 bit */ -#define PLATFORM64 /**/ +/* #undef PLATFORM64 */ /* Install prefix */ #define PREFIX "/usr" @@ -408,7 +408,7 @@ #define SHLIBEXT ".so" /* The size of `long', as computed by sizeof. */ -#define SIZEOF_LONG 8 +#define SIZEOF_LONG 4 /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be @@ -431,7 +431,7 @@ #define SYSTEM_FILE_PATH "/etc" /* Lib path */ -#define SYSTEM_LIB_PATH "/usr/lib64" +#define SYSTEM_LIB_PATH "/usr/lib" /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #define TIME_WITH_SYS_TIME 1 The differences of unixodbc.h are as follows: @@ -14,4 +14,4 @@ #define HAVE_UNISTD_H 1 /* Define to the value of sizeof(long) */ -#define SIZEOF_LONG_INT 8 +#define SIZEOF_LONG_INT 4 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* spawn-fcgi: upgrade 1.6.4 -> 1.6.5Wang Mingyu2023-03-092-39/+2
| | | | | | | | | | | | | fix_configure_ipv6_test.patch removed since it's included in 1.6.5 Changelog: ========== * Configure script cleanups (fixing detection of IPv6) * Update links and email addresses Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* raptor2: upgrade 2.0.15 -> 2.0.16Wang Mingyu2023-03-093-84/+2
| | | | | | | | | | | | | | | | | | | | | | | | 0001-Match-reutrn-type-from-RAPTOR_ASSERT_OBJECT_POINTER_.patch 0001-configure.ac-do-additional-checks-on-libxml2-also-wh.patch removed since they're included in 2.0.16 License-Update: Copyright year updatd to 2023. "David Beckett" changed to "Dave Beckett" URL from http changed to https Changelog: ========== - Fixes CVE-2017-18926 and CVE-2020-25713 - Multiple Appveyor Windows and CMake build fixes by 0u812. (Note: the resulting binaries and libraries were not tested on Windows) - Turtle parser now reads input in chunks so can handle huge files. Patch - Added a serializer for the mKR language. - Rapper utility now counts triples using longs - Several smaller portability fixes for OpenBSD and cross building Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nginx: upgrade 1.20.1 -> 1.23.3Wang Mingyu2023-03-093-116/+6
| | | | | | | | | | | | | | | | | | | | | | | | CVE-2021-3618.patch removed since it's included in 1.23.3 Changelog: ========== *) Bugfix: an error might occur when reading PROXY protocol version 2 header with large number of TLVs. *) Bugfix: a segmentation fault might occur in a worker process if SSI was used to process subrequests created by other modules. Thanks to Ciel Zhao. *) Workaround: when a hostname used in the "listen" directive resolves to multiple addresses, nginx now ignores duplicates within these addresses. *) Bugfix: nginx might hog CPU during unbuffered proxying if SSL connections to backends were used. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* satyr: upgrade 0.40 -> 0.42Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | Changelog: ========= Find crash thread before stacktrace is normalized Normalize both gdb stacktrace and the crash frame (rhbz#2168223) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: upgrade 23.02.0 -> 23.03.0Wang Mingyu2023-03-091-1/+1
| | | | | | | | Changelog: * PngWriter: Fix potential uninitialized memory use Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* monit: upgrade 5.32.0 -> 5.33.0Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | | | | | | | | Changelog: ========== New: Added click-jacking protection headers to Monit HTTP GUI (the SAMEORIGIN iframe is allowed). Fixed: Issue #1035: If the start, stop or restart program statement contains the equal sign, which is not followed by a space character, the configuration is not parsed correctly. Fixed: Issue #1047: If the MariaDB server doesn't allow access to the host, from which Monit test is running, Monit reported: Invalid handshake packet sequence id -- not MySQL protocol. Fixed: Add the missing responsetime option to the ping test. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tcsh: upgrade 6.22.04 -> 6.24.07Wang Mingyu2023-03-092-7/+6
| | | | | | | | 0001-Enable-system-malloc-on-all-linux.patch refreshed for 6.24.07 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: update 8.1.16 -> 8.2.3Wang Mingyu2023-03-091-2/+2
| | | | | | | | | | | | | | | | | | | License-Update: Copyright year updated to 2022. Changelog: ========= - Core: . Fixed bug #81744 (Password_verify() always return true with some hash). (CVE-2023-0567) . Fixed bug #81746 (1-byte array overrun in common path resolve code). (CVE-2023-0568) - FPM: . Fixed bug GHSA-54hq-v5wp-fqgv (DOS vulnerability when parsing multipart request body). (CVE-2023-0662) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nbdkit: upgrade 1.33.7 -> 1.33.10Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rp-pppoe: upgrade 3.14 -> 3.15Wang Mingyu2023-03-094-122/+16
| | | | | | | | | | | | dont-swallow-errors.patch configure.in-Error-fix.patch removed since they're not available in 3.14. configure_in_cross.patch refreshed for 3.14. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* stunnel: upgrade 5.67 -> 5.69Wang Mingyu2023-03-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | License-Update: Copyright year updated to 2023. Changelog: ========== * New features - Improved logging performance with the "output" option. - Improved file read performance on the WIN32 platform. - DH and kDHEPSK ciphersuites removed from FIPS defaults. - Set the LimitNOFILE ulimit in stunnel.service to allow for up to 10,000 concurrent clients. - Added the new 'CAengine' service-level option to load a trusted CA certificate from an engine. - Added requesting client certificates in server mode with 'CApath' besides 'CAfile'. - Improved file read performance. - Improved logging performance. * Bugfixes - Fixed the "CApath" option on the WIN32 platform by applying https://github.com/openssl/openssl/pull/20312. - Fixed stunnel.spec used for building rpm packages. - Fixed tests on some OSes and architectures by merging Debian 07-tests-errmsg.patch (thx to Peter Pentchev). - Fixed EWOULDBLOCK errors in protocol negotiation. - Fixed handling TLS errors in protocol negotiation. - Prevented following fatal TLS alerts with TCP resets. - Improved OpenSSL initialization on WIN32. - Improved testing suite stability. * Security bugfixes - OpenSSL DLLs updated to version 3.0.8. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pahole: Upgrade to tip of trunkKhem Raj2023-03-093-82/+3
| | | | | | | Drop patches already present in 1.24+ Needed to get fixes to build with latest libbpf APIs Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liblockfile: upgrade 1.14 -> 1.17Changqing Li2023-03-097-51/+88
| | | | | | | | | | | | Updated patches: configure.patch 0001-Makefile.in-redefine-LOCKPROG.patch Rename and update patch: 0001-Makefile.in-Don-t-try-to-run-ldconfig.patch Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sg3-utils: upgrade 1.45 -> 1.47Changqing Li2023-03-091-3/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hplip: add runtime dependency on ghostscriptTrevor Woerner2023-03-091-1/+1
| | | | | | | | | | | | | The fax/filters/pstotiff program invokes /usr/bin/gs and therefore has a runtime dependency on ghostscript: fax/filters/pstotiff 24 gs_command = "/usr/bin/gs" + " " + font + " " + device 25 26 exit_code = os.system(gs_command) Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cups-filters: fix ghostscript handlingTrevor Woerner2023-03-091-3/+4
| | | | | | | | | ghostscript is not needed at build-time (it only needs to be enabled in the configuration step) but it is required at run-time for two of this recipe's packages. Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cups-filters: remove duplicate configure optionTrevor Woerner2023-03-091-1/+1
| | | | | | | | | The '--enable-ghostscript' configure option is specified twice and doesn't need to be. It's simply a boolean; it's not the sort of option whose position is relevant, or an option which modifies its immediate neighbours. Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libidn: update to 1.41Joe Slater2023-03-093-199/+21
| | | | | | | | | | Adjust dont-depend-on-help2man patch to apply. Remove unneeded format warnings patch. Cosmetic changes to license files require new checksums. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pywbem: upgrade 1.6.0 -> 1.6.1Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyexpect: upgrade 1.0.21 -> 1.0.22Wang Mingyu2023-03-091-2/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tqdm: upgrade 4.64.1 -> 4.65.0Wang Mingyu2023-03-091-2/+2
| | | | | | | | | | | | | Changelog: =========== add Python 3.11 and drop Python 3.6 support (#1439, #1419, #502 <- #720, #620) misc code & docs tidy fix & update CI workflows & tests License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xmlschema: upgrade 2.2.1 -> 2.2.2Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | Changelog: ========== Fix mixed content extension with empty content (issue #337) Fix lru_cache() usage on global maps caching Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-protobuf: upgrade 4.22.0 -> 4.22.1Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-fastjsonschema: upgrade 2.16.2 -> 2.16.3Wang Mingyu2023-03-091-1/+1
| | | | | | | | | Changelog: ========== * Fix variable name resolving with references Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argcomplete upgrade 2.0.0 -> 2.1.1Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ========== Documentation and test improvements Remove scripts for contrib-supported shells from global namespace setup.py: exclude test.* subpackages from find_packages (#406) Support PowerShell (#405) CI updates Revert "Support powershell (#392)" Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Support powershell (#392) Update importlib-metadata dependency to include versions 5.x (#389) Test and documentation improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-charset-normalizer: upgrade 3.0.1 -> 3.1.0Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | | | | | | | | Added ----- Argument should_rename_legacy for legacy function detect and disregard any new arguments without errors (PR #262) Removed ------- Support for Python 3.6 (PR #260) Changed ------- Optional speedup provided by mypy/c 1.0.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-astroid: upgrade 2.14.2 -> 2.15.0Wang Mingyu2023-03-092-32/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 0001-pyproject.toml-Replace-with.patch removed since it's included in 2.15.0 Changelog: ========== * astroid now supports "TryStar" nodes from python 3.11 and should be fully compatible with python 3.11. * "Formattedvalue.postinit" is now keyword only. This is to allow correct typing of the "Formattedvalue" class. * "Astroid" now supports custom import hooks. * "astroid" now infers return values from match cases. * "AstroidManager.clear_cache" now also clears the inference context cache. * "Astroid" now retrieves the default values of keyword only arguments and sets them on "Arguments.kw_defaults". * "Uninferable" now has the type "UninferableBase". This is to facilitate correctly type annotating code that uses this singleton. * Deprecate "modutils.is_standard_module()". It will be removed in the next minor release. Functionality has been replaced by two new functions, "modutils.is_stdlib_module()" and "modutils.module_in_path()". * Fix "are_exclusive" function when a walrus operator is used inside "IfExp.test" field. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-alembic: upgrade 1.9.4 -> 1.10.2Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | | bugfix: ======= [bug] [ops] Fixed regression where Alembic would not run with older SQLAlchemy 1.3 versions prior to 1.3.24 due to a missing symbol. Workarounds have been applied for older 1.3 versions. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-mpmath: upgrade 1.2.1 -> 1.3.0Wang Mingyu2023-03-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | License-Update: Copyright year updated to 2022. Changelog: =========== Security issues: ---------------- * Fixed ReDOS vulnerability in mpmathify() (CVE-2021-29063) Features: ---------- * Added quadsubdiv() for numerical integration with adaptive path splitting * Added the Cohen algorithm for inverse Laplace transforms * Some speedup of matrix multiplication * Optimizations to Carlson elliptic integrals * Added signal functions (squarew(), trianglew(), sawtoothw(), unit_triangle() sigmoidw()) Bug fixes: ---------- * Correct mpf initialization from tuple for finf and fninf * Support QR decomposition for matrices of width 0 and 1 * Fixed some cases where elliprj() gave inaccurate results * Fixed cases where digamma() hangs for complex input * Fixed cases of polylog() with integer-valued parameter with complex type * Fixed fp.nsum() with Euler-Maclaurin algorithm Maintenance: ------------ * Dropped support for Python 3.4 * Documentation cleanup * Removed obsolete files * Added options to runtests.py to skip tests and exit on failure Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rabbitmq-c: upgrade 0.11.0 -> 0.13.0Changqing Li2023-03-091-3/+3
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe/conf/layer.conf: Add PREFERRED_[R]PROVIDER_virtual/opencl-icdZoltán Böszörményi2023-03-091-0/+2
| | | | | | | | Select opencl-icd-loader as the preferred provider for both build and runtime. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ocl-icd: Add PROVIDES and RPROVIDES for virtual/opencl-icdZoltán Böszörményi2023-03-091-0/+2
| | | | | | | | Some programs dlopen libOpenCL.so.1, they use RDEPENDS. This will allow selecting between ocl-icd and opencl-icd-loader. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencl-icd-loader: Add RPROVIDES:${PN} = "virtual/opencl-icd"Zoltán Böszörményi2023-03-091-0/+1
| | | | | | | Some programs dlopen libOpenCL.so.1, they use RDEPENDS. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: enable build libyang on riscv32/64Yi Zhao2023-03-091-2/+2
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-networking: add frrYi Zhao2023-03-091-0/+1
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* crash: Upgrade to 8.0.2Mingli Yu2023-03-095-33/+65
| | | | | | | Upgrade crash to 8.0.2 and rebase 4 patches to the new version. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: add recipeYi Zhao2023-03-091-0/+15
| | | | | | | | Rich is a Python library for rich text and beautiful formatting in the terminal. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freerdp: upgrade 2.9.0 -> 2.10.0Wang Mingyu2023-03-092-36/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0001-Fix-incompatible-function-pointer-types.patch removed since it's included in 2.10.0 Changelog: =========== Notewhorth changes: ------------------- * Fix android build scripts, use CMake from SDK * Fix connection negotiation with mstsc/msrdc #8426 * [ntlm]: use rfc5929 binding hash algorithm #8430 * [channels,printer] Fixed reference counting #8433 * Fix uwac pixman #8439 * Fix Rdp security #8457 * [client,x11] Detect key autorepeat #8522 * [build] add channel path to RPATH #8551 * Fix build with BUILTIN_CHANNELS=OFF #8560 * revert changes so that the osmajortype/osminortype is not overwritten #8571 * [uwac] do not use iso C functions #8604 * [winpr,sam] fix inalid NULL arguments #8605 * Fix incompatible function pointer types #8625 Fixed issues: ------------- * Backported #8581: Ignore data PDUs for DVCs that were not opened successfully * Backported #8498: [channel,urbdrc] fix type of usb hotplug callback * Backported #8537: Extended info enforce limits * Backported #8611: [core] add missing redirection fields Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.0.20230212.0 -> 6.0.20230305.0Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hwdata: upgrade 0.367 -> 0.368Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gsoap: upgrade 2.0.106 -> 2.0.124Wang Mingyu2023-03-091-2/+1
| | | | | | | | | | | | | | | | Changelog: ========== - Added C++17 'std::optional' member variable serialization. - Updated wsdl2h to automatically generates 'std::optional' member variables for optional schemas when typedef.dat defines '$OPTIONAL = std::optional'. Only primitive type member variables are made 'std::optional', not classes, because optional types must be defined before referenced when in fact cyclic data structure relationships may exist among classes. - Added missing 'std::vector<xsd__anyType>' deep copy of vector of DOM trees generated with soapcpp2 option '-Ec'. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lcms: upgrade 2.14 -> 2.15Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librsync: upgrade 2.3.2 -> 2.3.4Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libjcat: upgrade 0.1.12 -> 0.1.13Wang Mingyu2023-03-091-1/+1
| | | | | | | | | | | | | New Features: - Add support for SHA512 checksums - Add the ability to add and remove support for blob types (#72) Bugfixes: - Fix header includes for clang-tidy - Show the expected SHA checksum in the error Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libvpx: upgrade 1.12.0 -> 1.13.0Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* logwatch: upgrade 7.7 -> 7.8Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libbpf: upgrade 0.8.0 -> 1.1.0Xiangyu Chen2023-03-091-1/+1
| | | | | | | | Changelog: https://github.com/libbpf/libbpf/releases/tag/v1.1.0 Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>