Searched +full:python3 +full:- +full:github (Results 1 – 7 of 7) sorted by relevance
| /optee_os/.github/workflows/ |
| H A D | notify.yml | 2 # for pull requests against the OP-TEE OS main repository in a secure way. 4 # (issues: write) using the default short-lived GITHUB_TOKEN. Due to this 15 pull-requests: write 17 notify-maintainers: 18 runs-on: ubuntu-latest 20 - name: Checkout base branch 22 - name: Install python3-github 24 sudo apt-get update 25 sudo apt-get install python3-github 26 - name: Compute maintainers [all …]
|
| /optee_os/scripts/ |
| H A D | notify_maintainers.py | 1 #!/usr/bin/env python3 2 # SPDX-License-Identifier: BSD-2-Clause 14 # REPO: the name of the target repository (normally: OP-TEE/optee_os) 26 from github import Github 27 from github import Auth 31 """Parse get_maintainer.py output and return GitHub handles to notify. 42 if handle_start == -1 or handle_end == -1: 49 if paren_start != -1 and paren_end != -1: 75 handles_to_mention = handles - the_rest_handles 80 """Run get_maintainer.py with -g PR_NUMBER and parse handles.""" [all …]
|
| H A D | update_changelog.py | 1 #!/usr/bin/env python3 2 # SPDX-License-Identifier: BSD-2-Clause 16 ' --changelog-file CHANGELOG.md' 17 ' --release-version 3.7.0' 18 ' --previous-release-version 3.6.0' 19 ' --release-date 2019-10-11') 21 parser.add_argument('--changelog-file', action='store', required=False, 25 parser.add_argument('--release-date', action='store', required=True, 26 help='The release date (yyyy-mm-dd).') 28 parser.add_argument('--release-version', action='store', required=True, [all …]
|
| H A D | get_maintainer.py | 1 #!/usr/bin/env python3 5 # SPDX-License-Identifier: BSD-2-Clause 17 DIFF_GIT_RE = re.compile(r'^diff --git a/(?P<path>.*) ') 18 REVIEWED_RE = re.compile(r'^Reviewed-by: (?P<approver>.*>)') 19 ACKED_RE = re.compile(r'^Acked-by: (?P<approver>.*>)') 20 PATCH_START = re.compile(r'^From [0-9a-f]{40}') 28 '(With -m) Check if a patch or pull ' 31 parser.add_argument('-m', '--merge-check', action='store_true', 32 help='use Reviewed-by: and Acked-by: tags found in ' 35 parser.add_argument('-p', '--show-paths', action='store_true', [all …]
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | README.md | 6 Mbed TLS includes a reference implementation of the [PSA Cryptography API](#psa-cryptography-api). … 9 ------------- 11 … more programmatic way using the Python 3 script `scripts/config.py` (use `--help` for usage instr… 15 We provide some non-standard configurations focused on specific use cases in the `configs/` directo… 18 ------------- 20 The main Mbed TLS documentation is available via [ReadTheDocs](https://mbed-tls.readthedocs.io/). 22 …entation for the PSA Cryptography API is available [on GitHub](https://arm-software.github.io/psa-… 24 To generate a local copy of the library documentation in HTML format, tailored to your compile-time… 33 --------- 37 - GNU Make [all …]
|
| H A D | ChangeLog | 3 = Mbed TLS 3.6.4 branch released 2025-06-30 8 session, according to the TLS-Exporter specification in RFC 8446 and 5705. 15 CVE-2025-49601 19 CVE-2025-49600 30 CVE-2025-52496 31 * Fix possible use-after-free or double-free in code calling 36 they were free()d, resulting in high risk of use-after-free or double-free, 39 were affected (use-after-free if the san string contains more than one DN). 42 CVE-2025-47917 54 CVE-2025-48965 [all …]
|
| /optee_os/core/arch/arm/ |
| H A D | arm.mk | 3 arch-bits-core := 64 5 arch-bits-core := 32 7 CROSS_COMPILE_core := $(CROSS_COMPILE$(arch-bits-core)) 11 # Defines the cc-option macro using the compiler set for the core module 12 include mk/cc-option.mk 37 CFG_KERN_LINKER_FORMAT ?= elf64-littleaarch64 49 CFG_KERN_LINKER_FORMAT ?= elf32-littlearm 54 # Use hard-float for floating point support in user TAs instead of 55 # soft-float 58 # AArch64 has no fallback to soft-float [all …]
|