From: Chris Larson Date: Thu, 1 Jul 2004 23:29:02 +0000 (+0000) Subject: Delete: bin/parse_manifest X-Git-Tag: 1.0~110 X-Git-Url: http://code.vuplus.com/gitweb/?a=commitdiff_plain;h=66e912e920d76890be2feb6ebbb013af2a77de0e;p=vuplus_bitbake Delete: bin/parse_manifest --- diff --git a/bin/parse_manifest b/bin/parse_manifest deleted file mode 100644 index 81b551e..0000000 --- a/bin/parse_manifest +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python -# ex:ts=4:sw=4:sts=4:et -# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- - -import sys, oe, oe.manifest - -mfile = sys.__stdin__ -if len(sys.argv) == 2: - mfile = file(sys.argv[1], "r") - -d = oe.data.init() - -manifest = oe.manifest.parse(mfile, d) - -for func in ("do_stage", "do_install", "do_populate"): - value = oe.manifest.emit(func, manifest, d) - if value: - oe.data.setVar(func, value, d) - oe.data.setVarFlag(func, "func", 1, d) - oe.data.emit_var(func, sys.__stdout__, d) - sys.__stdout__.write("\n")