mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Removed message
This commit is contained in:
parent
e00c122768
commit
ab2bd4564b
3 changed files with 0 additions and 11 deletions
|
@ -1,6 +1,4 @@
|
|||
4.8.0 - 19/04/2023
|
||||
Added:
|
||||
- Message: 'Resolving the dependencies...'
|
||||
Fixed:
|
||||
- Counting dependencies for tracking and blacklist packages
|
||||
- Resolving dependencies when are blacklisted or not included in the repository
|
||||
|
|
|
@ -87,7 +87,6 @@ class Packages(Configs):
|
|||
def dependencies(self):
|
||||
""" Creating the dependencies list and the order for install. """
|
||||
if not self.option_for_resolve_off:
|
||||
print('\rResolving the dependencies... ', end='')
|
||||
|
||||
for pkg in self.packages:
|
||||
|
||||
|
@ -103,8 +102,6 @@ class Packages(Configs):
|
|||
if requires:
|
||||
self.packages_requires = self.choose_dependencies(requires)
|
||||
|
||||
print(f'{self.byellow}Done{self.endc}')
|
||||
|
||||
self.install_order = [*self.packages_requires, *self.packages]
|
||||
|
||||
def download(self) -> None:
|
||||
|
|
|
@ -95,9 +95,6 @@ class Slackbuilds(Configs):
|
|||
|
||||
def creating_dictionary(self) -> None:
|
||||
""" Dictionary with the main slackbuilds and dependencies. """
|
||||
if not self.option_for_resolve_off:
|
||||
print('\rResolving the dependencies... ', end='')
|
||||
|
||||
for sbo in self.slackbuilds:
|
||||
if self.option_for_resolve_off:
|
||||
self.sbos[sbo] = []
|
||||
|
@ -128,9 +125,6 @@ class Slackbuilds(Configs):
|
|||
|
||||
self.install_order.extend(self.dependencies)
|
||||
|
||||
if not self.option_for_resolve_off:
|
||||
print(f'{self.byellow}Done{self.endc}')
|
||||
|
||||
def creating_main_for_build(self) -> None:
|
||||
""" List with the main slackbuilds. """
|
||||
[self.install_order.append(main) for main in self.sbos.keys() if main not in self.install_order]
|
||||
|
|
Loading…
Reference in a new issue