From 7791fdfc5ebafbd52b7921cd4a1ffc77699afb06 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Sat, 9 Oct 2010 17:59:05 -0700 Subject: oe.package: add 'files' function This function obtains a list of files to be included in a package, using the globs in FILES_ and the files installed in ${D}. Currently, the only user is package_dbg, but I can see this being useful in package.bbclass as well. Signed-off-by: Chris Larson --- lib/oe/package.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/oe/package.py (limited to 'lib/oe/package.py') diff --git a/lib/oe/package.py b/lib/oe/package.py new file mode 100644 index 0000000000..464368e78f --- /dev/null +++ b/lib/oe/package.py @@ -0,0 +1,24 @@ +import glob +import os.path +import oe.path + +def files(pkg, d): + """ Obtains a list of files to be included in a package. + + Starting from the FILES_ variable, it expands any glob.globs in the list, + which removes missing files, and traverses any directories in the list. + + It does *not* remove files which are also in other packages, it's left + to the user's discretion whether to allow overlap. """ + + installdir = d.getVar("D", True) + installdirlen = len(installdir) + + files = (d.getVar("FILES_%s" % pkg, True) or "").split() + for globbed in (glob.glob(os.path.join(installdir, file[1:])) for file in files): + for path in globbed: + if os.path.isdir(path) and not os.path.islink(path): + for file in oe.path.find(path): + yield file[installdirlen:] + else: + yield path[installdirlen:] -- cgit 1.2.3-korg