首页 > 解决方案 > 在 yocto 中为 python 应用程序编写一个配方

问题描述

我有一个简单的 python 应用程序,它可以:

  1. 从 GPS 获取信息
  2. 解析信息
  3. 将其存储在 InfluxDB 中

包装要求:

certifi==2018.4.16
chardet==3.0.4
idna==2.6 
influxdb==5.0.0
pynmea2==1.12.0 
pyserial==3.4
python-dateutil==2.7.3
pytz==2018.4
requests==2.18.4
six==1.11.0
urllib3==1.22          

以上是通过使用生成的:

pip3 install pynmea2 pyserial influxdb

OpenEmbedded Layers Index我已经找到Python3pyserial的包中。这意味着在董事会上我可能需要做。pip3 install pynmea2 influxdb

考虑到所有上述 pip 依赖项,您如何继续编写我的应用程序的配方?

我没有找到任何为 python 应用程序编写食谱的教程。(相反,应用程序在yoctoNode的 wiki 页面上确实有一些指导。

在检查meta-python层中的一些食谱后,我发现了一些.inc文件,但不知道如何去做

标签: python-3.xembedded-linuxyocto

解决方案


为不可用的 python 应用程序创建食谱

由于influxdb-python并且pynmea2不能作为标准 python 食谱使用,我首先使用devtool.

脚步

  1. 用于devtool添加influxdb-python

    devtool add influxdb-python https://github.com/influxdata/influxdb-python/archive/v5.2.0.tar.gz

  2. 用于devtool添加pynmea2

    devtool add pynmea2 https://github.com/Knio/pynmea2/archive/1.7.1.tar.gz

上述步骤workspace在您的文件夹中创建了一个文件夹,$BUILD_DIR并为存储库创建了自动生成的食谱。

  1. 编辑食谱

    devtool edit-recipe influxdb-python

  2. 相应地添加或检查您DEPEND_${PN}RDEPENDS_${PN}食谱。我将所有的requirements.txtfor添加influxdb-pythonRDEPENDS_${PN}即。

    RDEPEND_${PN} += "${PYTHON_PN}-modules ${PYTHON_PN}-requests ${PYTHON_PN}-dateutil ${PYTHON_PN}-pytz ${PYTHON_PN}-six"

    注意:我没有添加pandas或者numpy因为它们与我的应用程序无关。

  3. DEPENDS_${PN} = "${PYTHON_PN}-modules也加了。

注意:执行相同的操作,pynmea2但由于requirements.txt我没有添加任何RDEPENDS_${PN} = "${PYTHON_PN}-modules"内容,因此目标上的所有主要内容都可用。

配方结构

GitHub Gist 食谱

我遵循meta-python文件夹的结构,其中每个食谱包括:

  • recipe.inc
  • recipe_version_number.bb

influxdb_python.inc保留所有从devtool即生成的东西。

# Recipe created by recipetool
# This is the basis of a recipe and may need further editing in order to be fully functional.
# (Feel free to remove these comments when editing.)
#
# WARNING: the following LICENSE and LIC_FILES_CHKSUM values are best guesses - it is
# your responsibility to verify that the values are complete and correct.
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=046523829184aac3703a4c60c0ae2104"

HOMEPAGE = "https://github.com/influxdb/influxdb-python"
SUMMARY = "InfluxDB client"

SRC_URI = "https://github.com/influxdata/influxdb-python/archive/v${PV}.tar.gz"
SRC_URI[md5sum] = "105d88695151e241523b31dd1375096e"
SRC_URI[sha256sum] = "620de85bcca5207b06ec1565884b6d10b4be01d579a78e08b1e922f453fdac05"

DEPENDS_${PN} = "${PYTHON_PN}-modules"
RDEPENDS_${PN} = "${PYTHON_PN}-modules ${PYTHON_PN}-requests ${PYTHON_PN}-dateutil ${PYTHON_PN}-pytz ${PYTHON_PN}-six"

influxdb_python_5.2.0.bb我添加了以下几行:

inherit setuptools3 pypi                              
require influxdb-python.inc

注意:我添加setuptools3是因为我希望我的应用程序能够在其上运行python3.5。对于 python2.7 使用setuptools.

同样,我对pynmea2.inc:

# Recipe created by recipetool
# This is the basis of a recipe and may need further editing in order to be fully functional.
# (Feel free to remove these comments when editing.)
#
# WARNING: the following LICENSE and LIC_FILES_CHKSUM values are best guesses - it is
# your responsibility to verify that the values are complete and correct.
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=bb5e173bc54080cb25079199959ba6b6"

HOMEPAGE = "https://github.com/Knio/pynmea2"
SUMMARY = "Python library for the NMEA 0183 protcol"

SRC_URI = "https://github.com/Knio/pynmea2/archive/${PV}.tar.gz"
SRC_URI[md5sum] = "a90baf61f4e676bef76099e4bd7c0581"
SRC_URI[sha256sum] = "8f8f68623bd2d5dab7f04a9c31813a3f4aa15467db0373cbce6b9b0ae44ca48e"

#DEPENDS_${PN} = "${PYTHON_PN}-datetime ${PYTHON_PN}-threading ${PYTHON_PN}-io"
DEPENDS_${PN} = "${PYTHON_PN}-modules"
# WARNING: the following rdepends are determined through basic analysis of the
# python sources, and might not be 100% accurate.
RDEPENDS_${PN} = "${PYTHON_PN}-modules"

对于pynmea2_1.7.1.bb

inherit setuptools3 pypi
require pynmea2.inc

烘烤食谱

bitbake -k influxdb-python您可以使用andbitbake -k pynmea2 或使用 devtool build influxdb-pythonand测试它们 devtool build pynmea2

如果您没有错误,则可以使用以下命令将其部署在目标上:

devtool deploy-target influxdb-python user@machineIP:dest_folder

检查

您可以通过触发 python shell 来检查

# python3 

 >> import influxdb-python
 >> import pyserial

如果导入没有抛出缺少模块的错误,那么它是成功的!!

最后的步骤

  • 您可以取消部署模块:devtool undeploy-target recipe_name [address of target]

  • 将食谱发送给您自定义元层devtool finish recipe_name ../meta-custom

注意:如果您正在使用krogoth或降低,您将不得不手动将您的食谱移动到您的元层

  • 现在将这些食谱包含在您的conf/local.confwithIMAGE_INSTALL_append = " influxdb-python pynmea2" bitbake -k your-image-name

自定义应用程序

尚未测试。

但我想我会像YoctoCookBook Repository 中hello-world提到的那样简单地将我的应用程序添加到我的meta层中。

掘金

  • ${PYTHON_PN}-modules真的是救世主。我尝试手动添加运行时依赖,每次我在板上部署它时总是缺少一些依赖项。但是modules在一个实例中添加解决了所有缺失的 deps 问题。

  • 我不确定何时使用DEPENDS_${PN},但我认为大多数 python 应用程序都依赖于基础,python-modules因此我添加了它们。

  • 不是 YOCTO 专家,但这只是我过去两周的发现。Yocto 中缺少 Python 的适当示例。希望这可以帮助某人。


推荐阅读