NFJones / pipoe

Generate python bitbake recipes!
MIT License
20 stars 22 forks source link

Automatically place recipes in their own folders #17

Open jeremiahrose opened 3 years ago

jeremiahrose commented 3 years ago

If I run

$ pipoe -y python3 -p halo
Gathering info:
  halo
  | log-symbols
  |-- colorama
  | spinners
  | termcolor
  | six
Generating recipes:
  python3-halo_0.0.31.bb
  python3-log-symbols_0.0.14.bb
  python3-colorama_0.4.4.bb
  python3-spinners_0.0.24.bb
  python3-termcolor_1.1.0.bb
  python3-six_1.16.0.bb

PREFERRED_VERSIONS are available in: ./python3-versions.inc

pipoe generates a bunch of recipes - however I now have to manually put each of them into their own folder to be recognised by bitbake.

It would be nice if pipoe had an option to do this automatically!

sudilav commented 2 years ago

@jeremiahrose This doesn't sound like normal behaviour - I was just checking issues if there was a replica of mine. I'm running all my recipes from meta-marte/recipes-devtools/python/ and they are found fine. Your layer.conf file in your layer/conf folder basically defines that a recipes should be in a folder with naming:

# We have recipes-* directories, add to BBFILES
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
            ${LAYERDIR}/recipes-*/*/*.bbappend"

Where are you currently storing your recipes?