summaryrefslogtreecommitdiff
path: root/packages/python/python-quicklauncher_0.0.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'packages/python/python-quicklauncher_0.0.1.bb')
0 files changed, 0 insertions, 0 deletions
pan class="hl opt">.package_manager import RpmPM, OpkgPM, DpkgPM pkg_class = d.getVar("IMAGE_PKGTYPE", True) if pkg_class == "rpm": pm = RpmPM(d, root_path, d.getVar('TARGET_VENDOR', True)) pm.create_configs() elif pkg_class == "ipk": pm = OpkgPM(d, root_path, d.getVar("IPKGCONF_TARGET", True), d.getVar("ALL_MULTILIB_PACKAGE_ARCHS", True)) elif pkg_class == "deb": pm = DpkgPM(d, root_path, d.getVar('PACKAGE_ARCHS', True), d.getVar('DPKG_ARCH', True)) pm.write_index() pm.update() return pm