aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-11-13 14:32:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-14 13:39:10 +0000
commite67dbb638044b804738bdd589d64d45963a3297a (patch)
tree2cdf7d70de958a8dd478bf4c580e8e01df214109
parente3141844ef84d8a48efa81e0c9c85821ced16f7c (diff)
downloadopenembedded-core-contrib-e67dbb638044b804738bdd589d64d45963a3297a.tar.gz
classes/pkg_metainfo: remove
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. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/pkg_metainfo.bbclass22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/classes/pkg_metainfo.bbclass b/meta/classes/pkg_metainfo.bbclass
deleted file mode 100644
index 80f6244fca..0000000000
--- a/meta/classes/pkg_metainfo.bbclass
+++ /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