From 7431db937a5dc71e38a3ee181d1ad6f829637cb0 Mon Sep 17 00:00:00 2001 From: debianpepper Date: Fri, 29 Sep 2023 21:45:26 +0900 Subject: [PATCH] Testing: Bubbles Mods Signed-off-by: debianpepper --- python_modules/build_iso.py | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/python_modules/build_iso.py b/python_modules/build_iso.py index acfb232d..981b438b 100644 --- a/python_modules/build_iso.py +++ b/python_modules/build_iso.py @@ -48,14 +48,15 @@ class BuildXfce: self.sarch = sarch os.chdir(HOME_FOLDER + FUSATO_ROOT) + self.build_system() # Determine what base to build - if sbase == "deb": + #if sbase == "deb": # Run the Debian Build - self.debian_build() - elif sbase == "dev": - self.devuan_build() - else: - print("No base has been found") + #self.debian_build() + #elif sbase == "dev": + # self.devuan_build() + #else: + # print("No base has been found") def debian_build(self): @@ -71,8 +72,11 @@ class BuildXfce: else: logger.warning("No active build specified!") + def lb_helper(self): - """ Helper for the lb setup""" + """ + Helper for the lb setup this is shared for all builds + """ if self.sbase == "deb": if self.sarch[1:] == "64": lbsetup = conf.LBSET_DEB64 @@ -100,7 +104,9 @@ class BuildXfce: def infra_helper(self): - """ Helper for the infra classes """ + """ + Helper for the infra classes this is shared for all builds + """ infra.ChrootFolders(self.sbase, self.sarch) infra.BinaryFolders(self.sbase, self.sarch) infra.ArchitectureFiles(self.sbase, self.sarch) @@ -108,7 +114,9 @@ class BuildXfce: def xfce_helper(self): - """ Helper for the xfce desktop """ + """ + Helper for the xfce desktop shared for all builds + """ if self.sarch[1:] == "64": cmd_list = collections.deque(conf.build64_xfce_build) list_size = len(cmd_list)