diff options
| -rw-r--r-- | meta/classes/pkg_metainfo.bbclass | 22 |
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 @@ | |||
| 1 | python 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 | |||
| 22 | addtask pkg_write_metainfo after do_package before do_build | ||
