Guest User

devtool creates a recipe with wrong python source dir

a guest
Sep 18th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. $ cat workspace/recipes/python3-bnofluxlite/python3-bnofluxlite_0.0.1.bb
  2. # Recipe created by recipetool
  3. # This is the basis of a recipe and may need further editing in order to be fully functional.
  4. # (Feel free to remove these comments when editing.)
  5.  
  6. SUMMARY = "CLI to parse GPS RMC Co-ordinates and publish them via MQTT and store into InfluxDB"
  7. # WARNING: the following LICENSE and LIC_FILES_CHKSUM values are best guesses - it is
  8. # your responsibility to verify that the values are complete and correct.
  9. LICENSE = "MIT"
  10. LIC_FILES_CHKSUM = "file://LICENSE;md5=373144ff274075072c0386be40a7e9e1"
  11.  
  12. SRC_URI = "https://github.com/iotfablab/bnofluxlite/archive/v${PV}.tar.gz"
  13. SRC_URI[md5sum] = "9da004c4e0743b7c58b865c74df3b889"
  14. SRC_URI[sha256sum] = "59a7ca9f26f4e48bfbe8313933ef46e9cdf63b3d19d038239d2e9bf1cffbc8a8"
  15.  
  16. S = "${WORKDIR}/gpsfluxlite-${PV}"
  17.  
  18. inherit setuptools
  19.  
  20. # WARNING: the following rdepends are from setuptools install_requires. These
  21. # upstream names may not correspond exactly to bitbake package names.
  22. RDEPENDS_${PN} += "${PYTHON_PN}-paho-mqtt"
  23.  
  24. # WARNING: the following rdepends are determined through basic analysis of the
  25. # python sources, and might not be 100% accurate.
  26. RDEPENDS_${PN} += "${PYTHON_PN}-core ${PYTHON_PN}-modules"
  27.  
Add Comment
Please, Sign In to add comment