mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +01:00
Updated for preparing
This commit is contained in:
parent
138384ba6c
commit
71589d2f49
2 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue