mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-08-21 16:29:14 +02:00

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>
20 lines
655 B
BlitzBasic
20 lines
655 B
BlitzBasic
DESCRIPTION = "POSIX IPC primitives (semaphores, shared memory and message queues) for Python"
|
|
HOMEPAGE = "https://semanchuk.com/philip/posix_ipc/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e3d8df223c2614dbf1aabdc1ca23cc10"
|
|
|
|
PYPI_PACKAGE = "posix_ipc"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
SRC_URI[sha256sum] = "6e559ac5bb5f6f233c396103f4868e383bbd8f4e54d20876910896f47d353448"
|
|
|
|
SRC_URI += " \
|
|
file://0001-build_support-fix-cross-compilation-error-when-CC-is.patch \
|
|
"
|
|
|
|
# Message queue support requires librt for proper linking
|
|
LDFLAGS += "-lrt"
|
|
|
|
inherit pypi python_setuptools_build_meta
|