From: Paul Eggleton Date: Fri, 4 Mar 2016 03:22:52 +0000 (+1300) Subject: classes/packageinfo: remove X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~26663 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8db070926a7ec294816bc6648eb12db7f126f26;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git classes/packageinfo: remove This class was only used by Hob, and since Hob has now been removed we can drop it as well. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/packageinfo.bbclass b/meta/classes/packageinfo.bbclass deleted file mode 100644 index 7d60ace1dcd..00000000000 --- a/meta/classes/packageinfo.bbclass +++ /dev/null @@ -1,22 +0,0 @@ -python packageinfo_handler () { - import oe.packagedata - pkginfolist = [] - - pkgdata_dir = e.data.getVar("PKGDATA_DIR", True) + '/runtime/' - if os.path.exists(pkgdata_dir): - for root, dirs, files in os.walk(pkgdata_dir): - for pkgname in files: - if pkgname.endswith('.packaged'): - pkgname = pkgname[:-9] - pkgdatafile = root + pkgname - try: - sdata = oe.packagedata.read_pkgdatafile(pkgdatafile) - sdata['PKG'] = pkgname - pkginfolist.append(sdata) - except Exception as e: - bb.warn("Failed to read pkgdata file %s: %s: %s" % (pkgdatafile, e.__class__, str(e))) - bb.event.fire(bb.event.PackageInfo(pkginfolist), e.data) -} - -addhandler packageinfo_handler -packageinfo_handler[eventmask] = "bb.event.RequestPackageInfo"