Lines Matching full:split

14 # c) package_do_split_locales - Split out the locale files, updates FILES and PACKAGES
16 # d) split_and_strip_files - split the files into runtime and debug and strip them.
17 # Debug files include debug info split, and associated sources that end up in -dbg packages
19 # e) fixup_perms - Fix up permissions in the package before we split it.
21 # f) populate_packages - Split the files in PKGD into separate packages in PKGDEST/<pkgname>
47 PKGDEST = "${WORKDIR}/packages-split"
84 Used in .bb files to split up dynamically generated subpackages of a
147 for dep in (extra_depends or "").split():
156 packages = d.getVar('PACKAGES').split()
244 for dep in (d.getVar('PACKAGE_DEPENDS') or "").split():
276 for dirname in f.split('/')[:-1]:
309 conffiles = conffiles.split()
344 debugfiles[os.path.normpath(line.split()[0])] = ""
371 # Function to split a single file into two components, one is the stripped
390 # Split the file...
392 #bb.note("Split %s -> %s" % (file, debugfile))
393 # Only store off the hard link reference if we successfully split!
421 # Unlike the function above, there is no way to split a static library
493 elftype = line.split(":")[1].strip()
506 fields = line[line.index(']') + 1:].split()
522 dynsyms.add(line.split()[0])
530 fields = line.split('|')
600 for p in debugsrcdir.split("/"):
807 packages = (d.getVar('PACKAGES') or "").split()
852 #rdep = (d.getVar('RDEPENDS:%s' % pn) or "").split()
906 lsplit = line.split()
996 for conf_file in fs_perms_tables.split():
1041 for conf in get_fs_perms_list(d).split():
1048 lsplit = line.split()
1187 skipfiles = (d.getVar("INHIBIT_PACKAGE_STRIP_FILES") or "").split()
1258 if 'already-stripped' in (d.getVar('INSANE_SKIP:' + pn) or "").split():
1328 # Create symlinks for all cases we were able to split symbols
1395 packages = d.getVar('PACKAGES').split()
1460 origfiles = filesvar.split()
1490 for c in paths.split("/"):
1543 if "installed-vs-shipped" in (d.getVar('INSANE_SKIP:' + pn) or "").split():
1557 packages = d.getVar("PACKAGES", False).split()
1646 scriptlet_split = scriptlet.split('\n')
1672 map(lambda pkg: '%s-%s' % (variant, pkg), packages.split())))
1676 for pkg in packages.split():
1693 global_variants = (d.getVar('MULTILIB_GLOBAL_VARIANTS') or "").split()
1694 variants = (d.getVar('MULTILIB_VARIANTS') or "").split()
1705 for pkg in packages.split():
1744 for var in (d.getVar('PKGDATA_VARS') or "").split():
1748 for dfile in sorted((d.getVar('FILERPROVIDESFLIST:' + pkg) or "").split()):
1752 for dfile in sorted((d.getVar('FILERDEPENDSFLIST:' + pkg) or "").split()):
1823 for pkg in packages.split():
1881 for pkg in packages.split():
1882 if pkg not in exclusion_list.split():
1887 shlib_pkgs = packages.split()
1917 rpaths = m.group(1).replace("$ORIGIN", ldir).split(":")
1947 # Given a base library name, find all combinations of this split by "." and "-"
1950 options = base.split(".")
1953 options = base.split("-")
1973 for l in out.split("\n"):
1976 rpath.append(l.split()[1])
1982 for l in out.split("\n"):
1988 name = os.path.basename(l.split()[0]).rsplit(".", 1)[0]
2022 private_libs = private_libs.split()
2086 for e in assumed_libs.split():
2087 l, dep_pkg = e.split(":")
2103 private_libs = private_libs.split()
2158 shlibs_dirs = d.getVar('SHLIBSDIRS').split()
2167 for pkg in packages.split():
2192 pkgconfig_needed[pkg] += exp.replace(',', ' ').split()
2194 for pkg in packages.split():
2215 for pkg in packages.split():
2235 packages = d.getVar('PACKAGES').split()
2254 packages = d.getVar('PACKAGES').split()
2282 postfixes = (d.getVar('DEPCHAIN_POST') or '').split()
2283 prefixes = (d.getVar('DEPCHAIN_PRE') or '').split()
2336 for pkg in packages.split():
2348 for pkg in packages.split():
2395 pkgs = (d.getVar("PACKAGES") or "").split()
2396 vars = (d.getVar(pkgvars) or "").split()
2417 # Functions which split PKGD up into separate packages
2421 # Functions which process metadata based on split packages
2447 packages = (d.getVar('PACKAGES') or "").split()
2483 for f in (d.getVar('PACKAGEBUILDPKGD') or '').split():
2487 # Split up PKGD into PKGDEST
2492 for f in (d.getVar('PACKAGESPLITFUNCS') or '').split():
2499 # Build global list of files in each split package
2502 packages = d.getVar('PACKAGES').split()
2510 for f in (d.getVar('PACKAGEFUNCS') or '').split():