Lines Matching full:missing

20 maintainers, showing hints and missing dependencies.
23 and provides recommendations for installing missing packages. It supports both
82 - missing: missing dependencies list, containing a distro-independent
83 name for a missing dependency and its type.
84 - missing_pkg: ancillary dict containing missing dependencies in
90 self.missing = {}
100 missing dependencies.
110 return f"ERROR: {msg} mandatory deps missing"
112 return f"Warning: {msg} optional deps missing"
129 Add a package at the self.missing() dictionary.
133 self.missing[package] = dtype
141 Remove a package at the self.missing() dictionary.
144 if package in self.missing:
145 del self.missing[package]
157 self.missing = {}
171 for prog, dtype in sorted(self.missing.items()):
195 Emit warnings/errors related to missing packages.
214 Ancillary methods that checks for missing dependencies for different
291 Does the file exists? If not, add it to missing dependencies.
301 If not, add it to missing dependencies.
314 If not, add it to missing dependencies.
343 Does a python module exists outside venv? If not, add it to missing
358 Does a rpm package exists? If not, add it to missing dependencies.
368 Does a pacman package exists? If not, add it to missing dependencies.
378 Does a LaTeX package exists? If not, add it to missing dependencies.
569 - Check for missing system packages;
570 - Check for missing Python modules;
571 - Check for missing LaTeX packages needed by PDF generation;
641 Check for missing dependencies using the provided program mapping.
927 # to 4.3, python-virtualenv package is broken: it is missing
1104 # emit a code to setup missing USE
1166 "There are likely missing dependencies."
1480 sys.exit("Can't build as 1 mandatory dependency is missing")
1482 sys.exit(f"Can't build as {self.need} mandatory dependencies are missing")
1497 sys.exit("Can't build as 1 mandatory dependency is missing")
1499 sys.exit(f"Can't build as {self.deps.need} mandatory dependencies are missing")
1530 help="If version is compatible, don't check for missing dependencies",