summaryrefslogtreecommitdiffstats
path: root/meta/classes/pkg_metainfo.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-11 17:33:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-19 10:24:50 +0100
commitbfd279de3275abbfaf3e630383ec244131e0375f (patch)
tree0d1c90461a890d21444f5d2afb13c52b302427f1 /meta/classes/pkg_metainfo.bbclass
parent99203edda6f0b09d817454d656c100b7a8806b18 (diff)
downloadpoky-bfd279de3275abbfaf3e630383ec244131e0375f.tar.gz
Convert tab indentation in python functions into four-space
(From OE-Core rev: 604d46c686d06d62d5a07b9c7f4fa170f99307d8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/pkg_metainfo.bbclass')
-rw-r--r--meta/classes/pkg_metainfo.bbclass36
1 files changed, 18 insertions, 18 deletions
diff --git a/meta/classes/pkg_metainfo.bbclass b/meta/classes/pkg_metainfo.bbclass
index 4b182690f2..80f6244fca 100644
--- a/meta/classes/pkg_metainfo.bbclass
+++ b/meta/classes/pkg_metainfo.bbclass
@@ -1,22 +1,22 @@
1python do_pkg_write_metainfo () { 1python do_pkg_write_metainfo () {
2 deploydir = d.getVar('DEPLOY_DIR', True) 2 deploydir = d.getVar('DEPLOY_DIR', True)
3 if not deploydir: 3 if not deploydir:
4 bb.error("DEPLOY_DIR not defined, unable to write package info") 4 bb.error("DEPLOY_DIR not defined, unable to write package info")
5 return 5 return
6 6
7 try: 7 try:
8 infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a') 8 infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a')
9 except OSError: 9 except OSError:
10 raise bb.build.FuncFailed("unable to open package-info file for writing.") 10 raise bb.build.FuncFailed("unable to open package-info file for writing.")
11 11
12 name = d.getVar('PN', True) 12 name = d.getVar('PN', True)
13 version = d.getVar('PV', True) 13 version = d.getVar('PV', True)
14 desc = d.getVar('DESCRIPTION', True) 14 desc = d.getVar('DESCRIPTION', True)
15 page = d.getVar('HOMEPAGE', True) 15 page = d.getVar('HOMEPAGE', True)
16 lic = d.getVar('LICENSE', True) 16 lic = d.getVar('LICENSE', True)
17 17
18 infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" ) 18 infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" )
19 infofile.close() 19 infofile.close()
20} 20}
21 21
22addtask pkg_write_metainfo after do_package before do_build \ No newline at end of file 22addtask pkg_write_metainfo after do_package before do_build