| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/rpm/ |
| H A D | manifest.py | 12 pkgs = dict() 23 if not pkg_type in pkgs: 24 pkgs[pkg_type] = pkg 26 pkgs[pkg_type] += " " + pkg 28 return pkgs 31 pkgs = dict() 40 pkgs = dict(list(pkgs.items()) + list(split_pkgs.items())) 44 pkgs[self.var_maps[self.manifest_type][var]] = self.d.getVar(var) 46 for pkg_type in pkgs: 47 for pkg in pkgs[pkg_type].split():
|
| H A D | __init__.py | 191 def install(self, pkgs, attempt_only = False): argument 192 if len(pkgs) == 0: 205 pkgs) 218 def remove(self, pkgs, with_dependencies = True): argument 219 if not pkgs: 225 self._invoke_dnf(["remove"] + pkgs) 231 bb.note("Running %s" % ' '.join([cmd] + args + pkgs)) 232 … output = subprocess.check_output([cmd] + args + pkgs, stderr=subprocess.STDOUT).decode("utf-8") 236 … "'%s' returned %d:\n%s" % (' '.join([cmd] + args + pkgs), e.returncode, e.output.decode("utf-8"))) 338 def dump_install_solution(self, pkgs): argument [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ipk/ |
| H A D | manifest.py | 13 pkgs = dict() 24 if not pkg_type in pkgs: 25 pkgs[pkg_type] = pkg 27 pkgs[pkg_type] += " " + pkg 29 return pkgs 32 pkgs = dict() 41 pkgs = dict(list(pkgs.items()) + list(split_pkgs.items())) 45 pkgs[self.var_maps[self.manifest_type][var]] = self.d.getVar(var) 47 for pkg_type in sorted(pkgs): 48 for pkg in sorted(pkgs[pkg_type].split()):
|
| H A D | rootfs.py | 30 pkgs = {} 62 pkgs[pkg_name] = _get_pkg_depends_list(pkg_depends) 68 pkg_names = list(pkgs.keys()) 70 deps = pkgs[pkg_name][:] 74 pkgs[pkg_name].remove(d) 76 return pkgs 94 pkgs = None 98 pkgs = self._get_pkgs_postinsts(status_file) 99 if pkgs: 101 pkgs[root] = list(pkgs.keys()) [all …]
|
| H A D | __init__.py | 342 def install(self, pkgs, attempt_only=False): argument 343 if not pkgs: 352 cmd += " ".join(pkgs) 362 bb.note("Installing the following packages: %s" % ' '.join(pkgs)) 378 def remove(self, pkgs, with_dependencies=True): argument 379 if not pkgs: 384 (self.opkg_cmd, self.opkg_args, ' '.join(pkgs)) 387 (self.opkg_cmd, self.opkg_args, ' '.join(pkgs)) 419 def dummy_install(self, pkgs): argument 423 if len(pkgs) == 0: [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/ |
| H A D | rootfs.py | 29 pkgs = {} 61 pkgs[pkg_name] = _get_pkg_depends_list(pkg_depends) 67 pkg_names = list(pkgs.keys()) 69 deps = pkgs[pkg_name][:] 73 pkgs[pkg_name].remove(d) 75 return pkgs 93 pkgs = None 97 pkgs = self._get_pkgs_postinsts(status_file) 98 if pkgs: 100 pkgs[root] = list(pkgs.keys()) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/ |
| H A D | utils.py | 25 pkgs = packages_filter_out_system(d) 26 self.assertEqual(pkgs, []) 29 pkgs = packages_filter_out_system(d) 30 self.assertEqual(pkgs, ["foo-data"]) 33 pkgs = packages_filter_out_system(d) 34 self.assertEqual(pkgs, []) 37 pkgs = packages_filter_out_system(d) 38 self.assertEqual(pkgs, ["foo-data"])
|
| /OK3568_Linux_fs/buildroot/package/tcl/ |
| H A D | tcl.mk | 31 rm -fr $(@D)/pkgs/sqlite3* $(@D)/pkgs/tdbc* 37 rm -fr $(@D)/pkgs/sqlite3* \ 38 $(if $(BR2_PACKAGE_MYSQL),,$(@D)/pkgs/tdbcmysql*) \ 39 $(@D)/pkgs/tdbcodbc* \ 40 $(if $(BR2_PACKAGE_POSTGRESQL),,$(@D)/pkgs/tdbcpostgres*) \ 41 $(if $(BR2_PACKAGE_SQLITE),,$(@D)/pkgs/tdbcsqlite3*)
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/rockchip-libmali/ |
| H A D | rockchip-libmali.bb | 55 pkgs = " " + " ".join(p) 56 d.appendVar("RREPLACES:" + pn, pkgs) 57 d.appendVar("RPROVIDES:" + pn, pkgs) 58 d.appendVar("RCONFLICTS:" + pn, pkgs) 61 pkgs = " " + p[0] + "-dev" 62 d.appendVar("RREPLACES:" + pn_dev, pkgs) 63 d.appendVar("RPROVIDES:" + pn_dev, pkgs) 64 d.appendVar("RCONFLICTS:" + pn_dev, pkgs)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/ |
| H A D | event.py | 568 pkgs = ["bar"] 570 event = bb.event.BuildBase(name, pkgs, failures) 572 self.assertEqual(event.pkgs, pkgs) 575 pkgs = event.pkgs = ["foo"] 577 self.assertEqual(event.pkgs, pkgs) 585 self.assertEqual(event.pkgs, []) 588 pkgs = event.pkgs = ["foo"] 590 self.assertEqual(event.pkgs, pkgs) 597 pkgs = ["bar"] 599 event = bb.event.BuildStarted(name, pkgs, failures) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/packagegroups/ |
| H A D | packagegroup-core-sdk.bb | 44 # pkgs = d.getVar('PACKAGES').split() 49 # pkgs.append(newpkg) 77 # # bb.note('pkgs is %s' % pkgs) 78 # d.setVar('PACKAGES', ' '.join(pkgs))
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | manifest.py | 148 pkgs = dict() 167 if not pkg_type in pkgs: 168 pkgs[pkg_type] = [pkg_name] 170 pkgs[pkg_type].append(pkg_name) 172 return pkgs
|
| H A D | classextend.py | 8 pkgs = d.getVar("PACKAGES_NONML") 10 return extcls.rename_packages_internal(pkgs) 130 def rename_packages_internal(self, pkgs): argument 132 for pkg in (self.d.expand(pkgs) or "").split():
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | populate_sdk_base.bbclass | 7 COMPLEMENTARY_GLOB[dev-pkgs] = '*-dev' 8 COMPLEMENTARY_GLOB[staticdev-pkgs] = '*-staticdev' 9 COMPLEMENTARY_GLOB[doc-pkgs] = '*-doc' 10 COMPLEMENTARY_GLOB[dbg-pkgs] = '*-dbg' 11 COMPLEMENTARY_GLOB[src-pkgs] = '*-src' 12 COMPLEMENTARY_GLOB[ptest-pkgs] = '*-ptest' 13 COMPLEMENTARY_GLOB[bash-completion-pkgs] = '*-bash-completion' 24 SDKIMAGE_FEATURES ??= "dev-pkgs dbg-pkgs src-pkgs ${@bb.utils.contains('DISTRO_FEATURES', 'api-docu… 101 pkgs = sdk_list_installed_packages(d, True) 105 output.write(format_pkg_list(pkgs, 'ver')) [all …]
|
| H A D | core-image.bbclass | 32 # - dev-pkgs - development packages (headers, etc.) for all installed packages in the ro… 33 # - dbg-pkgs - debug symbol packages for all installed packages in the rootfs 34 # - lic-pkgs - license packages for all installed pacakges in the rootfs, requires 36 # - doc-pkgs - documentation packages for all installed packages in the rootfs 37 # - bash-completion-pkgs - bash-completion packages for recipes using bash-completion bbclass 38 # - ptest-pkgs - ptest packages for all ptest-enabled recipes
|
| H A D | update-rc.d.bbclass | 115 pkgs = d.getVar('INITSCRIPT_PACKAGES') 116 if pkgs == None: 117 pkgs = d.getVar('UPDATERCPN') 119 if not pkgs in packages and packages != []: 120 pkgs = packages[0] 121 for pkg in pkgs.split():
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-5.10/scripts/ |
| H A D | Makefile.package | 106 tar-pkgs := dir-pkg tar-pkg targz-pkg tarbz2-pkg tarxz-pkg 107 PHONY += $(tar-pkgs) 108 $(tar-pkgs): 136 perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg perf-tarxz-src-pkg 137 PHONY += $(perf-tar-pkgs) 138 $(perf-tar-pkgs):
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | Makefile.package | 106 tar-pkgs := dir-pkg tar-pkg targz-pkg tarbz2-pkg tarxz-pkg 107 PHONY += $(tar-pkgs) 108 $(tar-pkgs): 136 perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg perf-tarxz-src-pkg 137 PHONY += $(perf-tar-pkgs) 138 $(perf-tar-pkgs):
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-5.10/scripts/ |
| H A D | Makefile.package | 106 tar-pkgs := dir-pkg tar-pkg targz-pkg tarbz2-pkg tarxz-pkg 107 PHONY += $(tar-pkgs) 108 $(tar-pkgs): 136 perf-tar-pkgs := perf-tar-src-pkg perf-targz-src-pkg perf-tarbz2-src-pkg perf-tarxz-src-pkg 137 PHONY += $(perf-tar-pkgs) 138 $(perf-tar-pkgs):
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | oe-pkgdata-util | 209 def lookup_pkglist(pkgs, pkgdata_dir, reverse): argument 212 for pkg in pkgs: 219 for pkg in pkgs: 232 pkgs = [] 234 pkgs.extend(pkgitem.split()) 236 mappings = lookup_pkglist(pkgs, args.pkgdata_dir, args.reverse) 238 if len(mappings) < len(pkgs): 239 missing = list(set(pkgs) - set(mappings.keys())) 247 for pkg in pkgs: 266 pkgs = [] [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ |
| H A D | __init__.py | 91 def failed_postinsts_abort(pkgs, log_path): argument 95 Details of the failure are in %s.""" %(pkgs, log_path)) 269 def install(self, pkgs, attempt_only=False): argument 277 def remove(self, pkgs, with_dependencies=True): argument 335 pkgs = stdout.decode("utf-8") 336 self.install(pkgs.split(), attempt_only=True) 371 pkgs = self.list_installed() 374 for pkg in pkgs.values(): 377 output = oe.utils.format_pkg_list(pkgs, "arch")
|
| /OK3568_Linux_fs/buildroot/package/urg/ |
| H A D | urg.hash | 1 # from http://pkgs.fedoraproject.org/repo/pkgs/urg/urg-0.8.18.zip/
|
| /OK3568_Linux_fs/buildroot/package/python-pam/ |
| H A D | python-pam.mk | 10 PYTHON_PAM_SITE = http://pkgs.fedoraproject.org/repo/pkgs/PyPAM/PyPAM-0.5.0.tar.gz/f1e7c2c56421dda2…
|
| /OK3568_Linux_fs/buildroot/package/dt/ |
| H A D | dt.hash | 1 # From http://pkgs.fedoraproject.org/repo/pkgs/dt/dt-source-v18.32.tar.gz
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-connectivity/rygel/ |
| H A D | rygel_0.38.3.bb | 65 pkgs = [] 67 …pkgs += do_split_packages(d, oe.path.join(rygel_libdir, "plugins"), r'librygel-(.*)\.so$', d.expan… 68 …pkgs += do_split_packages(d, oe.path.join(rygel_libdir, "plugins"), r'(.*)\.plugin$', d.expand('${… 71 d.setVar('RDEPENDS:' + metapkg, ' '.join(pkgs))
|