mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +01:00
Reorder variables
This commit is contained in:
parent
7acb3587e0
commit
1ea9e7b635
1 changed files with 3 additions and 3 deletions
|
@ -45,8 +45,6 @@ class Initialization(Utils):
|
||||||
self.check = check
|
self.check = check
|
||||||
self.meta = _meta_
|
self.meta = _meta_
|
||||||
self.arch = _meta_.arch
|
self.arch = _meta_.arch
|
||||||
self.slack_ver = slack_ver()
|
|
||||||
self.def_repos_dict = Repo().default_repository()
|
|
||||||
self.conf_path = self.meta.conf_path
|
self.conf_path = self.meta.conf_path
|
||||||
self.log_path = self.meta.log_path
|
self.log_path = self.meta.log_path
|
||||||
self.lib_path = self.meta.lib_path
|
self.lib_path = self.meta.lib_path
|
||||||
|
@ -55,8 +53,9 @@ class Initialization(Utils):
|
||||||
self._SOURCES = self.meta.SBo_SOURCES
|
self._SOURCES = self.meta.SBo_SOURCES
|
||||||
self.slpkg_tmp_packages = self.meta.slpkg_tmp_packages
|
self.slpkg_tmp_packages = self.meta.slpkg_tmp_packages
|
||||||
self.slpkg_tmp_patches = self.meta.slpkg_tmp_patches
|
self.slpkg_tmp_patches = self.meta.slpkg_tmp_patches
|
||||||
|
self.slack_ver = slack_ver()
|
||||||
|
self.def_repos_dict = Repo().default_repository()
|
||||||
self.constructing()
|
self.constructing()
|
||||||
self.database()
|
|
||||||
|
|
||||||
def constructing(self):
|
def constructing(self):
|
||||||
"""Creating the all necessary directories
|
"""Creating the all necessary directories
|
||||||
|
@ -77,6 +76,7 @@ class Initialization(Utils):
|
||||||
|
|
||||||
self.make_dir(paths_basic)
|
self.make_dir(paths_basic)
|
||||||
self.make_dirs(paths_extra)
|
self.make_dirs(paths_extra)
|
||||||
|
self.database()
|
||||||
|
|
||||||
def database(self):
|
def database(self):
|
||||||
"""Initializing the database
|
"""Initializing the database
|
||||||
|
|
Loading…
Add table
Reference in a new issue