-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meta python merge #389
Closed
Closed
Meta python merge #389
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add runtime dependency to resolve errors that occurred when import configargparse. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Add runtime dependency to resolve errors that occurred when import isort. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
This is needed for meta-codechecker to communicate to the server Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Upgrade to release 2.6.0: - Appveyor and travis are no longer used in the continuous integration - `setuptools_scm`` has been removed and replaced by ``tbump`` in order to not have hidden runtime dependencies to setuptools - ``NodeNg``, the base node class, is now accessible from ``astroid`` or ``astroid.nodes`` as it can be used for typing - pdate enum brain to improve inference of .name and .value dynamic class attributes - Removed ``Repr``, ``Exec``, and ``Print`` nodes as the ``ast`` nodes they represented have been removed with the change to Python 3 - Deprecate ``Ellipsis`` node. It will be removed with the next minor release - Deprecated ``Index`` and ``ExtSlice`` nodes - Updated all Match nodes to be internally consistent - Add ``Pattern`` base class Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Upgrade to release 4.61.1: - fix utils._screen_shape_linux() sometimes raising ValueError - minor build/CI framework updates - minor documentation updates Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
If the version of libssl-dev is not match the version of libssl on the build machine, it fails to compile SWIG/_m2crypto_wrap.c which is created by swig for python3-m2crypto-native: | SWIG/_m2crypto_wrap.c:9757:19: error: dereferencing pointer to incomplete type 'struct stack_st' | if (arg1) (arg1)->num = arg2; | ^~ But it works if no libssl-dev installed on the build machine. Export STAGING_DIR to make existing patch 0001-setup.py-link-in-sysroot-not-in-host-directories.patch work. And filter out '/usr/inlucde' from include pathes of swig. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Upgrade to release 0.17.10: - Bug fix: token with old comment structure != two elements Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Add python3-compression, python3-netclient and python3-pyparsing as runtime dependencies. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Add Google API client core library. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Add Google Authentication Library. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Add common protobufs used in Google APIs. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Upgrade to release 2.10.0: analyticsadmin: update the api androidmanagement: update the api bigqueryreservation: update the api dialogflow: update the api firebaserules: update the api iap: update the api keep: update the api managedidentities: update the api Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
applied |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 23, 2021
Changelog: Properly indent block-level contents of list items in man (openembedded#258). commonmark/cmark#258 This handles nested lists as well as items with multiple paragraphs. The change requires addition of a new field block_number_in_list_item to cmark_renderer, but this does not change the public API. Fix quadratic behavior when parsing emphasis (openembedded#389, Nick Wellnhofer). Delimiters can be deleted, so store delimiter positions instead of pointers in openers_bottom. Besides causing undefined behavior when reading a dangling pointer, this could also result in quadratic behavior when parsing emphasis. commonmark/cmark#389 Fix quadratic behavior when parsing smart quotes (openembedded#388, Nick Wellnhofer). Remove matching smart quote delimiters. Otherwise, the same opener could be found over and over, preventing the openers_bottom optimization from kicking in and leading to quadratic behavior when processing lots of quotes. commonmark/cmark#388 Modify CMake configuration so that the project can be built with older versions of CMake (openembedded#384, Saleem Abdulrasool). (In 0.30.0, some features were used that require CMake >= 3.3.) The cost of this backwards compatibility is that developers must now explicitly invoke cmark_add_compile_options when a new compilation target is added. commonmark/cmark#384 Remove a comma at the end of an enumerator list, which was flagged by clang as a C++11 extension. make_man_page.py: use absolute path with CDLL. This avoids the error "file system relative paths not allowed in hardened programs." Include cmark version in cmark(3) man page (instead of LOCAL). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 23, 2021
Changelog: Properly indent block-level contents of list items in man (openembedded#258). commonmark/cmark#258 This handles nested lists as well as items with multiple paragraphs. The change requires addition of a new field block_number_in_list_item to cmark_renderer, but this does not change the public API. Fix quadratic behavior when parsing emphasis (openembedded#389, Nick Wellnhofer). Delimiters can be deleted, so store delimiter positions instead of pointers in openers_bottom. Besides causing undefined behavior when reading a dangling pointer, this could also result in quadratic behavior when parsing emphasis. commonmark/cmark#389 Fix quadratic behavior when parsing smart quotes (openembedded#388, Nick Wellnhofer). Remove matching smart quote delimiters. Otherwise, the same opener could be found over and over, preventing the openers_bottom optimization from kicking in and leading to quadratic behavior when processing lots of quotes. commonmark/cmark#388 Modify CMake configuration so that the project can be built with older versions of CMake (openembedded#384, Saleem Abdulrasool). (In 0.30.0, some features were used that require CMake >= 3.3.) The cost of this backwards compatibility is that developers must now explicitly invoke cmark_add_compile_options when a new compilation target is added. commonmark/cmark#384 Remove a comma at the end of an enumerator list, which was flagged by clang as a C++11 extension. make_man_page.py: use absolute path with CDLL. This avoids the error "file system relative paths not allowed in hardened programs." Include cmark version in cmark(3) man page (instead of LOCAL). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Jul 27, 2021
Changelog: Properly indent block-level contents of list items in man (#258). commonmark/cmark#258 This handles nested lists as well as items with multiple paragraphs. The change requires addition of a new field block_number_in_list_item to cmark_renderer, but this does not change the public API. Fix quadratic behavior when parsing emphasis (#389, Nick Wellnhofer). Delimiters can be deleted, so store delimiter positions instead of pointers in openers_bottom. Besides causing undefined behavior when reading a dangling pointer, this could also result in quadratic behavior when parsing emphasis. commonmark/cmark#389 Fix quadratic behavior when parsing smart quotes (#388, Nick Wellnhofer). Remove matching smart quote delimiters. Otherwise, the same opener could be found over and over, preventing the openers_bottom optimization from kicking in and leading to quadratic behavior when processing lots of quotes. commonmark/cmark#388 Modify CMake configuration so that the project can be built with older versions of CMake (#384, Saleem Abdulrasool). (In 0.30.0, some features were used that require CMake >= 3.3.) The cost of this backwards compatibility is that developers must now explicitly invoke cmark_add_compile_options when a new compilation target is added. commonmark/cmark#384 Remove a comma at the end of an enumerator list, which was flagged by clang as a C++11 extension. make_man_page.py: use absolute path with CDLL. This avoids the error "file system relative paths not allowed in hardened programs." Include cmark version in cmark(3) man page (instead of LOCAL). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
rtollert
pushed a commit
to rtollert/meta-openembedded
that referenced
this pull request
Aug 4, 2022
Version 2.11 ============ Released 2018-02-09 * New features: - Add `json_pack()` format specifiers s*, o* and O* for values that can be omitted if null (openembedded#339). - Add `json_error_code()` to retrieve numeric error codes (openembedded#365, openembedded#380, openembedded#381). - Enable thread safety for `json_dump()` on all systems. Enable thread safe `json_decref()` and `json_incref()` for modern compilers (openembedded#389). - Add `json_sprintf()` and `json_vsprintf()` (openembedded#393). * Bug Fixes: - Fix incorrect report of success from `json_dump_file()` when an error is returned by `fclose()` (openembedded#359). - Make json_equal() const-correct (openembedded#344). - Fix incomplete stealing of references by `json_pack()` (openembedded#374). * Build: - Work around gcc's -Wimplicit-fallthrough. - Fix CMake detection of `sys/types.h` header (openembedded#375). - Fix `jansson.pc` generated by CMake to be more consistent with the one generated using GNU Autotools (openembedded#368). * Other: - Miscellaneous documentation fixes (openembedded#356, openembedded#378, openembedded#395). - Remove unnecessary reference actions from parsers (openembedded#377). Version 2.10 ============ Released 2017-03-02 * New features: - Add JSON_EMBED encoding flag allowing arrays and objects to be encoded into existing streams (openembedded#329). - Add `json_dumpb()` function for dumping to a pre-allocated buffer (openembedded#328). - Add `json_dumpfd()` and `json_loadfd()` functions for dumping to streaming file descriptors (openembedded#328). - Add support for parsing buffers larger than 2GB (openembedded#309). * Build: - Fix CMake build when LONG_LONG_INT is defined as "" (openembedded#321) * Other: - Internal code cleanup (openembedded#311, openembedded#314) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
rtollert
pushed a commit
to rtollert/meta-openembedded
that referenced
this pull request
Aug 9, 2022
Version 2.11 ============ Released 2018-02-09 * New features: - Add `json_pack()` format specifiers s*, o* and O* for values that can be omitted if null (openembedded#339). - Add `json_error_code()` to retrieve numeric error codes (openembedded#365, openembedded#380, openembedded#381). - Enable thread safety for `json_dump()` on all systems. Enable thread safe `json_decref()` and `json_incref()` for modern compilers (openembedded#389). - Add `json_sprintf()` and `json_vsprintf()` (openembedded#393). * Bug Fixes: - Fix incorrect report of success from `json_dump_file()` when an error is returned by `fclose()` (openembedded#359). - Make json_equal() const-correct (openembedded#344). - Fix incomplete stealing of references by `json_pack()` (openembedded#374). * Build: - Work around gcc's -Wimplicit-fallthrough. - Fix CMake detection of `sys/types.h` header (openembedded#375). - Fix `jansson.pc` generated by CMake to be more consistent with the one generated using GNU Autotools (openembedded#368). * Other: - Miscellaneous documentation fixes (openembedded#356, openembedded#378, openembedded#395). - Remove unnecessary reference actions from parsers (openembedded#377). Version 2.10 ============ Released 2017-03-02 * New features: - Add JSON_EMBED encoding flag allowing arrays and objects to be encoded into existing streams (openembedded#329). - Add `json_dumpb()` function for dumping to a pre-allocated buffer (openembedded#328). - Add `json_dumpfd()` and `json_loadfd()` functions for dumping to streaming file descriptors (openembedded#328). - Add support for parsing buffers larger than 2GB (openembedded#309). * Build: - Fix CMake build when LONG_LONG_INT is defined as "" (openembedded#321) * Other: - Internal code cleanup (openembedded#311, openembedded#314) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Mar 9, 2023
Changelog: ========== Documentation and test improvements Remove scripts for contrib-supported shells from global namespace setup.py: exclude test.* subpackages from find_packages (openembedded#406) Support PowerShell (openembedded#405) CI updates Revert "Support powershell (openembedded#392)" Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Support powershell (openembedded#392) Update importlib-metadata dependency to include versions 5.x (openembedded#389) Test and documentation improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Mar 10, 2023
Changelog: ========== Documentation and test improvements Remove scripts for contrib-supported shells from global namespace setup.py: exclude test.* subpackages from find_packages (openembedded#406) Support PowerShell (openembedded#405) CI updates Revert "Support powershell (openembedded#392)" Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Support powershell (openembedded#392) Update importlib-metadata dependency to include versions 5.x (openembedded#389) Test and documentation improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Mar 10, 2023
Changelog: ========== Documentation and test improvements Remove scripts for contrib-supported shells from global namespace setup.py: exclude test.* subpackages from find_packages (openembedded#406) Support PowerShell (openembedded#405) CI updates Revert "Support powershell (openembedded#392)" Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Fix interrupted release (v2.0.1) Support powershell (openembedded#392) Update importlib-metadata dependency to include versions 5.x (openembedded#389) Test and documentation improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Apr 29, 2023
…325338b6e7b3d42de) Drop patches now part of new upstream release: - 0001-Fix-memory-leak.patch - 0001-cmake-Link-with-libatomic-on-rv32-rv64.patch - 0001-dlt-system-Fix-buffer-overflow-detection-on-32bit-ta.patch Cherry-pick and propose upstream two patches to fix build failures with security hardening flags enabled and with some systemd configuration (underlink) - 481.patch - 482.patch Add new dlt-adaptor-stdin cmake optional flag Drop PV variable, not needed anymore Drop latomic manual added flag, upstream code changed to avoid its need See: COVESA/dlt-daemon#433 and COVESA/dlt-daemon@2224cdd (changed from atomic_bool to atomic_int, the latter doesn't require manual atomic library link since it can be optimized properly by the compiler on riscv platforms) What's Changed: dlt-system: fix a libc buffer overflow detection on 32bit targets by @mtitinger in openembedded#337 dlt-daemon: create sockets using "android way" by @sebastienraillet in openembedded#333 fixes compilation issue with clang by @sebastienraillet in openembedded#339 dlt-daemon: Only create directories if they do not exist yet by @alexmohr in openembedded#340 dlt-system : fix invalid free with ConfigurationFileName by @mtitinger in openembedded#342 fix for the issue openembedded#341 by @rvalovyi in openembedded#347 Forcibly the severity level set by @dhnatiuk1 in openembedded#346 fix -Wformat issues reported by clang by @sebastienraillet in openembedded#349 dlt-system: fix invalid free by removing unused TempDir by @andreirusu96 in openembedded#350 Support for Cygwin toolchain. by @DoctorNoobingstoneIPresume in openembedded#351 filetransfer: Return error if no free space by @ssugiura in openembedded#354 lib: Correct VARI usage in dlt_user_log_write_uint by @ssugiura in openembedded#356 Fix DLT User/Client tests by @andreirusu96 in openembedded#357 tests: Deplicate unused files and variables by @ssugiura in openembedded#359 Fix the target name in documentation by @mawillers in openembedded#372 cmake: Add option to enable each adaptor by itself by @alexmohr in openembedded#364 cmake: Add options to enable/disable each dlt console tool by @alexmohr in openembedded#363 filetransfer: Fix getFileCreationDate2 stat check by @andreirusu96 in openembedded#361 dlt_config_file_parser.c:Fix a pointer release bug in the file。 by @Leslie-bcy in openembedded#376 Update workflow by @thanhbnq in openembedded#389 README: Update link to github actions by @ssugiura in openembedded#392 Fix handle returned value by @thanhbnq in openembedded#384 systemd: install adaptor-udp service for adaptor=on by @danielweber2018 in openembedded#393 automotive-dlt.pc: add the path to find the static library by @zeerd in openembedded#387 enforce-trace-limit: ContextLogLevel is now enforced in the daemon by @alexmohr in openembedded#382 dlt-daemon-connection: Start up even if not all bindings are valid by @alexmohr in openembedded#380 dlt_common.c: Change default logging_mode by @wusto in openembedded#406 logstorage: Truncate ECUid in Logstorage filter to prevent crash by @andreirusu96 in openembedded#402 Update dlt_for_developers.md by @marques-bruno in openembedded#405 dlt-gateway: Fix crash on invalid ip by @alexmohr in openembedded#381 dlt_client:Block in connect() by @thanhbnq in openembedded#409 dlt_daemon_client: Fix change loglevel of application by @lti9hc in openembedded#408 Update maintainer by @thanhbnq in openembedded#410 systemd: add support for socket activation via systemd by @alexmohr in openembedded#401 internal-logging: Fix issues with file logging by @alexmohr in openembedded#378 dlt_common: change output of message for log initialization by @lti9hc in openembedded#412 Avoid memory corruption behind buffer wp in function dlt_getloginfo_conv_ascii_to_id by @michael-methner in openembedded#411 dlt_daemon_client: Fix Control Msg ECUId comparison with active Gateway by @andreirusu96 in openembedded#414 Fix for Resource and Memory Leak by @lti9hc in openembedded#418 dlt-receive: set host interface and allow multiple udp multicast addresses by @thanhbnq in openembedded#420 dlt-system: Fix buffer overflow detection on 32bit targets by @sandy-lcq in openembedded#398 cmake: network trace enable toggle by @danielweber2018 in openembedded#424 client: Fix Get Log Info response conversion method by @andreirusu96 in openembedded#422 filetransfer: fix filesize divisible by blocksize case by @danielweber2018 in openembedded#383 Updates for Coding Styles by @thanhbnq in openembedded#425 gateway: Fix Node handling and ECUid checks by @andreirusu96 in openembedded#429 Update contacts and removed mailing lists by @michael-methner in openembedded#431 dlt-user: Fix crashes in dlt_free during dlt_init by @alexmohr in openembedded#362 dlt-convert: Fix memory leak by calling dlt_file_free by @lvklevankhanh in openembedded#434 dlt-user: fix potential non closed socket in init/free by @alexmohr in openembedded#435 Check for negative index in dlt_file_message by @michael-methner in openembedded#437 Fix memory leak by @lvklevankhanh in openembedded#441 dlt-connection: add socket timeout by @alexmohr in openembedded#439 Installs dlt.conf on android by @sebastienraillet in openembedded#446 This changes a mispatch from fcb676a to install udp binary correctly by @smooge in openembedded#449 logfile: exhance internal dlt logging by introducing size limits by @danielweber2018 in openembedded#369 dlt-logd-converter: fixes android 12 compilation by @sebastienraillet in openembedded#445 dlt-logd-converter: Fix getting log level from log msg by @RobinChenJP in openembedded#456 house-keeper: remove infinite wait by @alexmohr in openembedded#438 cmake: remove duplicated option message by @minminlittleshrimp in openembedded#454 Android: Add new feature in Android bp by @minminlittleshrimp in openembedded#461 dlt_multiple_files: remove superfluous mode bits and add header file to header list by @minminlittleshrimp in openembedded#462 dlt-user: fix crash with certain strings by @alexmohr in openembedded#463 Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.