mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Clang finds additional warnings with cffi generated code _CFFI_test_verify_anonymous_struct_with_star_typedef.cpp:587:10: error: non-constant-expression cannot be narrowed from type 'long' to 'size_t' (ak│a 'unsigned long') in initializer list [-Wc++11-narrowing] (From OE-Core rev: 470edc62b1821bcbb679bd3822acd98e9996c9e7) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.1 KiB
BlitzBasic
40 lines
1.1 KiB
BlitzBasic
SUMMARY = "Foreign Function Interface for Python calling C code"
|
|
HOMEPAGE = "http://cffi.readthedocs.org/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=5677e2fdbf7cdda61d6dd2b57df547bf"
|
|
DEPENDS += "libffi python3-pycparser"
|
|
|
|
SRC_URI[sha256sum] = "1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"
|
|
|
|
SRC_URI += "file://run-ptest \
|
|
file://0001-Cast-offset-to-size_t-to-avoid-c-11-narrowing-warnin.patch"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest pkgconfig
|
|
|
|
do_install_ptest() {
|
|
cp -r ${S}/testing ${D}${PTEST_PATH}
|
|
# These two files from the source tree are needed by the tests
|
|
install -D -m644 ${S}/src/c/parse_c_type.c ${D}${PTEST_PATH}/src/c/parse_c_type.c
|
|
install -D -m644 ${S}/src/cffi/parse_c_type.h ${D}${PTEST_PATH}/src/cffi/parse_c_type.h
|
|
}
|
|
|
|
RDEPENDS:${PN} = " \
|
|
python3-ctypes \
|
|
python3-io \
|
|
python3-pycparser \
|
|
python3-setuptools \
|
|
python3-shell \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
python3-dev \
|
|
gcc-symlinks \
|
|
g++-symlinks \
|
|
"
|
|
|
|
INSANE_SKIP:${PN}-ptest = "dev-deps"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|