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 | |
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>
-rw-r--r-- | meta/classes/buildhistory.bbclass | 58 | ||||
-rwxr-xr-x | scripts/buildhistory-collect-srcrevs | 104 |
2 files changed, 156 insertions, 6 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 4b6be22caa..82d0bf8070 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass | |||
@@ -259,12 +259,6 @@ def write_recipehistory(rcpinfo, d): | |||
259 | f.write("DEPENDS = %s\n" % rcpinfo.depends) | 259 | f.write("DEPENDS = %s\n" % rcpinfo.depends) |
260 | f.write("PACKAGES = %s\n" % rcpinfo.packages) | 260 | f.write("PACKAGES = %s\n" % rcpinfo.packages) |
261 | 261 | ||
262 | if rcpinfo.srcrev: | ||
263 | srcrevfile = os.path.join(pkghistdir, "latest_srcrev") | ||
264 | with open(srcrevfile, "w") as f: | ||
265 | f.write(','.join([rcpinfo.bbfile, rcpinfo.src_uri, rcpinfo.srcrev, | ||
266 | rcpinfo.srcrev_autorev])) | ||
267 | |||
268 | 262 | ||
269 | def write_pkghistory(pkginfo, d): | 263 | def write_pkghistory(pkginfo, d): |
270 | bb.debug(2, "Writing package history for package %s" % pkginfo.name) | 264 | bb.debug(2, "Writing package history for package %s" % pkginfo.name) |
@@ -528,3 +522,55 @@ python buildhistory_eventhandler() { | |||
528 | } | 522 | } |
529 | 523 | ||
530 | addhandler buildhistory_eventhandler | 524 | addhandler buildhistory_eventhandler |
525 | |||
526 | |||
527 | # FIXME this ought to be moved into the fetcher | ||
528 | def _get_srcrev_values(d): | ||
529 | """ | ||
530 | Return the version strings for the current recipe | ||
531 | """ | ||
532 | |||
533 | scms = [] | ||
534 | fetcher = bb.fetch.Fetch(d.getVar('SRC_URI', True).split(), d) | ||
535 | urldata = fetcher.ud | ||
536 | for u in urldata: | ||
537 | if urldata[u].method.supports_srcrev(): | ||
538 | scms.append(u) | ||
539 | |||
540 | autoinc_templ = 'AUTOINC+' | ||
541 | dict = {} | ||
542 | for scm in scms: | ||
543 | ud = urldata[scm] | ||
544 | for name in ud.names: | ||
545 | rev = ud.method.sortable_revision(scm, ud, d, name) | ||
546 | if rev.startswith(autoinc_templ): | ||
547 | rev = rev[len(autoinc_templ):] | ||
548 | dict[name] = rev | ||
549 | return dict | ||
550 | |||
551 | python do_write_srcrev() { | ||
552 | pkghistdir = d.getVar('BUILDHISTORY_DIR_PACKAGE', True) | ||
553 | srcrevfile = os.path.join(pkghistdir, 'latest_srcrev') | ||
554 | |||
555 | srcrevs = _get_srcrev_values(d) | ||
556 | if srcrevs: | ||
557 | if not os.path.exists(pkghistdir): | ||
558 | os.makedirs(pkghistdir) | ||
559 | with open(srcrevfile, 'w') as f: | ||
560 | orig_srcrev = d.getVar('SRCREV', False) or 'INVALID' | ||
561 | if orig_srcrev != 'INVALID': | ||
562 | f.write('# SRCREV = "%s"\n' % orig_srcrev) | ||
563 | if len(srcrevs) > 1: | ||
564 | for name, srcrev in srcrevs.items(): | ||
565 | orig_srcrev = d.getVar('SRCREV_%s' % name, False) | ||
566 | if orig_srcrev: | ||
567 | f.write('# SRCREV_%s = "%s"\n' % (name, orig_srcrev)) | ||
568 | f.write('SRCREV_%s = "%s"\n' % (name, srcrev)) | ||
569 | else: | ||
570 | f.write('SRCREV = "%s"\n' % srcrevs.itervalues().next()) | ||
571 | else: | ||
572 | if os.path.exists(srcrevfile): | ||
573 | os.remove(srcrevfile) | ||
574 | } | ||
575 | |||
576 | addtask write_srcrev after do_fetch before do_build | ||
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() | ||