summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/buildhistory.bbclass58
-rwxr-xr-xscripts/buildhistory-collect-srcrevs104
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
269def write_pkghistory(pkginfo, d): 263def 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
530addhandler buildhistory_eventhandler 524addhandler buildhistory_eventhandler
525
526
527# FIXME this ought to be moved into the fetcher
528def _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
551python 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
576addtask 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
21import os, sys
22import optparse
23import logging
24
25def 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
33logger = logger_create()
34
35def 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
103if __name__ == "__main__":
104 main()