Searched refs:shrinkwrap_file (Results 1 – 2 of 2) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_npm.py | 111 def _handle_licenses(self, srctree, shrinkwrap_file, dev): argument 143 with open(shrinkwrap_file, "r") as f: 151 def _handle_peer_dependency(self, shrinkwrap_file): argument 153 with open(shrinkwrap_file, "r") as f: 226 shrinkwrap_file = self._generate_shrinkwrap(d, srctree, dev) 228 with open(shrinkwrap_file, "r") as f: 235 shrinkwrap_copy = shrinkwrap_file + ".copy" 236 bb.utils.copyfile(shrinkwrap_file, shrinkwrap_copy) 240 url_local = "npmsw://%s" % shrinkwrap_file 269 (licfiles, packages) = self._handle_licenses(srctree, shrinkwrap_file, dev) [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | npmsw.py | 84 ud.shrinkwrap_file = re.sub(r"^npmsw://", "", ud.url.split(";")[0]) 205 with open(ud.shrinkwrap_file, "r") as f: 278 bb.utils.copyfile(ud.shrinkwrap_file,
|