summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-fastnumbers: upgrade 4.0.1 -> 5.0.1Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changelog: =========== Added -------- Added the map option to all try_* functions to enable very fast conversions of lists or other iterables (issues #61, #63 and #67) Added try_array to enable very fast conversions directly to numpy arrays (issues #62 and #65) Changed --------- Move to a model where the return code is a value or error instead of a model where one has to check the error state after getting a value (issue #66) Significantly simplified the type annotations (by 4000+ lines!) Fixed ------- Increased code coverage and fixed missing headers in codecov reaport (issue #64) Add back missing key option in type hints for deprecated fast_* functions Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohue: upgrade 4.6.1 -> 4.6.2Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | | | | Changelog: ========== Add missing LONG_PRESS enum member for button events (#190) Mark auto_dynamic attribute optional on scene resource (#189) Fixes for some small schema parse errors (#188) Make active_timeslot optional in smart_scene model (#177) Add util methods for backwards compatibility in Scenes controller (#176) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-decouple: upgrade 3.7 -> 3.8Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | Changelog: ========== Raise KeyError when key is not found in ini repositories Fix infinite recursion on Windows Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: upgrade 7.2.0 -> 7.2.1Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | Changelog: ========== Fix: the PyPI page had broken links to documentation pages, but no longer does, closing issue 1566. Fix: public members of the coverage module are now properly indicated so that mypy will find them, fixing issue 1564. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: upgrade 0.6.0 -> 0.6.1Wang Mingyu2023-03-041-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* c-ares: upgrade 1.18.1 -> 1.19.0Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========= Security: ---------- Low. Stack overflow in ares_set_sortlist() which is used during c-ares initialization and typically provided by an administrator and not an end user. Changes: ---------- Windows: Drop support for XP and derivatives which greatly cleans up initialization code. Add ARES_OPT_HOSTS_FILE similar to ARES_OPT_RESOLVCONF for specifying a custom hosts file location. Add vcpkg installation instructions Bug fixes: ------------ Fix cross-compilation from Windows to Linux due to CPACK logic. Fix memory leak in reading /etc/hosts when using localhost fallback. Fix chain building c-ares when libresolv is already included by another project File lookup should not immediately abort as there may be other tries due to search criteria. Asterisks should be allowed in host validation as CNAMEs may reference wildcard domains AutoTools build system referenced bad STDC_HEADERS macro Even if one address class returns a failure for ares_getaddrinfo() we should still return the results we have CMake Windows: DLLs did not include resource file to include versions CMake: Guard target creation in exported config Fix ares_getaddrinfo() numerical address resolution with AF_UNSPEC Apple: fix libresolv configured query times. Fix tools and help information Various documentation fixes and cleanups Add include guards to ares_data.h c-ares could try to exceed maximum number of iovec entries supported by system CMake package config generation allow for absolute install paths Intel compiler fixes ares_strsplit bugs The RFC6761 6.3 states localhost subdomains must be offline too. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cryptsetup: upgrade 2.6.0 -> 2.6.1Wang Mingyu2023-03-042-105/+2
| | | | | | | | 0001-Replace-off64_t-with-off_t.patch removed since it's includedin 2.6.1. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bats: upgrade 1.8.2 -> 1.9.0Wang Mingyu2023-03-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: ======= -add installation instructions for Debian, Fedora, Gentoo, and OpenSUSE (#659) -add --line-reference-format to switch file/line references in stack traces (#665) comma_line (default): file.bats, line 1 colon: file.bats:1 uri: file:///path/to/file.bats:1 custom: define your own formatter in bats_format_file_line_reference_custom -add bats:focus tag to run only focused tests (#679) -add bats-support, bats-assert, bats-file and bats-detik to Dockerfile (#674) Documentation: ============== -add --help text and man page content for --filter-tags (#679) -improved clarity of section about output in free code (#671) -fixed typos (#673) -clarify use cases of run (#366) Fixed: ======= -explicitly check for GNU parallel (#691) -wait for report-formatter to finish before ending bats' execution, to fix empty files with --report-fomatter junit under Docker (#692) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bubblewrap: upgrade 0.7.0 -> 0.8.0Wang Mingyu2023-03-041-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* byacc: upgrade 20230201 -> 20230219Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== * test/yacc/ok_syntax1.tab.h, test/yacc/ok_syntax1.tab.c, test/btyacc/ok_syntax1.tab.h, test/btyacc/ok_syntax1.tab.c: regen * test/ok_syntax1.y: modify test for %union to add tag for testing reader.c * reader.c: provide for a named union, e.g., "%union foo" by detecting the name and deferring the typedef in that case until the end of copying the union definition * VERSION, package/byacc.spec, package/debian/changelog, package/mingw-byacc.spec, package/pkgsrc/Makefile: bump Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gnome-desktop: Make seccomp dependency optional for rv32Khem Raj2023-03-042-1/+33
| | | | | | | rv32 support in libseccomp is not yet upstream, therefore add rv32 to seccomp unsupported architectures Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gegl: Remove openmp dep for rv32 and ppc32Khem Raj2023-03-041-0/+2
| | | | | | openmp is not yet ported for these architectures Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix type mitmatch found with clang16Khem Raj2023-03-042-0/+34
| | | | | | Use std::size to avoid explicit typecasting Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: Upgrade to 8.1.16Mingli Yu2023-03-041-1/+1
| | | | | | | | | Upgrade php to 8.1.16 [1]. [1] https://www.php.net/ChangeLog-8.php#8.1.16 Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* glog: Disable 64bit atomics on rv32Khem Raj2023-03-041-1/+1
| | | | | | | | Fixes riscv32-yoe-linux-ld: CMakeFiles/logging_unittest.dir/src/logging_unittest.cc.o: in function `no symbol': /usr/include/c++/v1/vector:835: undefined reference to `__atomic_load_8' Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Upgrade to 4.4.19Khem Raj2023-03-042-2/+35
| | | | | | Add a patch to fix build with clang16 while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libx86-1: Fix build with clang16Khem Raj2023-03-042-0/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pndk: Add missing dependency on native cmakeKhem Raj2023-03-041-1/+1
| | | | | | | 3rd party dependency miniasync needs cmake to build, its invoked by top level make. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pmdk: Upgrade to 1.12.1Khem Raj2023-03-023-72/+46
| | | | | | Add a patch to fix build with clang16 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gpiod: update to v2.0Bartosz Golaszewski2023-03-021-1/+1
| | | | | | | The final libgpiod v2.0 release is out so update the recipe. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: update to v2.0Bartosz Golaszewski2023-03-022-1/+1
| | | | | | | The final v2.0 release is out so update the recipe. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: enable native/nativesdk buildsAndreas Helbech Kleist2023-03-021-0/+2
| | | | | Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* logcheck: upgrade 1.4.0 -> 1.4.2Wang Mingyu2023-03-021-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gphoto2: Fix build with clang16 + muslKhem Raj2023-03-022-0/+51
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsdl-image: Fix build with clang16Khem Raj2023-03-022-1/+53
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsdl2-ttf: Upgrade to 2.20.2Khem Raj2023-03-022-3/+73
| | | | | | Fix build with clang16 while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* glm: Update to tip of trunkKhem Raj2023-03-023-23/+33
| | | | | | Do not use -Werror on clang Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pkcs11-helper: Update to latest tip of trunkKhem Raj2023-03-021-2/+3
| | | | | | This helps fixing build with clang16 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-h5py: Upgrade to 3.8.0Khem Raj2023-03-013-87/+3
| | | | | | Drop unused patches Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hdf5: Upgrade to 1.14.0Khem Raj2023-03-013-6/+6
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-lru-dict: Fix function pointer mismatchKhem Raj2023-03-012-0/+39
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librelp: make inline errors be warnings in debug buildRandy MacLeod2023-03-011-0/+4
| | | | | | | | | | | | | | | With DEBUG_BUILD = "1", the following error occurs: src/relpsess.c:95:1: error: inlining failed in call to 'relpSessFreePermittedPeers': function not considered for inlining [-Werror=inline] so use the compiler flag '-Wno-error=inline' for DEBUG_OPTIMIZATION only. Tracked by upstream bug: https://github.com/rsyslog/librelp/issues/256 but it's looking like a toolchain bug. Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: add disabled PACKAGECONFIG to drop capabilitiesRandy MacLeod2023-03-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Add PACKAGECONFIG to enable dropping capabilities but leave it as disabled to follow upstream and avoid a systemd issue described below. rsyslog-8.2302 added a configure option to drop capabilities from full to: chown, dac_override, setgid, setuid, setpcap, net_bind_service, net_admin, ipc_lock, sys_chroot, sys_admin, sys_resource, lease, syslog, block_suspend This works fine and passes ptests with sysvinit however there is a bug when using systemd that breaks some tests: https://github.com/rsyslog/rsyslog/issues/5091 Therefore only add a non-default PACKAGECONFIG option in keeping with the rsyslog upstream. One can install libcap-ng-bin to run pscap to see the capabilities. Without this option the ptest result with systemd as init is: Version | Passed | Failed | Skipped 8.2302 | 473 | 0 | 3 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: update from 8.2212.0 to 8.2302.0Randy MacLeod2023-03-011-1/+1
| | | | | | | | | | | ptest results for qemux86-64/kvm with extra FS space and 2 GB RAM: Version | Passed | Failed | Skipped 8.2212 | 470 | 0 | 5 8.2302 | 471 | 0 | 5 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gnome-commander: Upgrade to 1.16.0 releaseKhem Raj2023-03-012-22/+31
| | | | | | | | | | | | - Switch to using meson for build system - Add -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR to continue using std::auto_ptr from exiv2 - The changes are here [1] [1] https://gcmd.github.io/2023/01/22/Release-v1-16-0.html Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libiodbc: Install *.h files to /usr/include/iodbc to fix conflicts error ↵Lei Maohui2023-02-281-0/+1
| | | | | | | | | | | | | with unixodbc reference to ubuntu: file /usr/include/odbcinst.h conflicts between attempted installs of libiodbc-dev-3.52.15-r0.aarch64 and unixodbc-dev-2.3.11-r0.aarch64 file /usr/include/sql.h conflicts between attempted installs of libiodbc-dev-3.52.15-r0.aarch64 and unixodbc-dev-2.3.11-r0.aarch64 file /usr/include/sqlext.h conflicts between attempted installs of libiodbc-dev-3.52.15-r0.aarch64 and unixodbc-dev-2.3.11-r0.aarch64 file /usr/include/sqltypes.h conflicts between attempted installs of libiodbc-dev-3.52.15-r0.aarch64 and unixodbc-dev-2.3.11-r0.aarch64 file /usr/include/sqlucode.h conflicts between attempted installs of libiodbc-dev-3.52.15-r0.aarch64 and unixodbc-dev-2.3.11-r0.aarch64 Signed-off-by: Lei Maohui <leimaohui@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusb-compat: RDEPENDS on libusb1Yoann Congal2023-02-281-0/+3
| | | | | | | | libusb-compat dlopen() libusb1 so we need to explicitly RDEPENDS on it. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Ever ATILANO <ever.atilano@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusb-compat: add simple ptest (example programs)Yoann Congal2023-02-283-1/+50
| | | | | | | | | | Build and run example programs as test. This will only catch major errors (.so lib won't load etc.) because no output check is done, only return status is checked. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Ever ATILANO <ever.atilano@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusb-compat: upgrade sources to fix -native buildYoann Congal2023-02-281-1/+1
| | | | | | | | | | | | | | | | Fixes [YOCTO #15032] by upgrading the source to a commit including the fix : change SONAME detection source from ldd to objdump ldd detects used libraries by partially running the target binary. This is a problem for when the target binary is not runnable (e.g. cross-compilation). Switch to objdump which only reads info from the ELF file without running anything from it. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Ever ATILANO <ever.atilano@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusb-compat: Revert "libusb-compat: move libraries to base_libdir"Yoann Congal2023-02-281-8/+0
| | | | | | | | | | | | | | Revert commit ed937940f54d1a376b518fc276da78811c4ac50b from oe-core: libusb-compat: move libraries to base_libdir udev links to libusb-compat, and so this library needs to be in base_libdir (/lib) instead of libdir (/usr/lib). The libdir=base_libdir configuration was needed for udev but it's not the case anymore. Remove it to simplify the recipe. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Ever ATILANO <ever.atilano@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* glmark2: Update to 2023.01Fabio Estevam2023-02-273-31/+8
| | | | | | | | | | | | | | | | | | | | | | | | Update to the 2023.01 version: glmark2 2023.01 (20230119) ========================== * Add gbm-gl/glesv2 flavors for GBM offscreen rendering. * Add x11-gl-egl flavor that uses EGL under X11. * Implement SwapInterval 0 for the DRM backend. * Support multisampled configs in --visual-config. * Support explicitly specifying the config id in --visual-config. * Add CPU time and shader compilation time to available results. * Add --results to specify which kind of results to report. * Add --results-file to export results to XML or CSV. * Add --version command-line option. Remove 0001-libmatrix-Include-missing-utility-header.patch, which has been upstreamed and refresh 0002-run-dispmanx-fullscreen.patch to avoid fuzz warnings. Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-keyfile: upgrade 0.6.0 -> 0.6.1Wang Mingyu2023-02-272-38/+1
| | | | | | | | | | | | | | Changelog: ========== - Remove deprecated 'setuptools-markdown' dependency (https://github.com/ethereum/eth-keyfile/pull/37) - Use twine to upload package to pypi 0001-setup-don-t-use-setuptools-markdown.patch removed since it's not available in 0.6.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liburing: enable native/nativesdk buildsRoss Burton2023-02-271-0/+2
| | | | | Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zchunk: upgrade 1.2.4 -> 1.3.0Stefano Babic2023-02-272-38/+2
| | | | | | | | | Release zchunk 1.3.0 with the following changes: * meson: Use global function in argp check * Add ZCK_NO_WRITE option to disable writing to a file Signed-off-by: Stefano Babic <sbabic@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: upgrade 7.1.0 -> 7.2.0Wang Mingyu2023-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Added a new setting "[report] exclude_also" to let you add more exclusions without overwriting the defaults. Thanks, 'Alpha Chen <pull 1557_>'_, closing 'issue 1391_'. - Added a :meth:'.CoverageData.purge_files' method to remove recorded data for a particular file. Contributed by 'Stephan Deibel <pull 1547_>'_. - Fix: when reporting commands fail, they will no longer congratulate themselves with messages like "Wrote XML report to file.xml" before spewing a traceback about their failure. - Fix: arguments in the public API that name file paths now accept pathlib.Path objects. This includes the "data_file" and "config_file" arguments to the Coverage constructor and the "basename" argument to CoverageData. Closes 'issue 1552'_. - Fix: In some embedded environments, an IndexError could occur on stop() when the originating thread exits before completion. This is now fixed, thanks to 'Russell Keith-Magee <pull 1543_>'_, closing 'issue 1542'_. - Added a "py.typed" file to announce our type-hintedness. Thanks, 'KotlinIsland <pull 1550_>'_. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.47.1 -> 0.47.3Wang Mingyu2023-02-271-1/+1
| | | | | | | | Bugfix: Hold a strong reference to the query sender start task (#1128) (808c3b2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-werkzeug: upgrade 2.2.2 -> 2.2.3Wang Mingyu2023-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Ensure that URL rules using path converters will redirect with strict slashes when the trailing slash is missing. #2533 - Type signature for get_json specifies that return type is not optional when silent=False. #2508 - parse_content_range_header returns None for a value like bytes */-1 where the length is invalid, instead of raising an AssertionError. #2531 - Address remaining ResourceWarning related to the socket used by run_simple. Remove prepare_socket, which now happens when creating the server. #2421 - Update pre-existing headers for multipart/form-data requests with the test client. #2549 - Fix handling of header extended parameters such that they are no longer quoted. #2529 - LimitedStream.read works correctly when wrapping a stream that may not return the requested size in one read call. #2558 - A cookie header that starts with = is treated as an empty key and discarded, rather than stripping the leading ==. - Specify a maximum number of multipart parts, default 1000, after which a RequestEntityTooLarge exception is raised on parsing. This mitigates a DoS attack where a larger number of form/file parts would result in disproportionate resource use. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-watchdog: upgrade 2.2.1 -> 2.3.0Wang Mingyu2023-02-271-1/+1
| | | | | | | | | | | | | | Changelog: ========== [inotify] Add support for IN_OPEN events: a FileOpenedEvent event will be fired [watchmedo] Add optional event debouncing for auto-restart, only restarting once if many events happen in quick succession (--debounce-interval) (#940) [watchmedo] Exit gracefully on KeyboardInterrupt exception (Ctrl+C) (#945) [watchmedo] Add option to not auto-restart the command after it exits (--no-restart-on-command-exit) (#946) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sqlalchemy: upgrade 2.0.3 -> 2.0.4Wang Mingyu2023-02-271-1/+1
| | | | | | | | Changelog: https://docs.sqlalchemy.org/en/20/changelog/changelog_20.html#change-2.0.4 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-stevedore: upgrade 4.1.1 -> 5.0.0Wang Mingyu2023-02-271-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>