diff options
author | Haixiao Yan <haixiao.yan.cn@windriver.com> | 2025-08-13 15:08:49 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-08-13 12:25:37 -0700 |
commit | f2dc694c52618c04880b28aceec48ff3a853558f (patch) | |
tree | 5652ed854f2cfd70d7bc9a9ce6481d925569cbcf /meta-python/recipes-devtools/python/python3-posix-ipc_1.3.0.bb | |
parent | 7b7d912e7a55d29832492726b909ba46f8de2f77 (diff) | |
download | meta-openembedded-f2dc694c52618c04880b28aceec48ff3a853558f.tar.gz |
python3-posix-ipc: upgrade 1.2.0 -> 1.3.0
Remove following patches, they have been fixed since 1.3.0.
0001-build_support-use-source-filename-instead-of-foo-for.patch
0002-build_support-handle-empty-max_priority-value-as-Non.patch
0003-build_support-use-does_build_succeed-in-compile_and_.patch
Backport a patch to fix dicsovery fails when CC contains flags
License-Update: update copyright statements to include contributors
Signed-off-by: Haixiao Yan <haixiao.yan.cn@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-posix-ipc_1.3.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-posix-ipc_1.3.0.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-posix-ipc_1.3.0.bb b/meta-python/recipes-devtools/python/python3-posix-ipc_1.3.0.bb new file mode 100644 index 0000000000..02d2e55bad --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-posix-ipc_1.3.0.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "POSIX IPC primitives (semaphores, shared memory and message queues) for Python" | ||
2 | HOMEPAGE = "https://semanchuk.com/philip/posix_ipc/" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e3d8df223c2614dbf1aabdc1ca23cc10" | ||
6 | |||
7 | PYPI_PACKAGE = "posix_ipc" | ||
8 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
9 | |||
10 | SRC_URI[sha256sum] = "6e559ac5bb5f6f233c396103f4868e383bbd8f4e54d20876910896f47d353448" | ||
11 | |||
12 | SRC_URI += " \ | ||
13 | file://0001-build_support-fix-cross-compilation-error-when-CC-is.patch \ | ||
14 | " | ||
15 | |||
16 | # Message queue support requires librt for proper linking | ||
17 | LDFLAGS += "-lrt" | ||
18 | |||
19 | inherit pypi python_setuptools_build_meta | ||