aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2023-03-17WIP: pipewire: accept webrtc-audio-processing-1jansa/webrtcMartin Jansa
This isn't complete still fails with: http://errors.yoctoproject.org/Errors/Details/698127/ and after fixing this include (by dropping webrtc prefix), the other 2 includes don't exist anymore as well and fails with: http://errors.yoctoproject.org/Errors/Details/698129/ FAILED: spa/plugins/aec/libspa-aec-webrtc.so.p/aec-webrtc.cpp.o x86_64-oe-linux-g++ -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/recipe-sysroot -Ispa/plugins/aec/libspa-aec-webrtc.so.p -Ispa/plugins/aec -I../git/spa/plugins/aec -I. -I../git -Ispa/include -I../git/spa/include -ITOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/recipe-sysroot/usr/include/webrtc-audio-processing-1 -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Wpedantic -std=c++17 -fvisibility=hidden -fno-strict-aliasing -Werror=suggest-attribute=format -Wsign-compare -Wpointer-arith -Wformat -Wformat-security -Wimplicit-fallthrough -Wmissing-braces -Wtype-limits -Wvariadic-macros -Wmaybe-uninitialized -Wno-missing-field-initializers -Wno-unused-parameter -Wno-pedantic -Wdeprecated-declarations -Wunused-result -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/git=/usr/src/debug/pipewire/0.3.67-r0 -fdebug-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/git=/usr/src/debug/pipewire/0.3.67-r0 -fmacro-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/build=/usr/src/debug/pipewire/0.3.67-r0 -fdebug-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/build=/usr/src/debug/pipewire/0.3.67-r0 -fdebug-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/recipe-sysroot= -fmacro-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/recipe-sysroot= -fdebug-prefix-map=TOPDIR/tmp-glibc/work/core2-64-oe-linux/pipewire/0.3.67-r0/recipe-sysroot-native= -fvisibility-inlines-hidden -fPIC -DWEBRTC_LIBRARY_IMPL -DWEBRTC_POSIX -DNOMINMAX -MD -MQ spa/plugins/aec/libspa-aec-webrtc.so.p/aec-webrtc.cpp.o -MF spa/plugins/aec/libspa-aec-webrtc.so.p/aec-webrtc.cpp.o.d -o spa/plugins/aec/libspa-aec-webrtc.so.p/aec-webrtc.cpp.o -c ../git/spa/plugins/aec/aec-webrtc.cpp ../git/spa/plugins/aec/aec-webrtc.cpp: In function 'int webrtc_init(void*, const spa_dict*, const spa_audio_info_raw*)': ../git/spa/plugins/aec/aec-webrtc.cpp:64:28: error: 'ExtendedFilter' is not a member of 'webrtc' 64 | config.Set<webrtc::ExtendedFilter>(new webrtc::ExtendedFilter(extended_filter)); | ^~~~~~~~~~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:64:48: error: expected type-specifier 64 | config.Set<webrtc::ExtendedFilter>(new webrtc::ExtendedFilter(extended_filter)); | ^~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:65:28: error: 'DelayAgnostic' is not a member of 'webrtc' 65 | config.Set<webrtc::DelayAgnostic>(new webrtc::DelayAgnostic(delay_agnostic)); | ^~~~~~~~~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:65:47: error: expected type-specifier 65 | config.Set<webrtc::DelayAgnostic>(new webrtc::DelayAgnostic(delay_agnostic)); | ^~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:76:86: error: 'Create' is not a member of 'webrtc::AudioProcessing' 76 | auto apm = std::unique_ptr<webrtc::AudioProcessing>(webrtc::AudioProcessing::Create(config)); | ^~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:88:65: error: 'webrtc::EchoCancellation' has not been declared 88 | apm->echo_cancellation()->set_suppression_level(webrtc::EchoCancellation::kHighSuppression); | ^~~~~~~~~~~~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:89:53: error: 'webrtc::NoiseSuppression' has not been declared 89 | apm->noise_suppression()->set_level(webrtc::NoiseSuppression::kHigh); | ^~~~~~~~~~~~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:94:47: error: 'webrtc::GainControl' has not been declared 94 | apm->gain_control()->set_mode(webrtc::GainControl::kAdaptiveDigital); | ^~~~~~~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:45:14: warning: unused variable 'extended_filter' [-Wunused-variable] 45 | bool extended_filter = webrtc_get_spa_bool(args, "webrtc.extended_filter", true); | ^~~~~~~~~~~~~~~ ../git/spa/plugins/aec/aec-webrtc.cpp:46:14: warning: unused variable 'delay_agnostic' [-Wunused-variable] 46 | bool delay_agnostic = webrtc_get_spa_bool(args, "webrtc.delay_agnostic", true); | ^~~~~~~~~~~~~~ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2023-03-17webrtc-audio-processing: upgrade to 1.0+ version built with mesonMartin Jansa
* remove typedefs.h patches as this file was removed in: https://webrtc-review.googlesource.com/91740 * 0006-common_audio-implement-endianness-conversion-in-wav-.patch dropped the code now expliticly checks for WEBRTC_ARCH_LITTLE_ENDIAN since: https://webrtc-review.googlesource.com/c/src/+/162902 might need bigger rework for new version if someone is still interested in BE * and webrtc/base/basictypes.h touched by riscv_support.patch was removed together with whole webrtc/base in: https://codereview.webrtc.org/2976293002 * webrtc/common.h from LIC_FILES_CHKSUM was removed in: https://codereview.webrtc.org/2307533004 * there are 2 recipes in oe-core with a optional dependency, to enable it for test use: PACKAGECONFIG:append:pn-gstreamer1.0-plugins-bad = " webrtcdsp" PACKAGECONFIG:append:pn-pulseaudio = " webrtc" and pipewire is the only user in meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2023-03-17pipewire: drop libcameraMartin Jansa
2023-03-14wireplumber: update 0.4.13 -> 0.4.14Markus Volk
WirePlumber 0.4.14 ~~~~~~~~~~~~~~~~~~ Additions: - Added support for managing Bluetooth-MIDI, complimenting the parts that were merged in PipeWire recently (!453) - Added a default volume configuration option for streams whose volume has never been saved before; that allows starting new streams at a lower volume than 100% by default, if desired (!480) - Added support for managing link errors and propagating them to the client(s) involved. This allows better error handling on the application side in case a format cannot be negotiated - useful in video streams (see !484, pipewire#2935) - snd_aloop devices are now described as being "Loopback" devices (pipewire#2214) - ALSA nodes in the pro audio profile now get increased graph priority, so that they are more likely to become the driver in the graph - Added support for disabling libcamera nodes & devices with ``node.disabled`` and ``device.disabled``, like it works for ALSA and V4L2 (#418) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-14samba: upgrade 4.17.5 -> 4.18.0Yi Zhao
Release Notes: https://www.samba.org/samba/history/samba-4.18.0.html Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-14libldb: upgrade 2.6.1 -> 2.7.1Yi Zhao
Refresh 0002-ldb-Add-configure-options-for-packages.patch Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-13freeglut: Drop -fcommon and add -Wno-implicit-function-declarationKhem Raj
-Wno-implicit-function-declaration is needed for keeping it going with new compiler's e.g. clang16 -fcommon is no longer needed with this version of freeglut Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-13waylandpp: Just enforce opengl for target recipeKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-13nv-codec-headers: update 11.1.5.2 -> 12.0.16.0Markus Volk
- use oe_runmake to avoid an error on rebuilds: | NOTE: make clean | ERROR: oe_runmake failed | WARNING: exit code 1 from a shell command. | make: *** No rule to make target 'clean'. Stop. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-13pipewire: update 0.3.66 -> 0.3.67Markus Volk
This is a bugfix release that is API and ABI compatible with previous 0.3.x releases. - The loopback module and other couples streams will now not randomly fail in some cases. (#3028) - The RTP module now has support for sending and receiving MIDI as well. - The compress offload sink has seen many improvements. It now uses ioctls directly to bypass limitations of tinycompress (to be able to detect the available codecs, for example). - Pulse server compatibility was improved for some apps by improving the format parsing and FIX_ stream flag handling. - The min quantum in the pulse server was changed from 256/48000 to 128/48000 to fix some issues with games that expect 5ms or less of latency. - The Bluetooth plugin has seen many improvements in packet scheduling to attempt to reduce stuttering on some devices. - The ALSA plugin now handles some impossible cases better. This fixes recording in QEMU again. (#2971) - SPDX tags were added to the code for copyright information. - The random number functions were made more usable. - The port property code was moved from the adapter to the port implementation itself to make it more useful and unified for the cases where no adapter is used (midi and video). - Fix a potential overflow in mixer areas. - Improve runnable state calculations of nodes. This is part of ongoing work to avoid running nodes that should not need to run. - The stream will now always call the process function when using trigger, even if there are no buffers. This avoids stalls of the processing graph in some cases. (#3028) - Links are now marked as passive by PipeWire itself so that the right thing happens in all cases. - Implement the in/out/true values for the node.passive property. Place a passive state on ports to make passive links on a port by port basis. - pw-cat has seen improvements in the encoded file playback case. - The rtp module has support for MIDI now. - DSCP is now configurable in the RTP module. - The loopback module doesn't randomly fail to work anymore. (#3028) - The null-audio sink can now be given a format and it will return this instead of the default float ones. This makes it possible to make a null-sink that has a given format. - The compress offload sink has seen many improvements. It now no longer uses tinycompress to be able to detect the available codecs. - The ALSA plugin now handles some impossible cases better. (#2971) - Fix compilation on older compilers. (#3050) - The FIX_ flags are now implemented more correctly by fixating the stream to the format of the sink/source they ask to be connected to. There is now also an option to override the fixation based on rules. - Format parsing was improved and should now support all format strings supported by pulseaudio including upper and lower case variants and shortcuts. - Channelmap parsing was improved and should now reject invalid channelmaps as well as support the shortcuts supported by pulseaudio. - Escape codes in module arguments now work as it does in pulseaudio. (#3071) - The min quantum was changed from 256/48000 to 128/48000 to fix some issues with games that expect 5ms or less of latency. - jack.passive-links can now be used to have a JACK client make passive links and the node.passive property is no longer used for this because it has a different function. - The qsynth rule was updated to the new node.passive features. It is now only passive on the output side. - BAP delay and transport latency are handled now. - A2DP and SCO can now use bigger buffers to improve quality when the reception is jittery. - The AT+BCC command is now implemented. - Packet encoding now happens ahead of time when possible to avoid delays before sending it. - Source should now always produce complete (padded) buffers to avoid sync problems. - Don't set unnecessary socket options. - The pipewiresrc now has an autoconnect argument. - The metadata plane count is now handled correctly in more cases. - Stream errors are now handled correctly to stop the GStreamer elements. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-13syslog-ng: upgrade 3.38.1 -> 4.0.1Changqing Li
* upgrade 3.38.1 to 4.0.1 * fix buildpath warning Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-12mcelog: Upgrade to v191Mingli Yu
Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-12gsoap: Upgrade to 2.8.126Khem Raj
Fix build with musl while here Enable IPv6 and C locales at least Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-12libnftnl: upgrade 1.2.4 -> 1.2.5Yi Zhao
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-11sg3-utils: Fix build with muslKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10xdebug: upgrade 3.1.1 -> 3.2.0Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10re2: move to version 2023-03-01Joe Slater
/usr/lib64/libre2.so is now a symlink instead of being the library itself. We choose to ignore it for QA. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10modemmanager: upgrade 1.20.4 -> 1.20.6Petr Gotthard
Changelog: https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/blob/1.20.6/NEWS Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10libmbim: upgrade 1.28.2 -> 1.28.4Petr Gotthard
Changelog: https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/blob/1.28.4/NEWS Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10libqmi: upgrade 1.32.2 -> 1.32.4Petr Gotthard
Changelog: https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/blob/1.32.4/NEWS Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10openvpn: upgrade 2.6.0 -> 2.6.1Petr Gotthard
Changelog: https://github.com/OpenVPN/openvpn/blob/v2.6.1/Changes.rst Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10python3-scikit-build: New recipeZoltán Böszörményi
Used by python3-cmake and python3-ninja. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-10python3-cmake: New recipeZoltán Böszörményi
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>
2023-03-10python3-ninja: New recipeZoltán Böszörményi
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>
2023-03-10unixodbc: Fix install conflict when enable multilib.Wang Mingyu
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>
2023-03-09spawn-fcgi: upgrade 1.6.4 -> 1.6.5Wang Mingyu
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>
2023-03-09raptor2: upgrade 2.0.15 -> 2.0.16Wang Mingyu
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>
2023-03-09nginx: upgrade 1.20.1 -> 1.23.3Wang Mingyu
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>
2023-03-09satyr: upgrade 0.40 -> 0.42Wang Mingyu
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>
2023-03-09poppler: upgrade 23.02.0 -> 23.03.0Wang Mingyu
Changelog: * PngWriter: Fix potential uninitialized memory use Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09monit: upgrade 5.32.0 -> 5.33.0Wang Mingyu
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>
2023-03-09tcsh: upgrade 6.22.04 -> 6.24.07Wang Mingyu
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>
2023-03-09php: update 8.1.16 -> 8.2.3Wang Mingyu
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>
2023-03-09nbdkit: upgrade 1.33.7 -> 1.33.10Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09rp-pppoe: upgrade 3.14 -> 3.15Wang Mingyu
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>
2023-03-09stunnel: upgrade 5.67 -> 5.69Wang Mingyu
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>
2023-03-09pahole: Upgrade to tip of trunkKhem Raj
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>
2023-03-09liblockfile: upgrade 1.14 -> 1.17Changqing Li
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>
2023-03-09sg3-utils: upgrade 1.45 -> 1.47Changqing Li
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09hplip: add runtime dependency on ghostscriptTrevor Woerner
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>
2023-03-09cups-filters: fix ghostscript handlingTrevor Woerner
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>
2023-03-09cups-filters: remove duplicate configure optionTrevor Woerner
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>
2023-03-09libidn: update to 1.41Joe Slater
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>
2023-03-09python3-pywbem: upgrade 1.6.0 -> 1.6.1Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09python3-pyexpect: upgrade 1.0.21 -> 1.0.22Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09python3-tqdm: upgrade 4.64.1 -> 4.65.0Wang Mingyu
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>
2023-03-09python3-xmlschema: upgrade 2.2.1 -> 2.2.2Wang Mingyu
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>
2023-03-09python3-protobuf: upgrade 4.22.0 -> 4.22.1Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09python3-fastjsonschema: upgrade 2.16.2 -> 2.16.3Wang Mingyu
Changelog: ========== * Fix variable name resolving with references Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-03-09python3-argcomplete upgrade 2.0.0 -> 2.1.1Wang Mingyu
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>