I made some bad reference change on the last build that might be affecting the compile. So please try again compiling the build with latest git version.
If there are still errors can you post detailed error log so I can figure out what seems to be the problem?
here you are, same error:
]DEBUG: Executing shell function do_compile
/home/bart/openpli-oe-core/build/tmp/sysroots/x86_64-linux/usr/bin/python-native/python: can't open file 'setup.py': [Errno 2] No such file or directory
ERROR: python setup.py build_ext execution failed.
WARNING: /home/bart/openpli-oe-core/build/tmp/work/mips32el-oe-linux/enigma2-plugin-extensions-epgimportfilter/1.0-r0/temp/run.do_compile.14302:1 exit 1 from
exit 1
ERROR: Function failed: do_compile (log file is located at /home/bart/openpli-oe-core/build/tmp/work/mips32el-oe-linux/enigma2-plugin-extensions-epgimportfilter/1.0-r0/temp/log.do_compile.14302)
as I already wrote in #67, for me it looks that this plugin as it constructed now to build properly needs some configure.ac in its repo (and correct me if I'm wrong, my knowledge in regards of this autotools stuff is, uhm, rudimentary...)
or, maybe you could consider redesign it, so it would be build using setuptools...
you just put all the plugin files into /plugin folder, and add corresponding setup.py,
take a look into one of the other e2openplugins as an example
https://github.com/E...master/setup.py
Ok let's change it in epgimportfilter. How can I add dependency toward difflib in the project so difflib is installed together with the plugin?
you need to add dependency to the plugin recipe:
DEPENDS = "python-difflib"