Testing: Bubbles Mods

Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2023-09-29 21:35:54 +09:00
parent 3b1155dd19
commit 54da4fc28f
1 changed files with 25 additions and 11 deletions

View File

@ -73,17 +73,31 @@ class BuildXfce:
def lb_helper(self):
""" Helper for the lb setup"""
if self.sarch[1:] == "64":
lbsetup = "conf.LBSET_DEB64"
os.system(lbsetup)
elif self.sarch[1:] == "32":
lbsetup = "conf.LBSET_DEB32"
os.system(lbsetup)
elif self.sarch[1:] == "arm":
lbsetup = "conf.LBSET_DEBARM"
os.system(lbsetup)
else:
lbsetup = None
if self.sbase == "deb":
if self.sarch[1:] == "64":
lbsetup = conf.LBSET_DEB64
os.system(lbsetup)
elif self.sarch[1:] == "32":
lbsetup = conf.LBSET_DEB32
os.system(lbsetup)
elif self.sarch[1:] == "arm":
lbsetup = conf.LBSET_DEBARM
os.system(lbsetup)
else:
lbsetup = None
elif self.sbase == "dev":
if self.sarch[1:] == "64":
lbsetup = conf.LBSET_DEV64
os.system(lbsetup)
elif self.sarch[1:] == "32":
lbsetup = conf.LBSET_DEV32
os.system(lbsetup)
elif self.sarch[1:] == "arm":
lbsetup = conf.LBSET_DEVARM
os.system(lbsetup)
else:
lbsetup = None
def infra_helper(self):
""" Helper for the infra classes """