mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-25 09:58:41 +01:00
Added config for missing
This commit is contained in:
parent
d1c2560782
commit
8c33df29af
5 changed files with 27 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
# This is the general configuration file of slpkg:
|
||||
# /etc/slpkg/slpkg.toml
|
||||
# Updated: 08/05/2024, Version: 5.0.8
|
||||
# Updated: 10/05/2024, Version: 5.0.8
|
||||
|
||||
[CONFIGS]
|
||||
|
||||
|
@ -33,6 +33,10 @@ CHECKSUM_MD5 = true
|
|||
# Default is true. [true/false]
|
||||
DIALOG = true
|
||||
|
||||
# View missing dependencies as main packages from the repository.
|
||||
# Default is true. [true/false]
|
||||
VIEW_MISSING_DEPS = true
|
||||
|
||||
# Choose ascii printable characters.
|
||||
# If true, it uses the extended characters, otherwise the basic ones.
|
||||
# Default is true. [true/false].
|
||||
|
|
|
@ -44,6 +44,7 @@ class Configs: # pylint: disable=[R0902]
|
|||
gpg_verification: bool = False
|
||||
checksum_md5: bool = True
|
||||
dialog: bool = True
|
||||
view_missing_deps: bool = True
|
||||
downloader: str = 'wget'
|
||||
wget_options: str = '--c -q --progress=bar:force:noscroll --show-progress'
|
||||
curl_options: str = ''
|
||||
|
@ -89,6 +90,7 @@ class Configs: # pylint: disable=[R0902]
|
|||
gpg_verification: bool = config['gpg_verification']
|
||||
checksum_md5: bool = config['checksum_md5']
|
||||
dialog: bool = config['dialog']
|
||||
view_missing_deps: bool = config['view_missing_deps']
|
||||
downloader: str = config['downloader']
|
||||
wget_options: str = config['wget_options']
|
||||
curl_options: str = config['curl_options']
|
||||
|
|
|
@ -82,6 +82,7 @@ class FormConfigs(Configs):
|
|||
keys: list = [
|
||||
'COLORS',
|
||||
'DIALOG',
|
||||
'VIEW_MISSING_DEPS',
|
||||
'SILENT_MODE',
|
||||
'ASCII_CHARACTERS',
|
||||
'ASK_QUESTION',
|
||||
|
@ -134,6 +135,7 @@ class FormConfigs(Configs):
|
|||
|
||||
('COLORS =',
|
||||
'DIALOG =',
|
||||
'VIEW_MISSING_DEPS =',
|
||||
'SILENT_MODE =',
|
||||
'ASCII_CHARACTERS =',
|
||||
'ASK_QUESTION =',
|
||||
|
|
|
@ -146,10 +146,11 @@ class Tracking(Configs): # pylint: disable=[R0902]
|
|||
self.package_requires: list = list(Requires(self.data, package, self.flags).resolve())
|
||||
|
||||
if self.package_requires:
|
||||
requires: list = self.data[package]['requires']
|
||||
for req in requires:
|
||||
if req not in self.data:
|
||||
self.package_requires.append(req)
|
||||
if self.view_missing_deps:
|
||||
requires: list = self.data[package]['requires']
|
||||
for req in requires:
|
||||
if req not in self.data:
|
||||
self.package_requires.append(req)
|
||||
self.require_length: int = max(len(name) for name in self.package_requires)
|
||||
|
||||
def view_summary_of_tracking(self, package: str) -> None:
|
||||
|
|
|
@ -334,17 +334,19 @@ class View(Configs): # pylint: disable=[R0902]
|
|||
def missing_dependencies(self, packages: list) -> None:
|
||||
""" View for missing dependencies.
|
||||
"""
|
||||
missing_deps: dict = {}
|
||||
for package in packages:
|
||||
requires: list = self.data[package]['requires']
|
||||
for req in requires:
|
||||
if req not in self.data:
|
||||
missing_deps[package] = [req for req in requires if req not in self.data]
|
||||
if missing_deps:
|
||||
print('\nPackages with missing dependencies:')
|
||||
for pkg, deps in missing_deps.items():
|
||||
print(f"> {self.cyan}{pkg}{self.endc}: Requires "
|
||||
f"({len(deps)}) -> {self.red}{', '.join(deps)}{self.endc}")
|
||||
if self.view_missing_deps:
|
||||
missing_deps: dict = {}
|
||||
for package in packages:
|
||||
requires: list = self.data[package]['requires']
|
||||
for req in requires:
|
||||
if req not in self.data:
|
||||
missing_deps[package] = [req for req in requires if req not in self.data]
|
||||
if missing_deps:
|
||||
print('\nPackages with missing dependencies:')
|
||||
for pkg, deps in missing_deps.items():
|
||||
if deps and deps != ['']:
|
||||
print(f"> {self.cyan}{pkg}{self.endc}: Requires "
|
||||
f"({len(deps)}) -> {self.red}{', '.join(deps)}{self.endc}")
|
||||
|
||||
def question(self, message: str = 'Do you want to continue?') -> None:
|
||||
""" View a question.
|
||||
|
|
Loading…
Reference in a new issue