| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | manifest.py | 112 with open(self.initial_manifest, "w+") as manifest: 113 manifest.write(self.initial_manifest_file_header) 117 manifest.write("%s,%s\n" % (pkg_type, pkg)) 150 with open(self.initial_manifest) as manifest: 151 for line in manifest.read().split('\n'): 184 with open(self.full_manifest, 'r') as manifest: 185 for pkg in manifest.read().split('\n'): 195 …manifest = importlib.import_module('oe.package_manager.' + d.getVar('IMAGE_PKGTYPE') + '.manifest'… 198 manifest.create_final() 200 manifest.create_initial()
|
| H A D | license.py | 217 manifest = ManifestVisitor(dont_want_licenses, canonical_license, d) 220 elements = manifest.get_elements(licensestr) 226 manifest.visit_elements(elements) 231 manifest.licensestr = manifest.licensestr.replace('[', '(').replace(']', ')') 233 return (manifest.licensestr, manifest.licenses)
|
| H A D | npm_registry.py | 157 with Manifest(base, pkg_json) as manifest: 158 meta = manifest.load() 163 manifest.save(meta) 168 self.__cache.run('meta', self._meta_uri(pkg_json), manifest.filename);
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | repo.py | 40 ud.manifest = ud.parm.get('manifest', 'default.xml') 41 if not ud.manifest.endswith('.xml'): 42 ud.manifest += '.xml' 44 …= d.expand("repo_%s%s_%s_%s.tar.gz" % (ud.host, ud.path.replace("/", "."), ud.manifest, ud.branch)) 55 codir = os.path.join(repodir, gitsrcname, ud.manifest) 65 …etwork_access(d, "%s init -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.pr… 66 …runfetchcmd("%s init -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.proto, … 84 return ud.manifest
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ipk/ |
| H A D | manifest.py | 5 from oe.manifest import Manifest 34 with open(self.initial_manifest, "w+") as manifest: 35 manifest.write(self.initial_manifest_file_header) 49 manifest.write("%s,%s\n" % (pkg_type, pkg)) 67 with open(self.full_manifest, 'w+') as manifest: 72 manifest.write(m.group(1) + '\n')
|
| H A D | rootfs.py | 9 from oe.manifest import Manifest 11 from oe.package_manager.ipk.manifest import PkgManifest 129 self.manifest = PkgManifest(d, manifest_dir) 228 old_full_manifest = self.manifest.parse_full_manifest() 232 self.manifest.create_full(self.pm) 235 new_full_manifest = self.manifest.parse_full_manifest() 274 pkgs_to_install = self.manifest.parse_initial_manifest()
|
| H A D | sdk.py | 9 from oe.package_manager.ipk.manifest import PkgManifest 10 from oe.manifest import Manifest 43 def _populate_sysroot(self, pm, manifest): argument 44 pkgs_to_install = manifest.parse_initial_manifest()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/ |
| H A D | manifest.py | 5 from oe.manifest import Manifest 9 with open(self.initial_manifest, "w+") as manifest: 10 manifest.write(self.initial_manifest_file_header) 19 manifest.write("%s,%s\n" %
|
| H A D | sdk.py | 9 from oe.manifest import Manifest 11 from oe.package_manager.deb.manifest import PkgManifest 49 def _populate_sysroot(self, pm, manifest): argument 50 pkgs_to_install = manifest.parse_initial_manifest()
|
| H A D | rootfs.py | 8 from oe.manifest import Manifest 10 from oe.package_manager.deb.manifest import PkgManifest 134 self.manifest = PkgManifest(d, manifest_dir) 141 pkgs_to_install = self.manifest.parse_initial_manifest()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/ |
| H A D | create_manifest3.py | 87 with open(json_manifest, 'r+') as manifest: 88 json_contents = manifest.read() 89 manifest.seek(0, 0) 90 manifest.write(comments + json_contents) 99 with open('python3-manifest.json') as manifest: 101 manifest_str = manifest.read() 103 manifest.seek(0) 104 comments = manifest.read(json_start) 105 manifest_str = manifest.read()
|
| H A D | python3-manifest.json | 15 # Modify the python3-manifest.json file, and add the required file(s) to the FILES list, 28 # We run $ bitbake python3 -c create_manifest and the resulting manifest 42 # old manifest, all of these issues would cause runtime errors on our system. 49 # This will automatically replace your manifest file located under the Python directory 58 # After running the task, the new manifest will have the sha3*.so file on more than one 67 # because it is used as base to build the manifest file, you need to manually check log.do_c… 75 # What will happen here is that the new manifest would not be aware that the _uuid module ex… 82 # detected correctly along with its dependencies, and we will get a working manifest.
|
| /OK3568_Linux_fs/buildroot/utils/ |
| H A D | scancpan | 557 my ($manifest) = @_; 561 return $manifest =~ m/\.(swg|xs|c|h|i)[\n\s]/; 565 my ($manifest) = @_; 567 foreach (split /\n/, $manifest) { 572 if (scalar @license_files == 0 && $manifest =~ m/(README)[\n\s]/i) { 575 if (scalar @license_files == 0 && $manifest =~ m/(README\.md)[\n\s]/i) { 578 if (scalar @license_files == 0 && $manifest =~ m/(README\.pod)[\n\s]/i) { 625 … my $manifest = $mcpan->source( author => $author, release => $release, path => 'MANIFEST' ); 626 $need_dlopen{$name} = $is_xs{$name} = is_xs( $manifest ); 627 foreach my $fname (find_license_files( $manifest )) {
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/rpm/ |
| H A D | manifest.py | 5 from oe.manifest import Manifest 33 with open(self.initial_manifest, "w+") as manifest: 34 manifest.write(self.initial_manifest_file_header) 48 manifest.write("%s,%s\n" % (pkg_type, pkg))
|
| H A D | sdk.py | 8 from oe.manifest import Manifest 9 from oe.package_manager.rpm.manifest import PkgManifest 41 def _populate_sysroot(self, pm, manifest): argument 42 pkgs_to_install = manifest.parse_initial_manifest()
|
| H A D | rootfs.py | 6 from oe.manifest import Manifest 8 from oe.package_manager.rpm.manifest import PkgManifest 18 self.manifest = PkgManifest(d, manifest_dir) 65 pkgs_to_install = self.manifest.parse_initial_manifest()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/ |
| H A D | context.py | 26 def _hasPackage(self, manifest, pkg, regex=False): argument 30 for p in manifest.keys(): 35 if pkg in manifest.keys(): 88 def _load_manifest(manifest): argument 90 if manifest: 91 with open(manifest) as f:
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | license_image.bbclass | 22 with open(os.path.join(license_image_dir, 'package.manifest'), "w+") as package_manifest: 46 d.getVar('IMAGE_NAME'), 'license.manifest') 76 # Rootfs manifest 88 # Image manifest 110 # - Just copy the manifest 111 # - Copy the manifest and the license directories 184 Write the license manifest for the deployed recipes. 196 # It is necessary to mark this will be used for image manifest 209 image_license_manifest = os.path.join(lic_manifest_dir, 'image_license.manifest') 239 # The manifest file name contains the arch. Because we are not running [all …]
|
| H A D | package_pkgdata.bbclass | 15 … for manifest in glob.glob(d.expand("${SSTATE_MANIFESTS}/manifest-%s-*.packagedata" % pkgarch)): 16 with open(manifest, "r") as f: 146 …manifest, d2 = oe.sstatesig.find_sstate_manifest(c, setscenedeps[dep][2], "packagedata", d, multil… 149 if manifest: 151 with open(manifest, "r") as f: 152 manifests[dep] = manifest
|
| H A D | staging.bbclass | 204 …for manifest in glob.glob(d.expand("${SSTATE_MANIFESTS}/manifest-%s-*.populate_sysroot" % pkgarch)… 205 if manifest.endswith("-initial.populate_sysroot"): 208 … if not native and (manifest.endswith("-native.populate_sysroot") or "nativesdk-" in manifest): 210 … native and not (manifest.endswith("-native.populate_sysroot") or manifest.endswith("-cross.popula… 212 tmanifest = targetdir + "/" + os.path.basename(manifest) 216 os.link(manifest, tmanifest) 219 bb.utils.copyfile(manifest, tmanifest) 222 with open(manifest, "r") as f: 534 …manifest, d2 = oe.sstatesig.find_sstate_manifest(c, setscenedeps[dep][2], "populate_sysroot", d, m… 541 if manifest and "allarch" in manifest: [all …]
|
| H A D | sstate.bbclass | 6 SSTATE_MANFILEPREFIX = "${SSTATE_MANIFESTS}/manifest-${SSTATE_MANMACH}-${PN}" 229 manifest, d2 = oe.sstatesig.sstate_get_manifest_filename(ss['task'], d) 231 if os.access(manifest, os.R_OK): 232 bb.fatal("Package already staged (%s)?!" % manifest) 234 d.setVar("SSTATE_INST_POSTRM", manifest + ".postrm") 283 "area when those files already exist. Those files and their manifest " \ 310 # Write out the manifest 311 f = open(manifest, "w") 315 # We want to ensure that directories appear at the end of the manifest 334 # manifest name but different versions from stamp/workdir. See below. [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/ |
| H A D | context.py | 189 def readPackagesManifest(manifest): argument 190 if not manifest or not os.path.exists(manifest): 191 raise OSError("Manifest file not exists: %s" % manifest) 194 with open(manifest, 'r') as f:
|
| /OK3568_Linux_fs/yocto/meta-browser/meta-firefox/recipes-browser/firefox-l10n/ |
| H A D | firefox-l10n.inc | 36 manifest = d.getVar("LANGUAGE") + "/manifest.json" 38 with open(manifest) as f:
|
| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | image-manifest | 42 def get_pkg_list(manifest): argument 44 with open(manifest, 'r') as f: 56 pkglist = get_pkg_list(args.manifest) 78 def get_recipe_list(manifest, tinfoil): argument 79 pkglist = get_pkg_list(manifest) 94 recipelist = get_recipe_list(args.manifest, tinfoil) 327 shutil.copy2(args.manifest,os.path.join(tmpoutdir, "manifest")) 333 pkglist = get_pkg_list(args.manifest) 425 outname = os.path.splitext(os.path.basename(args.manifest))[0]
|
| /OK3568_Linux_fs/buildroot/support/legal-info/ |
| H A D | README.header | 29 * Two manifest files listing the configured packages and related 30 information: 'manifest.csv' for target packages and 'host-manifest.csv'
|