diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2012-12-05 10:58:58 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-06 12:31:16 +0000 |
commit | 59a704679c825d01f417a303a49be7ef34134c4e (patch) | |
tree | 34825c2a39d7edf0e35d01f78310717111712945 /meta/classes/package.bbclass | |
parent | 65049e9fe67ee004f57e7e28ff868d1479fa4544 (diff) | |
download | poky-59a704679c825d01f417a303a49be7ef34134c4e.tar.gz |
prs: use the PRServer to replace the BB_URI_LOCALCOUNT functionality
- adapt the PRServer to generate an incremental number for every revision set
associated with a (PN, PV)
- use one incrementing value rather than several
- PV becomes 0.1+gitAUTOINC+deadbeefdecafbad_decafbaddeadbeef
- if PV contains 'AUTOINC' set PKGV to the same thing with AUTOINC replaced
with the "auto PR" value
- if the PRServer isn't running replace AUTOINC with 0 (no package feeds, but usual
image creation would work)
- use the PR table with "AUTOINC-${PV-without-SRCREVs}" as key
- modify prexport/primport to address the generated srcrev entries
- this patch addresses the following proposal:
http://lists.linuxtogo.org/pipermail/bitbake-devel/2012-November/003878.html
(From OE-Core rev: b27b438221e16ac3df6ac66d761b77e3bd43db67)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r-- | meta/classes/package.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 3278d37b53..993ce98782 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -411,6 +411,10 @@ python package_get_auto_pr() { | |||
411 | bb.fatal("Can NOT get PRAUTO from remote PR service") | 411 | bb.fatal("Can NOT get PRAUTO from remote PR service") |
412 | return | 412 | return |
413 | d.setVar('PRAUTO',str(auto_pr)) | 413 | d.setVar('PRAUTO',str(auto_pr)) |
414 | else: | ||
415 | pv = d.getVar("PV", True) | ||
416 | if 'AUTOINC' in pv: | ||
417 | d.setVar("PKGV", pv.replace("AUTOINC", "0")) | ||
414 | } | 418 | } |
415 | 419 | ||
416 | LOCALEBASEPN ??= "${PN}" | 420 | LOCALEBASEPN ??= "${PN}" |