From 425435f403bce05614ab91d4f685135c30408a99 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 5 Oct 2010 10:07:00 +0100 Subject: base.bbclass: Implement PRINC, a way to increment the PR variable in .bbappend files Signed-off-by: Richard Purdie --- meta/classes/base.bbclass | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'meta/classes') diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index a9e5657d86..9ab8204dbc 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -440,7 +440,26 @@ do_build = "" do_build[func] = "1" python () { - import exceptions + import exceptions, string + + # If PRINC is set, try and increase the PR value by the amount specified + princ = bb.data.getVar('PRINC', d, True) + if princ: + pr = bb.data.getVar('PR', d, True) + start = -1 + end = -1 + for i in range(len(pr)): + if pr[i] in string.digits: + if start == -1: + start = i + else: + end = i + if start == -1 or end == -1: + bb.error("Unable to analyse format of PR variable: %s" % pr) + prval = pr[start:end+1] + prval = int(prval) + int(princ) + pr = pr[0:start] + str(prval) + pr[end:len(pr)-1] + bb.data.setVar('PR', pr, d) pn = bb.data.getVar('PN', d, 1) license = bb.data.getVar('LICENSE', d, True) -- cgit v1.2.3-54-g00ecf