diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-01-05 17:37:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-06 11:27:26 +0000 |
commit | 5c8d583a12c507788c746637d5b4ddea62b0a629 (patch) | |
tree | b7b2793cc65aeb16ce3fdea9df157f6731f5a4ca /meta/classes | |
parent | d3e70e0ed1ece5c8eb7f9c1c8140d3bd7b4333cf (diff) | |
download | openembedded-core-5c8d583a12c507788c746637d5b4ddea62b0a629.tar.gz openembedded-core-5c8d583a12c507788c746637d5b4ddea62b0a629.tar.bz2 openembedded-core-5c8d583a12c507788c746637d5b4ddea62b0a629.zip |
classes/buildhistory: remove redundant package history checking stub
The code that would have gone here has been superseded by the
buildhistory analysis functionality implemented in
meta/lib/oe/buildhistory_analysis.py and scripts/buildhistory-diff, so
remove it.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index f61890328f..34cc297909 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -182,21 +182,10 @@ python buildhistory_emit_pkghistory() { write_pkghistory(pkginfo, d) - if lastversion: - check_pkghistory(pkginfo, lastversion) - write_latestlink(pkg, pe, pv, pr, d) } -def check_pkghistory(pkginfo, lastversion): - - bb.debug(2, "Checking package history") - # RDEPENDS removed? - # PKG changed? - # Each file list of each package for file removals? - - def write_recipehistory(rcpinfo, d): bb.debug(2, "Writing recipe history") |