summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* htpdate: upgrade 1.3.6 -> 1.3.7Wang Mingyu2023-02-161-1/+1
| | | | | | | | | | | | Changelog: ========== - bugfix: wrong default portnumber for proxy was used - bugfix: https://bugs.launchpad.net/ubuntu/+source/htpdate/+bug/1850740 - improvement: Avoid bouncing between upper/lower limit when (almost) in sync - improvement: Set SSL server hostname on SSL object Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: fix do_install failure with 'shared' PACKAGECONFIGMartin Jansa2023-02-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tools/install.py uses: output_lib = 'libnode.' + variables.get('shlib_suffix') action([output_prefix + output_lib], variables.get('libdir') + '/'+ output_lib) and when libdir is absolute path (either ${D}${libdir} before: https://git.openembedded.org/meta-openembedded/commit/?id=42c0f0120ad1caf25118d079314c988d4633a437 or just ${libdir} "/usr/lib") it doesn't respect prefix nor ${D} and fails to write to host's directory when "shared" PACKAGECONFIG is enabled: http://errors.yoctoproject.org/Errors/Details/689959/ if [ ! -r node ] || [ ! -L node ]; then \ ln -fs out/Release/node node; fi TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/recipe-sysroot-native/usr/bin/python3-native/python3 tools/install.py install 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/image' '/usr' installing TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/image/usr/bin/node installing /usr/lib/libnode.so.108 Traceback (most recent call last): File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/node-v18.12.1/tools/install.py", line 351, in <module> run(sys.argv[:]) File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/node-v18.12.1/tools/install.py", line 342, in run files(install) File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/node-v18.12.1/tools/install.py", line 179, in files action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib) File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/node-v18.12.1/tools/install.py", line 77, in install try_copy(path, dst) File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/node-v18.12.1/tools/install.py", line 67, in try_copy return shutil.copy2(source_path, target_path) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/recipe-sysroot-native/usr/lib/python3.11/shutil.py", line 436, in copy2 copyfile(src, dst, follow_symlinks=follow_symlinks) File "TOPDIR/tmp-glibc/work/core2-64-oe-linux/nodejs/18.12.1-r0/recipe-sysroot-native/usr/lib/python3.11/shutil.py", line 258, in copyfile with open(dst, 'wb') as fdst: ^^^^^^^^^^^^^^^ PermissionError: [Errno 13] Permission denied: '/usr/lib/libnode.so.108' make: *** [Makefile:189: install] Error 1 * use just baselib "lib" so that it respects ${D} as well as ${prefix} while using e.g. lib32 or lib64 when multilib is enabled * similarly as 'node' binary is installed to relative hardcoded path "bin" with: action([output_prefix + output_file], 'bin/' + output_file) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* linux-serial-test: add recipeJan Luebbe2023-02-151-0/+13
| | | | | | | This is a collection of tests for serial ports and their drivers. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* smemstat: add recipeJan Luebbe2023-02-151-0/+22
| | | | | | | This is useful to see which processes use physical memory. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* add signing.bbclass as infrastructure for build artifact signingJan Luebbe2023-02-151-0/+316
| | | | | | | | | | | | | This adds common infrastructure to access and used asymmetric keys to sign build artifacts. The approach and implementation was presented at the recent OpenEmbedded Workshop: https://pretalx.com/openembedded-workshop-2023/talk/3C8MFF/ A working demo setup for verified boot based on qemu is available at https://github.com/jluebbe/meta-code-signing. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* graphene: Delete recipeKhem Raj2023-02-152-26/+0
| | | | | | This has migrated to core layer Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fwupd: fix polkit rules.d permissionsMarkus Volk2023-02-131-1/+12
| | | | | | | | | | | This fixes: Error: Transaction test error: file /usr/share/polkit-1/rules.d conflicts between attempted installs of fwupd-1.8.9-r0.intel_corei7_64 and polkit-122-r0.corei7_64 file /usr/share/polkit-1/rules.d conflicts between attempted installs of flatpak-1.15.1-r0.corei7_64 and fwupd-1.8.9-r0.intel_corei7_64 Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* editorconfig-core-c: upgrade 0.12.5 -> 0.12.6Wang Mingyu2023-02-131-1/+1
| | | | | | | | | | | Changelog: ========= Fix potential buffer overflow in ec_glob (#87) Add simple installation steps for Fedora (#79) Update property key, value length limits per spec change (16d1d92) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ddrescue: upgrade 1.26 -> 1.27Wang Mingyu2023-02-131-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ========== * command_mode.cc (do_commands): Fix flush stdout after each command. (Reported by Jeffrey Bosboom). * New option '-W, --compare-before-write'. (Suggested by Kajetan Harald Hinner and Petr Slansky). * main_common.cc (show_option_error): New function showing argument and option name. * main.cc: Remove synonym '--direct'. * Use 'long long' instead of 'long' for time variables. * loggers.cc: Missing '#include <cstdlib>'. * Fix two compiler warnings reported by Christian Franke. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.0.20230115.0 -> 6.0.20230212.0Wang Mingyu2023-02-131-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-daemon_2.3.2.bb: add python-daemon recipe for python3bhargav_das@mentor.com2023-02-121-0/+19
| | | | | | | | python-daemon was part of meta-python2 this has now been updated to python3 and v2.3.2 Signed-off-by: Bhargav Das <bhargav_das@mentor.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* modemmanager: upgrade 1.18.12 -> 1.20.4Petr Gotthard2023-02-122-77/+2
| | | | | | | | Changelog: https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/blob/mm-1-20/NEWS Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmbim: upgrade 1.26.4 -> 1.28.2Petr Gotthard2023-02-122-15/+22
| | | | | | | | | | | The GNU autotools support has been fully removed, this release requires the use of the meson build system. Changelog: https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/blob/mbim-1-28/NEWS Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libqmi: upgrade 1.30.8 -> 1.32.2Petr Gotthard2023-02-122-39/+2
| | | | | | | | Changelog: https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/blob/qmi-1-32/NEWS Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio: Add missing include for close/open APIsKhem Raj2023-02-122-0/+28
| | | | | | This is found with clang16 stricter warnings Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gnome-software: update 43.2 -> 43.4Markus Volk2023-02-121-1/+1
| | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xmlschema: upgrade 2.1.1 -> 2.2.1Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | | Changelog: ========== Fix mixed content extension without explicit mixed attribute (issue #334) Refine string serialization of XML resources and data elements Switch to use elementpath v4 Fix sequence_type property for XSD types Remove XsdElement.get_attribute(): unused and doesn't work as expected Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xlsxwriter: upgrade 3.0.7 -> 3.0.8Wang Mingyu2023-02-121-1/+1
| | | | | | | | | Changelog: =========== * Fix for "autofit()" exception when user defined column width was "None". Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-websocket-client: upgrade 1.4.2 -> 1.5.1Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | | | | Changelog: ========== - Fix logic bug that can cause disconnects (#893) - Refactor and improve ping/pong logic to resolve several issues, including an infinite loop issue during reconnect (#862) - Fix issue where `skip_utf8_validation = True` is ignored (#886) - Fix issue where sslopt `is_ssl` is ignored (#875) - Downgrade "websocket connected" message from logging.warning to logging.info (#888) - Update github actions to newer versions (669fe1b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sqlalchemy: upgrade 1.4.46 -> 2.0.3Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ============ sql ------ - Fixed critical regression in SQL expression formulation in the 2.0 series due to #7744 which improved support for SQL expressions that contained many elements against the same operator repeatedly; parenthesis grouping would be lost with expression elements beyond the first two elements. typing ------- Remove typing.Self workaround, now using PEP 673 for most methods that return Self. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-traitlets: upgrade 5.8.1 -> 5.9.0Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | Changelog: ========== Polishing argcomplete support #829 Test that name and description can be set via constructor. #826 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-simplejson: upgrade 3.18.1 -> 3.18.3Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | Changelog: =========== * Fix regression in sdist archive * Distribute a pure python wheel for Pyodide Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-reedsolo: upgrade 1.6.1 -> 1.7.0Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | Changelog: =========== - Drop cythonization by default, to avoid installation issues for users with Cython installed but no C++ compiler. Cythonization needs to be requested explictly now, using pip install --upgrade reedsolo --install-option="--cythonize" --verbose. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-qrcode: upgrade 7.3.1 -> 7.4.2Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Allow pypng factory to allow for saving to a string (like qr.save("some_file.png")) in addition to file-like objects. - Fix bad over-optimization in v7.4 that broke large QR codes. Thanks to mattiasj-axis! - Restructure the factory drawers, allowing different shapes in SVG image factories as well. - Add a --factory-drawer option to the qr console script. - Optimize the output for the SVGPathImage factory (more than 30% reduction in file sizes). - Add a pypng image factory as a pure Python PNG solution. If pillow is not installed, then this becomes the default factory. - The pymaging image factory has been removed, but its factory shortcut and the actual PymagingImage factory class now just link to the PyPNGImage factory. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: upgrade 1.13.0 -> 1.15.0Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Various fixes & improvements ============================= New: Add Huey Integration Profiling: Do not send single sample profiles (#1879) Profiling: Add additional test coverage for profiler (#1877) Profiling: Always use builtin time.sleep (#1869) Profiling: Defaul in_app decision to None (#1855) Profiling: Remove use of threading.Event (#1864) Profiling: Enable profiling on all transactions (#1797) FastAPI: Fix check for Starlette in FastAPI integration (#1868) Flask: Do not overwrite default for username with email address in FlaskIntegration (#1873) Tests: Add py3.11 to test-common (#1871) Fix: Don't log whole event in before_send / event_processor drops (#1863) Add before_send_transaction (#1840) Django: Always remove values of Django session related cookies. (#1842) Profiling: Enable profiling for ASGI frameworks (#1824) Profiling: Better gevent support (#1822) Profiling: Use co_qualname in python 3.11 (#1831) OpenTelemetry: fix Use dict for sentry-trace context instead of tuple (#1847) OpenTelemetry: fix extra dependency (#1825) OpenTelemetry: fix NoOpSpan updates scope (#1834) OpenTelemetry: Make sure to noop when there is no DSN (#1852) FastAPI: Fix middleware being patched multiple times (#1841) Starlette: Avoid import of pkg_resource with Starlette integration (#1836) Removed code coverage target (#1862) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pywbem: upgrade 1.5.0 -> 1.6.0Wang Mingyu2023-02-121-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyscaffold: upgrade 4.3.1 -> 4.4Wang Mingyu2023-02-121-1/+1
| | | | | | | | | | | | | | | | Changelog: ========= Add codespell to pre-commit config Allow venv_install in config file Avoid problematic tox 4.0 and 4.1 Update macos instances on Cirrus CI Replace deprecated set-output Update CI templates Add comments about building sdist in tox.ini and FAQ Update Python version in Read The Docs configuration Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pykickstart: upgrade 3.34 -> 3.43Wang Mingyu2023-02-124-34/+38
| | | | | | | | | | 0001-support-authentication-for-kickstart.patch 0002-pykickstart-parser.py-add-lock-for-readKickstart-and.patch 0004-load.py-retry-to-invoke-request-with-timeout.patch refreshed for new version. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.1.0 -> 3.1.3Wang Mingyu2023-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========= Solve log problem in payload. Fix register type check for size bigger than 3 registers (6 bytes) (#1323) Re-add SQL tests. (#1329) Central logging. (#1324) Skip sqlAlchemy test. (#1325) Solve 1319 (#1320) Update README.rst Correct README link. (#1316) More direct readme links for REPL (#1314) Add classifier for 3.11 (#1312) Update README.rst (#1313) Delete ModbusCommonBlock.png (#1311) Add modbus standard to README. (#1308) fix no auto reconnect after close/connect in TCPclient (#1298) Update examples.rst (#1307) var name clarification (#1304) Bump external libraries. (#1302) Reorganize documentation to make it easier accessible (#1299) Simulator documentation (first version). (#1296) Updated datastore Simulator. (#1255) Update links to pydmodbus-dev (#1291) Change riptideio to pymodbus-dev. (#1292) #1258 Avoid showing unit as a seperate command line argument (#1288) Solve docker cache problem. (#1287) add missing server.start() (#1282) small performance improvement on debug log (#1279) Fix Unix sockets parsing (#1281) client: Allow unix domain socket. (#1274) transfer timeout to protocol object. (#1275) Add ModbusUnixServer / StartAsyncUnixServer. (#1273) Added return in AsyncModbusSerialClient.connect (#1271) add connect() to the very first example (#1270) Solve docker problem. (#1268) Test stop of server task. (#1256) Thanks to: Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: upgrade 2.4.167 -> 2.4.168Wang Mingyu2023-02-111-1/+1
| | | | | | | | | | | | | | | | Fix ======== - Set relationship_type default in MISPTag to empty string. - Another typo in readme. - Typo in readme. - Update whl files. - Nvm, readthedocs requires python 3.8 at most. New ====== - Add relationship_type in Tag entries for feeds. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-portion: Upgrade 2.3.0 -> 2.3.1Wang Mingyu2023-02-111-1/+1
| | | | | | | | | | | | | | | Changed ======= Speed up lookups in IntervalDict for non-interval keys. Speed up iterate by no longer creating singleton instances under the hood. Drop official support for Python 3.6. Fixed ===== Infinite recursion when a subclass of an Interval is compared using > with an Interval instance (see #75). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire-media-session: update 0.4.1 -> 0.4.2Markus Volk2023-02-111-1/+1
| | | | | | | | | | | | | | | | | | | Media Session 0.4.2 (2023-01-20) This is a small release to keep the dead corpse walking... Repeated attempts to shoot it in the head seem to have failed (We don't think it is running with a lot of brains left). It does not look pretty and we don't know yet when it will finally stay down. What we do know is that some creatures (humans?) have been secretly feeding it with their brain cells and as such, here we are... Anyway, it contains some minor patches for some organ (memory?) leaks. It also adds some fixes to make things stumble on (compile?) and make disturbing slurping sounds again (work?) with the latest PipeWire versions. Seriously.. back off.. don't become a victim... use Wireplumber. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tmux: update to tmux_3.3aChee Yang Lee2023-02-101-2/+2
| | | | | Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tinyproxy: fix CVE-2022-40468Chee Yang Lee2023-02-102-0/+34
| | | | | Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* spice-gtk: Update to version 0.42Fabio Estevam2023-02-091-1/+1
| | | | | | | | | | | | | | | | | | | | Update to version 0.42: v0.42 ===== - !115 - Fix compilation on win32 with EGL - !114 - spice-widget: fix hotspot position on Wayland/HiDPI - !112 - meson: Allow building on a Wayland-only environment - !110 - usb-backend: Fix devices not being enumerated - !108 - spicy: Add keyboard shortcuts for copy/paste sync - Require meson >= 0.56 The original recipe name was spice-gtk_0.4.1.bb, but the spice-gtk repo tags the releases as 0.41, not 0.4.1, so update it accordingly. Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cson: Make PEP440 compatible version schemeKhem Raj2023-02-092-2/+48
| | | | | | | - Update to latest tip of trunk - Fix build with latest setuptools Signed-off-by: Khem Raj <raj.khem@gmail.com>
* phoronix-test-suite: fix CVE-2022-40704Joe Slater2023-02-092-1/+50
| | | | | | | CVE fix added after latest release (10.8.4). Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tnftp: switch to using variable flags for alternativesUlrich Ölmann2023-02-091-2/+2
| | | | | | | | Up to now in this recipe the alternative mechanism only worked by accident, so do like all other recipes and utilize varflags. Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* net-snmp: CVE-2022-44792 & CVE-2022-44793 Fix NULL Pointer ExceptionNarpat Mali2023-02-092-0/+122
| | | | | | | | | References: https://nvd.nist.gov/vuln/detail/CVE-2022-44792 https://nvd.nist.gov/vuln/detail/CVE-2022-44793 Signed-off-by: Narpat Mali <narpat.mali@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nlohmann-json: Allow empty main package for SDKTom Hochstein2023-02-091-1/+1
| | | | | | | | | | | | | | | The header-only package cannot be included in the SDK without marking the main package with ALLOW_EMPTY. Fixes rootfs problem: ``` The following packages have unmet dependencies: imx-gpu-sdk : Depends: nlohmann-json but it is not installable E: Unable to correct problems, you have held broken packages. ``` Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: update to v1.6.4Bartosz Golaszewski2023-02-082-40/+2
| | | | | | | | | | This is a bug-fix release bringing in several fixes for build and testing issues. Remove the patch that's already present in this release. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* graphene: disable neon support on arm 32bitsPablo Saavedra2023-02-081-0/+3
| | | | | | | This disables neon support on arm devices only because it crashes otherwise. Upstream-status: Reported [https://github.com/ebassi/graphene/issues/215] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Nodejs: fix buildpaths warningArchana Polampalli2023-02-081-1/+1
| | | | | | | | | | | | | Correct libdir used at configure time to avoid packaging warnings WARNING: nodejs-18.12.1-r0 do_package_qa: QA Issue: File /usr/bin/node in package nodejs contains reference to TMPDIR [buildpaths] File /usr/bin/.debug/node in package nodejs-dbg contains reference to TMPDIR File /usr/lib64/nodejs/ptest/.debug/cctest in package nodejs-dbg contains reference to TMPDIR [buildpaths] File /usr/lib64/nodejs/ptest/cctest in package nodejs-ptest contains reference to TMPDIR [buildpaths] File /usr/include/node/config.gypi in package nodejs-dev contains reference to TMPDIR [buildpaths] Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-paramiko: upgrade 2.12.0 -> 3.0.0Wang Mingyu2023-02-081-1/+1
| | | | | | | | | | | | | | | | | Bubfix: ========== -A handful of lower-level classes (notably paramiko.message.Message and paramiko.pkey.PKey) previously returned bytes objects from their implementation of __str__, even under Python 3; and there was never any __bytes__ method. -Streamline some redundant (and costly) byte conversion calls in the packetizer and the core SFTP module. This should lead to some SFTP speedups at the very least. -Remove some unnecessary __repr__ calls when handling bytes-vs-str conversions. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-openpyxl: upgrade 3.0.10 -> 3.1.0Wang Mingyu2023-02-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== New Features ------------ Added support for data table formulae Mapped chartspace graphical properties to charts for advanced formatting Bugfixes --------- #1156 Table filters are always overriden #1360 Can't read some ScatterCharts if the x-axis is not numerical #1786 NamedStyles share attributes - mutables gotcha #1851 Allow print area to be set to None #1852 Worksheet for print title and print areas can't be found #1853 Custom document properties that are strings can be empty #1858 ConditionalFormatting lost when pivot table updated #1864 Better handling of defined names #1912 Excel doesn't like xmlns:space on nodes with only whitespace, which it treats as empty. #1942 Exception when print areas use table references. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pandas: upgrade 1.5.2 -> 1.5.3Wang Mingyu2023-02-081-1/+1
| | | | | | | | Changelog: https://pandas.pydata.org/docs/whatsnew/v1.5.3.html Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-portalocker: upgrade 2.6.0 -> 2.7.0Wang Mingyu2023-02-081-1/+1
| | | | | | | Added fail_when_locked=False support to BoundedSemaphore. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-meh: upgrade 0.50.1 -> 0.51Wang Mingyu2023-02-082-35/+3
| | | | | | | | 0001-setup.py-switch-from-distutils-to-setuptools.patch removed since it's included in 0.51. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-license-expression: upgrade 30.0.0 -> 30.1.0Wang Mingyu2023-02-081-1/+1
| | | | | | | | | | | | | Changelog: ========== Use latest skeleton (and updated configure script) Update license list to latest ScanCode and SPDX 3.19 Use correct syntax for python_require Drop using Travis and Appveyor Drop support for Python 3.7 and add Python 3.11 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-icu: upgrade 2.8.1 -> 2.10.2Wang Mingyu2023-02-082-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | 0001-Fix-host-contamination-of-include-files.patch updated for 2.10.2 Changelog: ========== - fixed bug in logic computing max_char for PyUnicode_New() - fixed build issues with ICU < 72 - fixed bug with building on MacOS when pkg-config is present - added link to note about building everything from sources - added wrapper for u_cleanup/u_init sequence as ResourceBundle.resetICU() - added wrapper for TimeZone.getRegion() - added support for ICU 72.1 - added wrapper for UnicodeSetIterator::skipToStrings() - added wrapper for DisplayOptions, DisplayOptions::Builder and related enums - added wrapper for FormattedNumber::getNounClass() - added wrapper for NumberFormatter.displayOptions() - added support for ICU 71.1 - added wrappers for UMeasurePrefix, MeasureUnit.withPrefix()|getPrefix() - added UNumberRoundingPriority, FractionPrecision.withSignificantDigits() - added UNumberTrailingZeroDisplay, Precision.trailingZeroDisplay() Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>