classes/pkg_metainfo: remove
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Wed, 13 Nov 2013 14:32:48 +0000 (14:32 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 14 Nov 2013 13:39:49 +0000 (13:39 +0000)
This is very old, and we now have pkgdata which is much more complete.
Nobody appears to be using this class, and even OE-Classic had no
current references to it.

(From OE-Core rev: e67dbb638044b804738bdd589d64d45963a3297a)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/pkg_metainfo.bbclass [deleted file]

diff --git a/meta/classes/pkg_metainfo.bbclass b/meta/classes/pkg_metainfo.bbclass
deleted file mode 100644 (file)
index 80f6244..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-python do_pkg_write_metainfo () {
-    deploydir = d.getVar('DEPLOY_DIR', True)
-    if not deploydir:
-        bb.error("DEPLOY_DIR not defined, unable to write package info")
-        return
-
-    try:
-        infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a')
-    except OSError:
-        raise bb.build.FuncFailed("unable to open package-info file for writing.")
-
-    name = d.getVar('PN', True)
-    version = d.getVar('PV', True)
-    desc = d.getVar('DESCRIPTION', True)
-    page = d.getVar('HOMEPAGE', True)
-    lic = d.getVar('LICENSE', True)
-
-    infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" ) 
-    infofile.close()
-}
-
-addtask pkg_write_metainfo after do_package before do_build