diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-10-09 21:24:38 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-20 19:07:51 +0100 |
commit | e3d0d9897e45219c3964165666f0ceebff580678 (patch) | |
tree | adf8604636cc5e6e85cc01799e48697ef9763331 /meta/classes/packagedata.bbclass | |
parent | 2a05bd9be0cb3961f394035bf0f4561283248a83 (diff) | |
download | poky-e3d0d9897e45219c3964165666f0ceebff580678.tar.gz |
Move packagedata code into oe.packagedata (sync from OE)
(From OE-Core rev: e6858627ab087f2f25ebbd6c4422eeae35f3b0ac)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/packagedata.bbclass')
-rw-r--r-- | meta/classes/packagedata.bbclass | 68 |
1 files changed, 4 insertions, 64 deletions
diff --git a/meta/classes/packagedata.bbclass b/meta/classes/packagedata.bbclass index 86f18a9e96..bf051feea8 100644 --- a/meta/classes/packagedata.bbclass +++ b/meta/classes/packagedata.bbclass | |||
@@ -1,73 +1,13 @@ | |||
1 | def packaged(pkg, d): | ||
2 | return os.access(get_subpkgedata_fn(pkg, d) + '.packaged', os.R_OK) | ||
3 | |||
4 | def read_pkgdatafile(fn): | ||
5 | pkgdata = {} | ||
6 | |||
7 | def decode(str): | ||
8 | import codecs | ||
9 | c = codecs.getdecoder("string_escape") | ||
10 | return c(str)[0] | ||
11 | |||
12 | if os.access(fn, os.R_OK): | ||
13 | import re | ||
14 | f = file(fn, 'r') | ||
15 | lines = f.readlines() | ||
16 | f.close() | ||
17 | r = re.compile("([^:]+):\s*(.*)") | ||
18 | for l in lines: | ||
19 | m = r.match(l) | ||
20 | if m: | ||
21 | pkgdata[m.group(1)] = decode(m.group(2)) | ||
22 | |||
23 | return pkgdata | ||
24 | |||
25 | def get_subpkgedata_fn(pkg, d): | ||
26 | archs = bb.data.expand("${PACKAGE_ARCHS}", d).split(" ") | ||
27 | archs.reverse() | ||
28 | pkgdata = bb.data.expand('${TMPDIR}/pkgdata/', d) | ||
29 | targetdir = bb.data.expand('${TARGET_VENDOR}-${TARGET_OS}/runtime/', d) | ||
30 | for arch in archs: | ||
31 | fn = pkgdata + arch + targetdir + pkg | ||
32 | if os.path.exists(fn): | ||
33 | return fn | ||
34 | return bb.data.expand('${PKGDATA_DIR}/runtime/%s' % pkg, d) | ||
35 | |||
36 | def has_subpkgdata(pkg, d): | ||
37 | return os.access(get_subpkgedata_fn(pkg, d), os.R_OK) | ||
38 | |||
39 | def read_subpkgdata(pkg, d): | ||
40 | return read_pkgdatafile(get_subpkgedata_fn(pkg, d)) | ||
41 | |||
42 | def has_pkgdata(pn, d): | ||
43 | fn = bb.data.expand('${PKGDATA_DIR}/%s' % pn, d) | ||
44 | return os.access(fn, os.R_OK) | ||
45 | |||
46 | def read_pkgdata(pn, d): | ||
47 | fn = bb.data.expand('${PKGDATA_DIR}/%s' % pn, d) | ||
48 | return read_pkgdatafile(fn) | ||
49 | |||
50 | python read_subpackage_metadata () { | 1 | python read_subpackage_metadata () { |
51 | data = read_pkgdata(bb.data.getVar('PN', d, 1), d) | 2 | import oe.packagedata |
3 | |||
4 | data = oe.packagedata.read_pkgdata(bb.data.getVar('PN', d, 1), d) | ||
52 | 5 | ||
53 | for key in data.keys(): | 6 | for key in data.keys(): |
54 | bb.data.setVar(key, data[key], d) | 7 | bb.data.setVar(key, data[key], d) |
55 | 8 | ||
56 | for pkg in bb.data.getVar('PACKAGES', d, 1).split(): | 9 | for pkg in bb.data.getVar('PACKAGES', d, 1).split(): |
57 | sdata = read_subpkgdata(pkg, d) | 10 | sdata = oe.packagedata.read_subpkgdata(pkg, d) |
58 | for key in sdata.keys(): | 11 | for key in sdata.keys(): |
59 | bb.data.setVar(key, sdata[key], d) | 12 | bb.data.setVar(key, sdata[key], d) |
60 | } | 13 | } |
61 | |||
62 | |||
63 | # | ||
64 | # Collapse FOO_pkg variables into FOO | ||
65 | # | ||
66 | def read_subpkgdata_dict(pkg, d): | ||
67 | ret = {} | ||
68 | subd = read_pkgdatafile(get_subpkgedata_fn(pkg, d)) | ||
69 | for var in subd: | ||
70 | newvar = var.replace("_" + pkg, "") | ||
71 | ret[newvar] = subd[var] | ||
72 | return ret | ||
73 | |||