-
Notifications
You must be signed in to change notification settings - Fork 735
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
[PATCH] libgpiod_1.2: add dependency on python when building python bindings #111
Closed
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
…indings Commit ab54dd7 "libgpiod: Rrecommend python3 only for PN-python package" also removes the build dependency on python3 however this results in fatal error: Python.h: No such file or directory #include <Python.h> Signed-off-by: Ferry Toth <ftoth@exalondelft.nl>
applied c44679b |
Thanks |
texierp
added a commit
to texierp/meta-openembedded
that referenced
this pull request
Nov 14, 2020
- Drop patch (already in version) This includes the following changes: 98e8dfa inotify-tools 3.20.11.0 583492a Allow produce NULL-delimited output (openembedded#118) e38d78e Resolves Issue openembedded#72 (openembedded#113) 8672a5e User $(id -u) over $USER e5f4ec6 Create FUNDING.yml 8967735 Add integration test to test if chown is tracked successfully e114a35 Only call git clean -fdx if specified 933dea5 Update issue templates 6644476 Create CODE_OF_CONDUCT.md c03dcfc Added -P/--no-dereference to watch a symlink (openembedded#46) aa125f5 Use localtime_r over localtime d222aa9 Fix some issues pointed out by lgtm 69829a8 cirrus-ci: disable the FreeBSD 13 builds c164cfd Add status for FreeBSD 1b06e96 Stop running unit tests on FreeBSD 7ddf451 Makefile.am: add build rule for README (openembedded#111) 67b6e71 Add arm64 build Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Nov 14, 2020
- Drop patch (already in version) This includes the following changes: 98e8dfa inotify-tools 3.20.11.0 583492a Allow produce NULL-delimited output (openembedded#118) e38d78e Resolves Issue openembedded#72 (openembedded#113) 8672a5e User $(id -u) over $USER e5f4ec6 Create FUNDING.yml 8967735 Add integration test to test if chown is tracked successfully e114a35 Only call git clean -fdx if specified 933dea5 Update issue templates 6644476 Create CODE_OF_CONDUCT.md c03dcfc Added -P/--no-dereference to watch a symlink (openembedded#46) aa125f5 Use localtime_r over localtime d222aa9 Fix some issues pointed out by lgtm 69829a8 cirrus-ci: disable the FreeBSD 13 builds c164cfd Add status for FreeBSD 1b06e96 Stop running unit tests on FreeBSD 7ddf451 Makefile.am: add build rule for README (openembedded#111) 67b6e71 Add arm64 build Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Nov 15, 2020
- Drop patch (already in version) This includes the following changes: 98e8dfa inotify-tools 3.20.11.0 583492a Allow produce NULL-delimited output (openembedded#118) e38d78e Resolves Issue openembedded#72 (openembedded#113) 8672a5e User $(id -u) over $USER e5f4ec6 Create FUNDING.yml 8967735 Add integration test to test if chown is tracked successfully e114a35 Only call git clean -fdx if specified 933dea5 Update issue templates 6644476 Create CODE_OF_CONDUCT.md c03dcfc Added -P/--no-dereference to watch a symlink (openembedded#46) aa125f5 Use localtime_r over localtime d222aa9 Fix some issues pointed out by lgtm 69829a8 cirrus-ci: disable the FreeBSD 13 builds c164cfd Add status for FreeBSD 1b06e96 Stop running unit tests on FreeBSD 7ddf451 Makefile.am: add build rule for README (openembedded#111) 67b6e71 Add arm64 build Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 17, 2022
Changelog: ========= * Fixed: [CVE-2021-46141] Fix a bug affecting both uriNormalizeSyntax* and uriMakeOwner* functions where the text range in .hostText would not be duped using malloc but remain unchanged (and hence "not owned") for URIs with an IPv4 or IPv6 address hostname; depending on how an application uses uriparser, this could lead the application into a use-after-free situation. As the second half, fix uriFreeUriMembers* functions that would not free .hostText memory for URIs with an IPv4 or IPv6 address host; also, calling uriFreeUriMembers* multiple times on a URI of this very nature would result in trying to free pointers to stack (rather than heap) memory (GitHub openembedded#121, GitHub openembedded#124) Commit 987b046e41f407d17c622e580fc82a5e834b4329 Commit b1a34743bc1472e055d886e29e9b53f670eb3282 * Fixed: [CVE-2021-46142] Fix functions uriNormalizeSyntax* for out-of-memory situations (i.e. malloc returning NULL) for URIs containing empty segments (any of user info, host text, query, or fragment) where previously pointers to stack (rather than heap) memory were freed (GitHub openembedded#122, GitHub openembedded#124) Commit c0483990e6b5b454f7c8752b36760cfcb0d093f5 * Fixed: CMake: Call "enable_language(CXX)" prior to tinkering with CMAKE_CXX_* variables (GitHub openembedded#110) * Fixed: CMake: Support absolute paths for both CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR (GitHub openembedded#114) * Fixed: Windows: Address MSVC compiler warnings (GitHub openembedded#111, GitHub openembedded#113) * Fixed: Documentation: Space requirements for uriUriStringToUnixFilename did not take into account short form "file:/bin/bash" of RFC 8089 of 2017 (with prefix "file:/" rather than "file:///") that uriparser supports since release 0.8.6 in 2018 (GitHub openembedded#118, GitHub openembedded#119) * Fixed: Compile error with MinGW GCC 9 related to a mismatched prototype for function inet_ntop (GitHub openembedded#117, GitHub openembedded#120) * Fixed: Compile warnings in test suite code (GitHub openembedded#120) * Improved: Respect variable ${CPP} in doc/preprocess.sh (GitHub openembedded#115) * Added: Test suite invocation for MinGW using Wine (GitHub openembedded#120) * Soname: 1:29:0 - see https://verbump.de/ for what these numbers do 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
Jan 18, 2022
Changelog: ========= * Fixed: [CVE-2021-46141] Fix a bug affecting both uriNormalizeSyntax* and uriMakeOwner* functions where the text range in .hostText would not be duped using malloc but remain unchanged (and hence "not owned") for URIs with an IPv4 or IPv6 address hostname; depending on how an application uses uriparser, this could lead the application into a use-after-free situation. As the second half, fix uriFreeUriMembers* functions that would not free .hostText memory for URIs with an IPv4 or IPv6 address host; also, calling uriFreeUriMembers* multiple times on a URI of this very nature would result in trying to free pointers to stack (rather than heap) memory (GitHub #121, GitHub #124) Commit 987b046e41f407d17c622e580fc82a5e834b4329 Commit b1a34743bc1472e055d886e29e9b53f670eb3282 * Fixed: [CVE-2021-46142] Fix functions uriNormalizeSyntax* for out-of-memory situations (i.e. malloc returning NULL) for URIs containing empty segments (any of user info, host text, query, or fragment) where previously pointers to stack (rather than heap) memory were freed (GitHub #122, GitHub #124) Commit c0483990e6b5b454f7c8752b36760cfcb0d093f5 * Fixed: CMake: Call "enable_language(CXX)" prior to tinkering with CMAKE_CXX_* variables (GitHub #110) * Fixed: CMake: Support absolute paths for both CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR (GitHub #114) * Fixed: Windows: Address MSVC compiler warnings (GitHub #111, GitHub #113) * Fixed: Documentation: Space requirements for uriUriStringToUnixFilename did not take into account short form "file:/bin/bash" of RFC 8089 of 2017 (with prefix "file:/" rather than "file:///") that uriparser supports since release 0.8.6 in 2018 (GitHub #118, GitHub #119) * Fixed: Compile error with MinGW GCC 9 related to a mismatched prototype for function inet_ntop (GitHub #117, GitHub #120) * Fixed: Compile warnings in test suite code (GitHub #120) * Improved: Respect variable ${CPP} in doc/preprocess.sh (GitHub #115) * Added: Test suite invocation for MinGW using Wine (GitHub #120) * Soname: 1:29:0 - see https://verbump.de/ for what these numbers do 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 13, 2023
Release notes for 4.18.2 ======================== - manager: Fix GQueue memory management - Fix Xfconf memory management - Update bug report address - Fix suspend/hibernation bug on ConsoleKit2 (Fixes openembedded#164) Release notes for 4.18.1 ======================== - Update copyright year - Fix bus name acquisition/ownership (openembedded#54, !34) - Use XfceScreensaver from Libxfce4ui (!35) - build: Fix previous commit - build: Fix autotools warnings - Avoid duplicating directories in the tail of $XDG_* envs (openembedded#111, !21) - settings: Fix memory leak - libxfsm: Fix wrong return value - Fix memory leaks when opening xfce4-session-settings - Fix blurry session snapshots (!33) - Fix blurry icons in autostart tab when UI scale > 1 (!33) - build: Fix GTK deprecation warnings (!32) - build: Fix some other GDK deprecation warnings (!32) - build: Fix gdk_error_trap_push/pop() deprecation warnings (!32) - build: Let xdt-depends.m4 macros set GLib macros (!32) - build: Remove GDK_VERSION_MIN_REQUIRED/MAX_ALLOWED (!32) - Make use of translations for run hooks (Fixes openembedded#156) - Translation Updates: Greek, Portuguese, Turkish Signed-off-by: Kai Kang <kai.kang@windriver.com> 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.
Commit ab54dd7 "libgpiod: Rrecommend python3 only for PN-python package" also removes the build dependency on python3 however this results in
fatal error: Python.h: No such file or directory #include <Python.h>
Signed-off-by: Ferry Toth ftoth@exalondelft.nl