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)
downloadpoky-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 80f6244fca..0000000000
--- a/meta/classes/pkg_metainfo.bbclass
+++ /dev/null
@@ -1,22 +0,0 @@
1python do_pkg_write_metainfo () {
2 deploydir = d.getVar('DEPLOY_DIR', True)
3 if not deploydir:
4 bb.error("DEPLOY_DIR not defined, unable to write package info")
5 return
6
7 try:
8 infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a')
9 except OSError:
10 raise bb.build.FuncFailed("unable to open package-info file for writing.")
11
12 name = d.getVar('PN', True)
13 version = d.getVar('PV', True)
14 desc = d.getVar('DESCRIPTION', True)
15 page = d.getVar('HOMEPAGE', True)
16 lic = d.getVar('LICENSE', True)
17
18 infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" )
19 infofile.close()
20}
21
22addtask pkg_write_metainfo after do_package before do_build