aboutsummaryrefslogtreecommitdiffstats
path: root/lib/pyinotify.py
AgeCommit message (Collapse)Author
2016-05-24bitbake/pyinotify.py: Upgrade to py3 versionRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2015-01-13bitbake: Add pyinotify to lib/Richard Purdie
We need inotify support within bitbake and pyinotify provides the best mechanism to add this. We have a few options: a) Depend on pyinotify from the system b) Add in our own copy c) Only use pyinotify in cases like the memory resident server For a), it would mean adding in dependencies, updating documentation and generally creating churn for users as well as having implications for things like the build-appliance recipe. It turns out that glibc has the C functionality we need from version 2.4 onwards (2006) and that we just need a single python file for b), there is no binary module needed. We therefore add in a copy of pyinotify 0.9.5 into the tree meaning we can depend on it simply and unconditionally. c) is unattractive as we need fewer possible code paths, not more. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>