mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-29 10:26:12 +01:00
Fixed alien -current repository #24
This commit is contained in:
parent
c0a70263f0
commit
4795d7ef79
2 changed files with 10 additions and 4 deletions
|
@ -62,10 +62,14 @@ class RepoInit(object):
|
|||
self.mirror = "{0}{1}/".format(Repo().rlw(), slack_ver())
|
||||
|
||||
def _init_alien(self):
|
||||
ver = slack_ver()
|
||||
arch = "x86"
|
||||
if os.uname()[4] == "x86_64":
|
||||
arch = "x86_64"
|
||||
self.mirror = "{0}{1}/{2}/".format(Repo().alien(), slack_ver(), arch)
|
||||
if self.meta.slack_rel == "current":
|
||||
ver = self.meta.slack_rel
|
||||
self.mirror = "{0}{1}/{2}/".format(Repo().alien(), ver, arch)
|
||||
print self.meta.slack_rel, ver, self.mirror
|
||||
|
||||
def _init_slacky(self):
|
||||
arch = ""
|
||||
|
|
|
@ -177,6 +177,7 @@ class Initialization(object):
|
|||
"""Creating alien local library
|
||||
"""
|
||||
ar = "x86"
|
||||
ver = slack_ver()
|
||||
arch = os.uname()[4]
|
||||
repo = Repo().alien()
|
||||
log = self.log_path + "alien/"
|
||||
|
@ -191,10 +192,11 @@ class Initialization(object):
|
|||
os.mkdir(lib)
|
||||
if arch == "x86_64":
|
||||
ar = arch
|
||||
PACKAGES_TXT = "{0}/{1}/{2}/{3}".format(repo, slack_ver(), ar, lib_file)
|
||||
if self.meta.slack_rel == "current":
|
||||
ver = self.meta.slack_rel
|
||||
PACKAGES_TXT = "{0}/{1}/{2}/{3}".format(repo, ver, ar, lib_file)
|
||||
FILELIST_TXT = ""
|
||||
CHECKSUMS_MD5 = "{0}/{1}/{2}/{3}".format(repo, slack_ver(), ar,
|
||||
md5_file)
|
||||
CHECKSUMS_MD5 = "{0}/{1}/{2}/{3}".format(repo, ver, ar, md5_file)
|
||||
ChangeLog_txt = "{0}{1}".format(repo, log_file)
|
||||
if self.check:
|
||||
return self.checks_logs(log, log_file, ChangeLog_txt)
|
||||
|
|
Loading…
Reference in a new issue