summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-01-05 17:37:51 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-06 12:11:31 +0000
commit9beabe35f8506c6485b5fc318393d53fd391f819 (patch)
treeda17ff05848b016a3bed879d04eae791c1ee0dae
parent6542028f3f0461f7a0d43820d26cceb7e96bd6d7 (diff)
downloadpoky-9beabe35f8506c6485b5fc318393d53fd391f819.tar.gz
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. (From OE-Core rev: 5c8d583a12c507788c746637d5b4ddea62b0a629) 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.bbclass11
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() {
182 182
183 write_pkghistory(pkginfo, d) 183 write_pkghistory(pkginfo, d)
184 184
185 if lastversion:
186 check_pkghistory(pkginfo, lastversion)
187
188 write_latestlink(pkg, pe, pv, pr, d) 185 write_latestlink(pkg, pe, pv, pr, d)
189} 186}
190 187
191 188
192def check_pkghistory(pkginfo, lastversion):
193
194 bb.debug(2, "Checking package history")
195 # RDEPENDS removed?
196 # PKG changed?
197 # Each file list of each package for file removals?
198
199
200def write_recipehistory(rcpinfo, d): 189def write_recipehistory(rcpinfo, d):
201 bb.debug(2, "Writing recipe history") 190 bb.debug(2, "Writing recipe history")
202 191