Updated for preparing

This commit is contained in:
Dimitris Zlatanidis 2024-03-21 11:39:33 +02:00
parent 138384ba6c
commit 71589d2f49
2 changed files with 4 additions and 1 deletions

View file

@ -100,7 +100,7 @@ class Packages(Configs):
def crating_the_package_urls_list(self) -> None:
packages: dict = {}
asc_files: list = []
print(f'\rPrepare sources for downloading... ', end='')
for pkg in self.install_order:
if self.continue_to_install(pkg):
package: str = self.data[pkg]['package']
@ -121,6 +121,7 @@ class Packages(Configs):
installed_package: str = self.utils.is_package_installed(pkg)
self.view.skipping_packages(installed_package)
print(f'{self.yellow}{self.ascii.done}{self.endc}')
self.download_the_binary_packages(packages)
if self.gpg_verification:
self.gpg.verify(asc_files)

View file

@ -131,6 +131,7 @@ class Slackbuilds(Configs):
def prepare_slackbuilds_for_build(self) -> None:
asc_files: list = []
print(f'\rPrepare sources for downloading... ', end='')
for sbo in self.install_order:
if self.continue_build_or_install(sbo):
build_path: Path = Path(self.build_path, sbo)
@ -157,6 +158,7 @@ class Slackbuilds(Configs):
self.sources[sbo] = (sources, Path(self.build_path, sbo))
print(f'{self.yellow}{self.ascii.done}{self.endc}')
if self.gpg_verification and self.repository == self.repos.sbo_repo_name:
self.gpg.verify(asc_files)