Yocto Build for python3-playsound Completes Successfully but Only Outputs Logs

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Yocto Build for python3-playsound Completes Successfully but Only Outputs Logs

488 次查看
taabouri
Contributor I

 

I’m working on building a custom Yocto recipe for python3-playsound (version 1.2.2) on a Cortex-A72/Cortex-A53 target. The build completes successfully without any errors, but the only outputs I get are log files—no actual files from the package are showing up in the final output directories.
here’s the recipe:

LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://playsound-1.2.2.dist-info/METADATA;md5=942cdc91f8f53ffd960367b0ba0e652c"

SRC_URI = "https://files.pythonhosted.org/packages/f5/16/10d897b0a83fb4b05b03a63d7a2667ab75f857f67f7062fd447dd3f49bf7/playsound-1.2.2-py2.py3-none-any.whl;downloadfilename=playsound-${PV}-py2.py3-none-any.zip;subdir=python3-playsound-1.2.2"

SRC_URI[sha256sum] =  "1e83750a5325cbccee03d6e751ba3e78c037ac95b95a3ba1f38d0c5aca9e1a34"
SRC_URI[md5sum] = "30f7763f7ec70f351b0767eb71e289f3" 

inherit python3-dir

do_unpack[depends] += "unzip-native:do_populate_sysroot"

DEPENDS += "python3"

do_install() {
 
    install -d ${D}${bindir}
    install -m 644 ${S}/playsound.py ${D}${bindir}/
}
0 项奖励
回复
1 回复

454 次查看
Chavira
NXP TechSupport
NXP TechSupport

Hi @taabouri!

Thank you for contacting NXP Support!

 

Unfortunately we don't have that package in our Yocto recipes.

 

I recommend to check recipes from other python packages to get a reference.

 

Best Regards!

Chavira

0 项奖励
回复