summaryrefslogtreecommitdiffstats
path: root/meta/classes
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:49 +0000
commit152a1b5425a3fbf87114494ef9e286a16a2e29a8 (patch)
treeaeaeee7b1b80bc72d8a55a467e7bac72d86bf880 /meta/classes
parenta6e3916d519ad0ba8349e19ee43c79ae0d06eec8 (diff)
downloadast2050-yocto-poky-152a1b5425a3fbf87114494ef9e286a16a2e29a8.zip
ast2050-yocto-poky-152a1b5425a3fbf87114494ef9e286a16a2e29a8.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. (From OE-Core rev: e67dbb638044b804738bdd589d64d45963a3297a) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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 80f6244..0000000
--- 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
OpenPOWER on IntegriCloud