diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-03-27 18:05:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-29 10:40:54 +0000 |
commit | 9a3fbf92c4af93cdb66d515c3cd3e64610fbee4a (patch) | |
tree | 3dd126c290296e8e58b8e8b525fa70df5b53828f /scripts | |
parent | 38150f17b44aaa2f8b17eca6a77f0ca597e5327f (diff) | |
download | poky-9a3fbf92c4af93cdb66d515c3cd3e64610fbee4a.tar.gz |
classes/buildhistory: improve SRCREV recording
Collect SRCREV information in a separate task and write it out in a
format which is more consistent with the rest of the buildhistory
output. Using a task means that SRCREV values will also be recorded for
native recipes and not just target ones, and the new formatting also
correctly handles multiple entries in SRC_URI.
Also adds scripts/buildhistory-collect-srcrevs which will report on all
of the recorded SRCREV values in a format suitable for use in global
configuration (e.g. local.conf or a distro inc file) to override AUTOREV
values to a fixed set of revisions. Example output:
# emenlow-poky-linux
SRCREV_machine_pn-linux-yocto = "b5c37fe6e24eec194bb29d22fdd55d73bcc709bf"
SRCREV_emgd_pn-linux-yocto = "caea08c988e0f41103bbe18eafca20348f95da02"
SRCREV_meta_pn-linux-yocto = "c2ed0f16fdec628242a682897d5d86df4547cf24"
# core2-poky-linux
SRCREV_pn-kmod = "62081c0f68905b22f375156d4532fd37fa5c8d33"
SRCREV_pn-blktrace = "d6918c8832793b4205ed3bfede78c2f915c23385"
SRCREV_pn-opkg = "649"
Some notes on using this script:
* By default only values where the SRCREV was not hardcoded (usually
i.e. AUTOREV was used) are reported - use the -a option to see all
SRCREV values.
* The output statements may not have any effect in the face of overrides
applied elsewhere; use the -f option to add the forcevariable override
to each output line to work around this.
* The script does not do any special handling for multiple machines;
however it does place a comment before each set of values specifying
which triplet they belong to as shown above.
Relates to [YOCTO #3041].
(From OE-Core rev: 2179db89436d719635f858c87d1e098696bead2a)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/buildhistory-collect-srcrevs | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/scripts/buildhistory-collect-srcrevs b/scripts/buildhistory-collect-srcrevs new file mode 100755 index 0000000000..7f65c90376 --- /dev/null +++ b/scripts/buildhistory-collect-srcrevs | |||
@@ -0,0 +1,104 @@ | |||
1 | #!/usr/bin/env python | ||
2 | # | ||
3 | # Collects the recorded SRCREV values from buildhistory and reports on them | ||
4 | # | ||
5 | # Copyright 2013 Intel Corporation | ||
6 | # Authored-by: Paul Eggleton <paul.eggleton@intel.com> | ||
7 | # | ||
8 | # This program is free software; you can redistribute it and/or modify | ||
9 | # it under the terms of the GNU General Public License version 2 as | ||
10 | # published by the Free Software Foundation. | ||
11 | # | ||
12 | # This program is distributed in the hope that it will be useful, | ||
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | # GNU General Public License for more details. | ||
16 | # | ||
17 | # You should have received a copy of the GNU General Public License along | ||
18 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
19 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
20 | |||
21 | import os, sys | ||
22 | import optparse | ||
23 | import logging | ||
24 | |||
25 | def logger_create(): | ||
26 | logger = logging.getLogger("buildhistory") | ||
27 | loggerhandler = logging.StreamHandler() | ||
28 | loggerhandler.setFormatter(logging.Formatter("%(levelname)s: %(message)s")) | ||
29 | logger.addHandler(loggerhandler) | ||
30 | logger.setLevel(logging.INFO) | ||
31 | return logger | ||
32 | |||
33 | logger = logger_create() | ||
34 | |||
35 | def main(): | ||
36 | parser = optparse.OptionParser( | ||
37 | usage = """ | ||
38 | %prog [options] <buildhistory-dir>""") | ||
39 | |||
40 | parser.add_option("-a", "--report-all", | ||
41 | help = "Report all SRCREV values, not just ones where AUTOREV has been used", | ||
42 | action="store_true", dest="reportall") | ||
43 | parser.add_option("-f", "--forcevariable", | ||
44 | help = "Use forcevariable override for all output lines", | ||
45 | action="store_true", dest="forcevariable") | ||
46 | |||
47 | options, args = parser.parse_args(sys.argv) | ||
48 | |||
49 | if len(args) != 2: | ||
50 | parser.print_help() | ||
51 | sys.exit(1) | ||
52 | |||
53 | buildhistory_dir = args[1] | ||
54 | if not os.path.exists(buildhistory_dir): | ||
55 | logger.error('specified buildhistory path %s could not be found' % buildhistory_dir) | ||
56 | sys.exit(1) | ||
57 | |||
58 | if options.forcevariable: | ||
59 | forcevariable = '_forcevariable' | ||
60 | else: | ||
61 | forcevariable = '' | ||
62 | |||
63 | lastdir = '' | ||
64 | for root, dirs, files in os.walk(buildhistory_dir): | ||
65 | if '.git' in dirs: | ||
66 | dirs.remove('.git') | ||
67 | for fn in files: | ||
68 | if fn == 'latest_srcrev': | ||
69 | curdir = os.path.basename(os.path.dirname(root)) | ||
70 | if lastdir != curdir: | ||
71 | print('# %s' % curdir) | ||
72 | lastdir = curdir | ||
73 | fullpath = os.path.join(root, fn) | ||
74 | pn = os.path.basename(root) | ||
75 | srcrev = None | ||
76 | orig_srcrev = None | ||
77 | orig_srcrevs = {} | ||
78 | srcrevs = {} | ||
79 | with open(fullpath) as f: | ||
80 | for line in f: | ||
81 | if '=' in line: | ||
82 | splitval = line.split('=') | ||
83 | value = splitval[1].strip('" \t\n\r') | ||
84 | if line.startswith('# SRCREV = '): | ||
85 | orig_srcrev = value | ||
86 | elif line.startswith('# SRCREV_'): | ||
87 | splitval = line.split('=') | ||
88 | name = splitval[0].split('_')[1].strip() | ||
89 | orig_srcrevs[name] = value | ||
90 | elif line.startswith('SRCREV ='): | ||
91 | srcrev = value | ||
92 | elif line.startswith('SRCREV_'): | ||
93 | name = splitval[0].split('_')[1].strip() | ||
94 | srcrevs[name] = value | ||
95 | if srcrev and (options.reportall or srcrev != orig_srcrev): | ||
96 | print('SRCREV_pn-%s%s = "%s"' % (pn, forcevariable, srcrev)) | ||
97 | for name, value in srcrevs.items(): | ||
98 | orig = orig_srcrevs.get(name, orig_srcrev) | ||
99 | if options.reportall or value != orig: | ||
100 | print('SRCREV_%s_pn-%s%s = "%s"' % (name, pn, forcevariable, value)) | ||
101 | |||
102 | |||
103 | if __name__ == "__main__": | ||
104 | main() | ||