diff --git a/bin/lutin b/bin/lutin index 9e10811..0cfa033 100755 --- a/bin/lutin +++ b/bin/lutin @@ -12,8 +12,8 @@ import sys import os import copy +from realog import debug as debug import lutin -import lutin.debug as debug import lutin.arg as arguments import lutin.host as host import lutin.module as module diff --git a/lutin/__init__.py b/lutin/__init__.py index 0907ef6..3cf691a 100755 --- a/lutin/__init__.py +++ b/lutin/__init__.py @@ -17,7 +17,7 @@ from . import builder from . import system from . import host from . import tools -from . import debug +from realog import debug from . import module from . import env is_init = False diff --git a/lutin/arg.py b/lutin/arg.py index 38bbf53..62181e4 100644 --- a/lutin/arg.py +++ b/lutin/arg.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## import sys -from . import debug +from realog import debug ## ## @brief Single argument class. It permit to define the getted argument. diff --git a/lutin/builder.py b/lutin/builder.py index 0515550..389f9f2 100644 --- a/lutin/builder.py +++ b/lutin/builder.py @@ -13,7 +13,7 @@ import inspect import fnmatch import datetime # Local import -from . import debug +from realog import debug from . import heritage from . import env diff --git a/lutin/debug.py b/lutin/debug.py deleted file mode 100644 index 9bd835c..0000000 --- a/lutin/debug.py +++ /dev/null @@ -1,293 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -## -## @author Edouard DUPIN -## -## @copyright 2012, Edouard DUPIN, all right reserved -## -## @license MPL v2.0 (see license file) -## - -import os -import threading -import re - -debug_level=3 -debug_color=False - -color_default= "" -color_red = "" -color_green = "" -color_yellow = "" -color_blue = "" -color_purple = "" -color_cyan = "" - - -debug_lock = threading.Lock() - -# in python2 we have many time error with the utf-8 char, then to prevent error in utf8 print we jest removint its. -def local_print(value): - for elem in value.split("\n"): - to_print = "" - for val in elem: - if ord(val) > 128: - to_print += "?" - else: - to_print += val - print(to_print) - -def local_print_2(my_string): - try: - print(my_string2) - except UnicodeEncodeError: - for elem in my_string2.split("\n"): - try: - print(elem) - except UnicodeEncodeError: - to_print = "" - for val in elem: - if ord(val) > 128: - to_print += "?" - else: - to_print += val - print(to_print) - #print("****************************\n"); - #print(elem.encode('utf-8')) - #print("****************************\n"); - #print("[LUTIN ERROR] can not transform into utf8") - #print(my_string.encode('utf-8')) -## -## @brief Set log level of the console log system -## @param[in] id (int) Value of the log level: -## 0: None -## 1: error -## 2: warning -## 3: info -## 4: debug -## 5: verbose -## 6: extreme_verbose -## -def set_level(id): - global debug_level - debug_level = id - #local_print("SetDebug level at " + str(debug_level)) - -## -## @brief Get the current debug leval -## @return The value of the log level. Show: @ref set_level -## -def get_level(): - global debug_level - return debug_level - -## -## @brief Enable color of the console Log system -## -def enable_color(): - global debug_color - debug_color = True - global color_default - color_default= "\033[00m" - global color_red - color_red = "\033[31m" - global color_green - color_green = "\033[32m" - global color_yellow - color_yellow = "\033[33m" - global color_blue - color_blue = "\033[01;34m" - global color_purple - color_purple = "\033[35m" - global color_cyan - color_cyan = "\033[36m" - -## -## @brief Disable color of the console Log system -## -def disable_color(): - global debug_color - debug_color = True - global color_default - color_default= "" - global color_red - color_red = "" - global color_green - color_green = "" - global color_yellow - color_yellow = "" - global color_blue - color_blue = "" - global color_purple - color_purple = "" - global color_cyan - color_cyan = "" - -## -## @brief Print a extreme verbose log -## @param[in] input (string) Value to print if level is enough -## @param[in] force (bool) force display (no check of log level) -## -def extreme_verbose(input, force=False): - global debug_lock - global debug_level - if debug_level >= 6 \ - or force == True: - debug_lock.acquire() - local_print(color_blue + input + color_default) - debug_lock.release() - -## -## @brief Print a verbose log -## @param[in] input (string) Value to print if level is enough -## @param[in] force (bool) force display (no check of log level) -## -def verbose(input, force=False): - global debug_lock - global debug_level - if debug_level >= 5 \ - or force == True: - debug_lock.acquire() - local_print(color_blue + input + color_default) - debug_lock.release() - -## -## @brief Print a debug log -## @param[in] input (string) Value to print if level is enough -## @param[in] force (bool) force display (no check of log level) -## -def debug(input, force=False): - global debug_lock - global debug_level - if debug_level >= 4 \ - or force == True: - debug_lock.acquire() - local_print(color_green + input + color_default) - debug_lock.release() - -## -## @brief Print an info log -## @param[in] input (string) Value to print if level is enough -## @param[in] force (bool) force display (no check of log level) -## -def info(input, force=False): - global debug_lock - global debug_level - if debug_level >= 3 \ - or force == True: - debug_lock.acquire() - local_print(input + color_default) - debug_lock.release() - -## -## @brief Print a warning log -## @param[in] input (string) Value to print if level is enough -## @param[in] force (bool) force display (no check of log level) -## -def warning(input, force=False): - global debug_lock - global debug_level - if debug_level >= 2 \ - or force == True: - debug_lock.acquire() - local_print(color_purple + "[WARNING] " + input + color_default) - debug_lock.release() - -## -## @brief Print a todo log -## @param[in] input (string) Value to print if level is enough -## @param[in] force (bool) force display (no check of log level) -## -def todo(input, force=False): - global debug_lock - global debug_level - if debug_level >= 3 \ - or force == True: - debug_lock.acquire() - local_print(color_purple + "[TODO] " + input + color_default) - debug_lock.release() - -## -## @brief Print an error log -## @param[in] input (string) Value to print if level is enough -## @param[in] thread_id (int) Current thead ID of the builder thread -## @param[in] force (bool) force display (no check of log level) -## @param[in] crash (bool) build error has appear ==> request stop of all builds -## -def error(input, thread_id=-1, force=False, crash=True): - global debug_lock - global debug_level - if debug_level >= 1 \ - or force == True: - debug_lock.acquire() - local_print(color_red + "[ERROR] " + input + color_default) - debug_lock.release() - if crash == True: - from . import multiprocess - multiprocess.set_error_occured() - if thread_id != -1: - threading.interrupt_main() - exit(-1) - #os_exit(-1) - #raise "error happend" - - -## -## @brief Print a log for a specific element action like generateing .so or binary ... -## @param[in] type (string) type of action. Like: "copy file", "StaticLib", "Prebuild", "Library" ... -## @param[in] lib (string) Name of the library/binary/package that action is done -## @param[in] dir (string) build direction. ex: "<==", "==>" ... -## @param[in] name (string) Destination of the data -## @param[in] force (bool) force display (no check of log level) -## -def print_element(type, lib, dir, name, force=False): - global debug_lock - global debug_level - if debug_level >= 3 \ - or force == True: - debug_lock.acquire() - local_print(color_cyan + type + color_default + " : " + color_yellow + lib + color_default + " " + dir + " " + color_blue + name + color_default) - debug_lock.release() - -## -## @brief Print a compilation return (output) -## @param[in] my_string (string) Std-error/std-info that is generate by the build system -## -def print_compilator(my_string): - global debug_color - global debug_lock - if debug_color == True: - my_string = my_string.replace('\\n', '\n') - my_string = my_string.replace('\\t', '\t') - my_string = my_string.replace('error:', color_red+'error:'+color_default) - my_string = my_string.replace('warning:', color_purple+'warning:'+color_default) - my_string = my_string.replace('note:', color_green+'note:'+color_default) - my_string = re.sub(r'([/\w_-]+\.\w+):', r'-COLORIN-\1-COLOROUT-:', my_string) - my_string = my_string.replace('-COLORIN-', color_yellow) - my_string = my_string.replace('-COLOROUT-', color_default) - - debug_lock.acquire() - local_print(my_string); - debug_lock.release() - -## -## @brief Get the list of default color -## @return A map with keys: "default","red","green","yellow","blue","purple","cyan" -## -def get_color_set() : - global color_default - global color_red - global color_green - global color_yellow - global color_blue - global color_purple - global color_cyan - return { - "default": color_default, - "red": color_red, - "green": color_green, - "yellow": color_yellow, - "blue": color_blue, - "purple": color_purple, - "cyan": color_cyan, - } diff --git a/lutin/depend.py b/lutin/depend.py index 21a44ab..a24ec0e 100644 --- a/lutin/depend.py +++ b/lutin/depend.py @@ -9,7 +9,7 @@ ## import os # Local import -from . import debug +from realog import debug from . import env def _create_directory_of_file(file): diff --git a/lutin/env.py b/lutin/env.py index 0f444cf..6200cf8 100644 --- a/lutin/env.py +++ b/lutin/env.py @@ -9,7 +9,7 @@ ## # Local import -from . import debug +from realog import debug diff --git a/lutin/heritage.py b/lutin/heritage.py index 84c6b81..9bfecd3 100644 --- a/lutin/heritage.py +++ b/lutin/heritage.py @@ -10,7 +10,7 @@ import sys import copy # Local import -from . import debug +from realog import debug def append_to_list(list_out, elem): diff --git a/lutin/host.py b/lutin/host.py index 3e93824..142b55d 100644 --- a/lutin/host.py +++ b/lutin/host.py @@ -10,7 +10,7 @@ import platform import sys # Local import -from . import debug +from realog import debug # print os.name # ==> 'posix' if platform.system() == "Linux": diff --git a/lutin/image.py b/lutin/image.py index c3a6762..f0266db 100644 --- a/lutin/image.py +++ b/lutin/image.py @@ -10,7 +10,7 @@ import platform import os # Local import -from . import debug +from realog import debug from . import tools from . import multiprocess from . import depend diff --git a/lutin/macro.py b/lutin/macro.py index b4e212a..b56b076 100644 --- a/lutin/macro.py +++ b/lutin/macro.py @@ -14,7 +14,7 @@ import inspect import fnmatch import datetime # Local import -from . import debug +from realog import debug from . import tools from . import env diff --git a/lutin/module.py b/lutin/module.py index 683a925..379a6b4 100644 --- a/lutin/module.py +++ b/lutin/module.py @@ -16,7 +16,7 @@ import fnmatch # Local import from . import host from . import tools -from . import debug +from realog import debug from . import heritage from . import builder from . import multiprocess diff --git a/lutin/multiprocess.py b/lutin/multiprocess.py index 0b3af84..d25730b 100644 --- a/lutin/multiprocess.py +++ b/lutin/multiprocess.py @@ -20,7 +20,7 @@ import os import subprocess import shlex # Local import -from . import debug +from realog import debug from . import tools from . import env from . import depend @@ -212,6 +212,10 @@ def set_error_occured(): global exit_flag exit_flag = True +# set the debug system call us to stop threading +debug.set_callback_error(set_error_occured) + + def set_core_number(number_of_core): global processor_availlable processor_availlable = number_of_core diff --git a/lutin/system.py b/lutin/system.py index 3cfa79d..5056193 100644 --- a/lutin/system.py +++ b/lutin/system.py @@ -14,7 +14,7 @@ import inspect import fnmatch import datetime # Local import -from . import debug +from realog import debug from . import module from . import tools from . import env diff --git a/lutin/target.py b/lutin/target.py index 3dcc8e6..9afbe66 100644 --- a/lutin/target.py +++ b/lutin/target.py @@ -14,7 +14,7 @@ import inspect import fnmatch import datetime # Local import -from . import debug +from realog import debug from . import heritage from . import tools from . import module diff --git a/lutin/tools.py b/lutin/tools.py index 44e1927..bbaaff8 100644 --- a/lutin/tools.py +++ b/lutin/tools.py @@ -14,7 +14,7 @@ import errno import fnmatch import stat # Local import -from . import debug +from realog import debug from . import depend from . import env diff --git a/lutin/z_builder/lutinBuilder_binary.py b/lutin/z_builder/lutinBuilder_binary.py index 88ad6de..c89b06e 100644 --- a/lutin/z_builder/lutinBuilder_binary.py +++ b/lutin/z_builder/lutinBuilder_binary.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend from lutin import env import os diff --git a/lutin/z_builder/lutinBuilder_c.py b/lutin/z_builder/lutinBuilder_c.py index ef8ed3a..96d3677 100644 --- a/lutin/z_builder/lutinBuilder_c.py +++ b/lutin/z_builder/lutinBuilder_c.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend from lutin import env diff --git a/lutin/z_builder/lutinBuilder_cpp.py b/lutin/z_builder/lutinBuilder_cpp.py index 5e547b3..a1992d5 100644 --- a/lutin/z_builder/lutinBuilder_cpp.py +++ b/lutin/z_builder/lutinBuilder_cpp.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend from lutin import env # C++ default version: diff --git a/lutin/z_builder/lutinBuilder_jar.py b/lutin/z_builder/lutinBuilder_jar.py index 3b110f3..26978a5 100644 --- a/lutin/z_builder/lutinBuilder_jar.py +++ b/lutin/z_builder/lutinBuilder_jar.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend from lutin import env import os diff --git a/lutin/z_builder/lutinBuilder_java.py b/lutin/z_builder/lutinBuilder_java.py index 58b1bc4..0963259 100644 --- a/lutin/z_builder/lutinBuilder_java.py +++ b/lutin/z_builder/lutinBuilder_java.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend ## diff --git a/lutin/z_builder/lutinBuilder_javah.py b/lutin/z_builder/lutinBuilder_javah.py index 5c70fc3..d990219 100644 --- a/lutin/z_builder/lutinBuilder_javah.py +++ b/lutin/z_builder/lutinBuilder_javah.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend ## diff --git a/lutin/z_builder/lutinBuilder_libraryDynamic.py b/lutin/z_builder/lutinBuilder_libraryDynamic.py index 99fb9c1..6185cc9 100644 --- a/lutin/z_builder/lutinBuilder_libraryDynamic.py +++ b/lutin/z_builder/lutinBuilder_libraryDynamic.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend from lutin import env import os diff --git a/lutin/z_builder/lutinBuilder_libraryStatic.py b/lutin/z_builder/lutinBuilder_libraryStatic.py index 010120f..e1a45ae 100644 --- a/lutin/z_builder/lutinBuilder_libraryStatic.py +++ b/lutin/z_builder/lutinBuilder_libraryStatic.py @@ -13,7 +13,7 @@ ## from lutin import multiprocess from lutin import tools -from lutin import debug +from realog import debug from lutin import depend from lutin import env import os diff --git a/lutin/z_builder/lutinBuilder_m.py b/lutin/z_builder/lutinBuilder_m.py index 045a18b..643f02a 100644 --- a/lutin/z_builder/lutinBuilder_m.py +++ b/lutin/z_builder/lutinBuilder_m.py @@ -14,7 +14,7 @@ from lutin import multiprocess from lutin import tools from lutin import builder -from lutin import debug +from realog import debug from lutin import depend from lutin import env diff --git a/lutin/z_builder/lutinBuilder_mm.py b/lutin/z_builder/lutinBuilder_mm.py index 048bca7..809ea99 100644 --- a/lutin/z_builder/lutinBuilder_mm.py +++ b/lutin/z_builder/lutinBuilder_mm.py @@ -14,7 +14,7 @@ from lutin import multiprocess from lutin import tools from lutin import builder -from lutin import debug +from realog import debug from lutin import depend from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_ADMOD.py b/lutin/z_system/lutinSystem_Android_ADMOD.py index ce37619..4a3fff5 100644 --- a/lutin/z_system/lutinSystem_Android_ADMOD.py +++ b/lutin/z_system/lutinSystem_Android_ADMOD.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_SDK.py b/lutin/z_system/lutinSystem_Android_SDK.py index 9f59432..643e479 100644 --- a/lutin/z_system/lutinSystem_Android_SDK.py +++ b/lutin/z_system/lutinSystem_Android_SDK.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_c.py b/lutin/z_system/lutinSystem_Android_c.py index 4dc5dcf..5c05c9e 100644 --- a/lutin/z_system/lutinSystem_Android_c.py +++ b/lutin/z_system/lutinSystem_Android_c.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_cxx.py b/lutin/z_system/lutinSystem_Android_cxx.py index c3099cb..41e6ce9 100644 --- a/lutin/z_system/lutinSystem_Android_cxx.py +++ b/lutin/z_system/lutinSystem_Android_cxx.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_m.py b/lutin/z_system/lutinSystem_Android_m.py index d6319a0..170e7e5 100644 --- a/lutin/z_system/lutinSystem_Android_m.py +++ b/lutin/z_system/lutinSystem_Android_m.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_opengl.py b/lutin/z_system/lutinSystem_Android_opengl.py index 9f13cf2..7822c51 100644 --- a/lutin/z_system/lutinSystem_Android_opengl.py +++ b/lutin/z_system/lutinSystem_Android_opengl.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_pthread.py b/lutin/z_system/lutinSystem_Android_pthread.py index 78cd8d4..6784ab5 100644 --- a/lutin/z_system/lutinSystem_Android_pthread.py +++ b/lutin/z_system/lutinSystem_Android_pthread.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Android_z.py b/lutin/z_system/lutinSystem_Android_z.py index c21e64a..8ab52a4 100644 --- a/lutin/z_system/lutinSystem_Android_z.py +++ b/lutin/z_system/lutinSystem_Android_z.py @@ -7,7 +7,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_CoreAudio.py b/lutin/z_system/lutinSystem_IOs_CoreAudio.py index 7a2195d..0321b8e 100644 --- a/lutin/z_system/lutinSystem_IOs_CoreAudio.py +++ b/lutin/z_system/lutinSystem_IOs_CoreAudio.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_CoreGraphics.py b/lutin/z_system/lutinSystem_IOs_CoreGraphics.py index 83d4ff8..858313f 100644 --- a/lutin/z_system/lutinSystem_IOs_CoreGraphics.py +++ b/lutin/z_system/lutinSystem_IOs_CoreGraphics.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_Foundation.py b/lutin/z_system/lutinSystem_IOs_Foundation.py index f9e88d4..dcf9a46 100644 --- a/lutin/z_system/lutinSystem_IOs_Foundation.py +++ b/lutin/z_system/lutinSystem_IOs_Foundation.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_GLKit.py b/lutin/z_system/lutinSystem_IOs_GLKit.py index e31da1d..55a0362 100644 --- a/lutin/z_system/lutinSystem_IOs_GLKit.py +++ b/lutin/z_system/lutinSystem_IOs_GLKit.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_QuartzCore.py b/lutin/z_system/lutinSystem_IOs_QuartzCore.py index 5ed0555..85db6f2 100644 --- a/lutin/z_system/lutinSystem_IOs_QuartzCore.py +++ b/lutin/z_system/lutinSystem_IOs_QuartzCore.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_UIKit.py b/lutin/z_system/lutinSystem_IOs_UIKit.py index 94f799d..02f2259 100644 --- a/lutin/z_system/lutinSystem_IOs_UIKit.py +++ b/lutin/z_system/lutinSystem_IOs_UIKit.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_c.py b/lutin/z_system/lutinSystem_IOs_c.py index 84d9df7..57027ae 100644 --- a/lutin/z_system/lutinSystem_IOs_c.py +++ b/lutin/z_system/lutinSystem_IOs_c.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_cxx.py b/lutin/z_system/lutinSystem_IOs_cxx.py index c99f555..d9299a6 100644 --- a/lutin/z_system/lutinSystem_IOs_cxx.py +++ b/lutin/z_system/lutinSystem_IOs_cxx.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_m.py b/lutin/z_system/lutinSystem_IOs_m.py index d6319a0..170e7e5 100644 --- a/lutin/z_system/lutinSystem_IOs_m.py +++ b/lutin/z_system/lutinSystem_IOs_m.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_opengl.py b/lutin/z_system/lutinSystem_IOs_opengl.py index 0c23b19..bf39e78 100644 --- a/lutin/z_system/lutinSystem_IOs_opengl.py +++ b/lutin/z_system/lutinSystem_IOs_opengl.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_IOs_pthread.py b/lutin/z_system/lutinSystem_IOs_pthread.py index 308bea0..e554f89 100644 --- a/lutin/z_system/lutinSystem_IOs_pthread.py +++ b/lutin/z_system/lutinSystem_IOs_pthread.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_SDL.py b/lutin/z_system/lutinSystem_Linux_SDL.py index d763bbd..807912e 100644 --- a/lutin/z_system/lutinSystem_Linux_SDL.py +++ b/lutin/z_system/lutinSystem_Linux_SDL.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_X11.py b/lutin/z_system/lutinSystem_Linux_X11.py index 98b361c..8ea18e6 100644 --- a/lutin/z_system/lutinSystem_Linux_X11.py +++ b/lutin/z_system/lutinSystem_Linux_X11.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_alsa.py b/lutin/z_system/lutinSystem_Linux_alsa.py index c90812c..25f34b0 100644 --- a/lutin/z_system/lutinSystem_Linux_alsa.py +++ b/lutin/z_system/lutinSystem_Linux_alsa.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_arpa.py b/lutin/z_system/lutinSystem_Linux_arpa.py index df0afba..9f082f8 100644 --- a/lutin/z_system/lutinSystem_Linux_arpa.py +++ b/lutin/z_system/lutinSystem_Linux_arpa.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_boost.py b/lutin/z_system/lutinSystem_Linux_boost.py index 4ca23b8..8285363 100644 --- a/lutin/z_system/lutinSystem_Linux_boost.py +++ b/lutin/z_system/lutinSystem_Linux_boost.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_c.py b/lutin/z_system/lutinSystem_Linux_c.py index 8f2c7b2..01de601 100644 --- a/lutin/z_system/lutinSystem_Linux_c.py +++ b/lutin/z_system/lutinSystem_Linux_c.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_cxx.py b/lutin/z_system/lutinSystem_Linux_cxx.py index 4faf7e4..1150ff3 100644 --- a/lutin/z_system/lutinSystem_Linux_cxx.py +++ b/lutin/z_system/lutinSystem_Linux_cxx.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import multiprocess diff --git a/lutin/z_system/lutinSystem_Linux_egl.py b/lutin/z_system/lutinSystem_Linux_egl.py index 186f611..cd2a5de 100644 --- a/lutin/z_system/lutinSystem_Linux_egl.py +++ b/lutin/z_system/lutinSystem_Linux_egl.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_gles2.py b/lutin/z_system/lutinSystem_Linux_gles2.py index 1df4fb5..7f47a82 100644 --- a/lutin/z_system/lutinSystem_Linux_gles2.py +++ b/lutin/z_system/lutinSystem_Linux_gles2.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_jack.py b/lutin/z_system/lutinSystem_Linux_jack.py index febb568..b8b1ec0 100644 --- a/lutin/z_system/lutinSystem_Linux_jack.py +++ b/lutin/z_system/lutinSystem_Linux_jack.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_khr.py b/lutin/z_system/lutinSystem_Linux_khr.py index 170952b..214a155 100644 --- a/lutin/z_system/lutinSystem_Linux_khr.py +++ b/lutin/z_system/lutinSystem_Linux_khr.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_m.py b/lutin/z_system/lutinSystem_Linux_m.py index 5c5eae5..e3e1272 100644 --- a/lutin/z_system/lutinSystem_Linux_m.py +++ b/lutin/z_system/lutinSystem_Linux_m.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_mysql.py b/lutin/z_system/lutinSystem_Linux_mysql.py index c407c06..c8c7b25 100644 --- a/lutin/z_system/lutinSystem_Linux_mysql.py +++ b/lutin/z_system/lutinSystem_Linux_mysql.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_opengl.py b/lutin/z_system/lutinSystem_Linux_opengl.py index ef5b492..836ac7d 100644 --- a/lutin/z_system/lutinSystem_Linux_opengl.py +++ b/lutin/z_system/lutinSystem_Linux_opengl.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_oss.py b/lutin/z_system/lutinSystem_Linux_oss.py index 0cd7810..dc46845 100644 --- a/lutin/z_system/lutinSystem_Linux_oss.py +++ b/lutin/z_system/lutinSystem_Linux_oss.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_pthread.py b/lutin/z_system/lutinSystem_Linux_pthread.py index 92cc222..9876b90 100644 --- a/lutin/z_system/lutinSystem_Linux_pthread.py +++ b/lutin/z_system/lutinSystem_Linux_pthread.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_pulse.py b/lutin/z_system/lutinSystem_Linux_pulse.py index 995404f..86b4813 100644 --- a/lutin/z_system/lutinSystem_Linux_pulse.py +++ b/lutin/z_system/lutinSystem_Linux_pulse.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_rpc.py b/lutin/z_system/lutinSystem_Linux_rpc.py index 6e0fe6b..805f55e 100644 --- a/lutin/z_system/lutinSystem_Linux_rpc.py +++ b/lutin/z_system/lutinSystem_Linux_rpc.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_uuid.py b/lutin/z_system/lutinSystem_Linux_uuid.py index 2824476..b57925c 100644 --- a/lutin/z_system/lutinSystem_Linux_uuid.py +++ b/lutin/z_system/lutinSystem_Linux_uuid.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_va.py b/lutin/z_system/lutinSystem_Linux_va.py index 9df9061..e98bfb8 100644 --- a/lutin/z_system/lutinSystem_Linux_va.py +++ b/lutin/z_system/lutinSystem_Linux_va.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_vdpau.py b/lutin/z_system/lutinSystem_Linux_vdpau.py index 3d2e515..a136195 100644 --- a/lutin/z_system/lutinSystem_Linux_vdpau.py +++ b/lutin/z_system/lutinSystem_Linux_vdpau.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_wayland.py b/lutin/z_system/lutinSystem_Linux_wayland.py index 2340cf0..a1fc94c 100644 --- a/lutin/z_system/lutinSystem_Linux_wayland.py +++ b/lutin/z_system/lutinSystem_Linux_wayland.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_xkbcommon.py b/lutin/z_system/lutinSystem_Linux_xkbcommon.py index 7806609..70251a1 100644 --- a/lutin/z_system/lutinSystem_Linux_xkbcommon.py +++ b/lutin/z_system/lutinSystem_Linux_xkbcommon.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Linux_z.py b/lutin/z_system/lutinSystem_Linux_z.py index 408114d..3976175 100644 --- a/lutin/z_system/lutinSystem_Linux_z.py +++ b/lutin/z_system/lutinSystem_Linux_z.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_AVFoundation.py b/lutin/z_system/lutinSystem_MacOs_AVFoundation.py index 9b61b3e..aadd3a7 100644 --- a/lutin/z_system/lutinSystem_MacOs_AVFoundation.py +++ b/lutin/z_system/lutinSystem_MacOs_AVFoundation.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_AppKit.py b/lutin/z_system/lutinSystem_MacOs_AppKit.py index e42a137..e27739c 100644 --- a/lutin/z_system/lutinSystem_MacOs_AppKit.py +++ b/lutin/z_system/lutinSystem_MacOs_AppKit.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_Cocoa.py b/lutin/z_system/lutinSystem_MacOs_Cocoa.py index 33083f9..6a0de3b 100644 --- a/lutin/z_system/lutinSystem_MacOs_Cocoa.py +++ b/lutin/z_system/lutinSystem_MacOs_Cocoa.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_CoreAudio.py b/lutin/z_system/lutinSystem_MacOs_CoreAudio.py index 3c65739..488397d 100644 --- a/lutin/z_system/lutinSystem_MacOs_CoreAudio.py +++ b/lutin/z_system/lutinSystem_MacOs_CoreAudio.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_CoreGraphics.py b/lutin/z_system/lutinSystem_MacOs_CoreGraphics.py index e6170e2..62bb1f5 100644 --- a/lutin/z_system/lutinSystem_MacOs_CoreGraphics.py +++ b/lutin/z_system/lutinSystem_MacOs_CoreGraphics.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_CoreMedia.py b/lutin/z_system/lutinSystem_MacOs_CoreMedia.py index 882f2aa..d32244c 100644 --- a/lutin/z_system/lutinSystem_MacOs_CoreMedia.py +++ b/lutin/z_system/lutinSystem_MacOs_CoreMedia.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_CoreServices.py b/lutin/z_system/lutinSystem_MacOs_CoreServices.py index 0ee8395..26c8589 100644 --- a/lutin/z_system/lutinSystem_MacOs_CoreServices.py +++ b/lutin/z_system/lutinSystem_MacOs_CoreServices.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_CoreVideo.py b/lutin/z_system/lutinSystem_MacOs_CoreVideo.py index 5433904..94f577a 100644 --- a/lutin/z_system/lutinSystem_MacOs_CoreVideo.py +++ b/lutin/z_system/lutinSystem_MacOs_CoreVideo.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_Foundation.py b/lutin/z_system/lutinSystem_MacOs_Foundation.py index f9e88d4..dcf9a46 100644 --- a/lutin/z_system/lutinSystem_MacOs_Foundation.py +++ b/lutin/z_system/lutinSystem_MacOs_Foundation.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_QuartzCore.py b/lutin/z_system/lutinSystem_MacOs_QuartzCore.py index d36e971..2f03ec9 100644 --- a/lutin/z_system/lutinSystem_MacOs_QuartzCore.py +++ b/lutin/z_system/lutinSystem_MacOs_QuartzCore.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_VideoDecodeAcceleration.py b/lutin/z_system/lutinSystem_MacOs_VideoDecodeAcceleration.py index b9e8040..773daaf 100644 --- a/lutin/z_system/lutinSystem_MacOs_VideoDecodeAcceleration.py +++ b/lutin/z_system/lutinSystem_MacOs_VideoDecodeAcceleration.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_c.py b/lutin/z_system/lutinSystem_MacOs_c.py index 73d4d60..d2dff38 100644 --- a/lutin/z_system/lutinSystem_MacOs_c.py +++ b/lutin/z_system/lutinSystem_MacOs_c.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_cxx.py b/lutin/z_system/lutinSystem_MacOs_cxx.py index 0ef8599..fb2f6c5 100644 --- a/lutin/z_system/lutinSystem_MacOs_cxx.py +++ b/lutin/z_system/lutinSystem_MacOs_cxx.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_m.py b/lutin/z_system/lutinSystem_MacOs_m.py index 2a10f34..127668e 100644 --- a/lutin/z_system/lutinSystem_MacOs_m.py +++ b/lutin/z_system/lutinSystem_MacOs_m.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_opengl.py b/lutin/z_system/lutinSystem_MacOs_opengl.py index f0e2518..e9aca32 100644 --- a/lutin/z_system/lutinSystem_MacOs_opengl.py +++ b/lutin/z_system/lutinSystem_MacOs_opengl.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_MacOs_pthread.py b/lutin/z_system/lutinSystem_MacOs_pthread.py index f92b048..ed624d5 100644 --- a/lutin/z_system/lutinSystem_MacOs_pthread.py +++ b/lutin/z_system/lutinSystem_MacOs_pthread.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_advapi.py b/lutin/z_system/lutinSystem_Windows_advapi.py index 12ca3ca..356d283 100644 --- a/lutin/z_system/lutinSystem_Windows_advapi.py +++ b/lutin/z_system/lutinSystem_Windows_advapi.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_avicap.py b/lutin/z_system/lutinSystem_Windows_avicap.py index cd1556c..29a175e 100644 --- a/lutin/z_system/lutinSystem_Windows_avicap.py +++ b/lutin/z_system/lutinSystem_Windows_avicap.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_c.py b/lutin/z_system/lutinSystem_Windows_c.py index 4dc5dcf..5c05c9e 100644 --- a/lutin/z_system/lutinSystem_Windows_c.py +++ b/lutin/z_system/lutinSystem_Windows_c.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_cxx.py b/lutin/z_system/lutinSystem_Windows_cxx.py index 6d02ed6..b54fc27 100644 --- a/lutin/z_system/lutinSystem_Windows_cxx.py +++ b/lutin/z_system/lutinSystem_Windows_cxx.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_ds.py b/lutin/z_system/lutinSystem_Windows_ds.py index 9f2b772..0051219 100644 --- a/lutin/z_system/lutinSystem_Windows_ds.py +++ b/lutin/z_system/lutinSystem_Windows_ds.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_gdi.py b/lutin/z_system/lutinSystem_Windows_gdi.py index 2cf14a9..d1710da 100644 --- a/lutin/z_system/lutinSystem_Windows_gdi.py +++ b/lutin/z_system/lutinSystem_Windows_gdi.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_kernel.py b/lutin/z_system/lutinSystem_Windows_kernel.py index 9a5dd0f..3c80a4f 100644 --- a/lutin/z_system/lutinSystem_Windows_kernel.py +++ b/lutin/z_system/lutinSystem_Windows_kernel.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_m.py b/lutin/z_system/lutinSystem_Windows_m.py index d6319a0..170e7e5 100644 --- a/lutin/z_system/lutinSystem_Windows_m.py +++ b/lutin/z_system/lutinSystem_Windows_m.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_ole.py b/lutin/z_system/lutinSystem_Windows_ole.py index 9abad35..d4c73e6 100644 --- a/lutin/z_system/lutinSystem_Windows_ole.py +++ b/lutin/z_system/lutinSystem_Windows_ole.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_oleaut.py b/lutin/z_system/lutinSystem_Windows_oleaut.py index 51da1bd..82c6b52 100644 --- a/lutin/z_system/lutinSystem_Windows_oleaut.py +++ b/lutin/z_system/lutinSystem_Windows_oleaut.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_opengl.py b/lutin/z_system/lutinSystem_Windows_opengl.py index 2aeb296..03e8b1a 100644 --- a/lutin/z_system/lutinSystem_Windows_opengl.py +++ b/lutin/z_system/lutinSystem_Windows_opengl.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_psapi.py b/lutin/z_system/lutinSystem_Windows_psapi.py index 4e86fd9..118338c 100644 --- a/lutin/z_system/lutinSystem_Windows_psapi.py +++ b/lutin/z_system/lutinSystem_Windows_psapi.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_pthread.py b/lutin/z_system/lutinSystem_Windows_pthread.py index 0b7ec60..cef75d5 100644 --- a/lutin/z_system/lutinSystem_Windows_pthread.py +++ b/lutin/z_system/lutinSystem_Windows_pthread.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_rpc.py b/lutin/z_system/lutinSystem_Windows_rpc.py index e04e34f..bac3fe7 100644 --- a/lutin/z_system/lutinSystem_Windows_rpc.py +++ b/lutin/z_system/lutinSystem_Windows_rpc.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_shell.py b/lutin/z_system/lutinSystem_Windows_shell.py index 3db1896..caaab2f 100644 --- a/lutin/z_system/lutinSystem_Windows_shell.py +++ b/lutin/z_system/lutinSystem_Windows_shell.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_shlwapi.py b/lutin/z_system/lutinSystem_Windows_shlwapi.py index 55bc6e8..7944554 100644 --- a/lutin/z_system/lutinSystem_Windows_shlwapi.py +++ b/lutin/z_system/lutinSystem_Windows_shlwapi.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_start-mode-gui.py b/lutin/z_system/lutinSystem_Windows_start-mode-gui.py index 1231024..3aa973e 100644 --- a/lutin/z_system/lutinSystem_Windows_start-mode-gui.py +++ b/lutin/z_system/lutinSystem_Windows_start-mode-gui.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_strmiids.py b/lutin/z_system/lutinSystem_Windows_strmiids.py index c9cab25..22adcee 100644 --- a/lutin/z_system/lutinSystem_Windows_strmiids.py +++ b/lutin/z_system/lutinSystem_Windows_strmiids.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_user.py b/lutin/z_system/lutinSystem_Windows_user.py index 18bb77e..6421bbc 100644 --- a/lutin/z_system/lutinSystem_Windows_user.py +++ b/lutin/z_system/lutinSystem_Windows_user.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_uuid.py b/lutin/z_system/lutinSystem_Windows_uuid.py index 1f37f3a..b39d884 100644 --- a/lutin/z_system/lutinSystem_Windows_uuid.py +++ b/lutin/z_system/lutinSystem_Windows_uuid.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_system/lutinSystem_Windows_ws2.py b/lutin/z_system/lutinSystem_Windows_ws2.py index c7fa4de..c6687a9 100644 --- a/lutin/z_system/lutinSystem_Windows_ws2.py +++ b/lutin/z_system/lutinSystem_Windows_ws2.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import system from lutin import tools from lutin import env diff --git a/lutin/z_target/lutinTarget_Android.py b/lutin/z_target/lutinTarget_Android.py index 8beb216..7aca8bf 100644 --- a/lutin/z_target/lutinTarget_Android.py +++ b/lutin/z_target/lutinTarget_Android.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools from lutin import image diff --git a/lutin/z_target/lutinTarget_Debian.py b/lutin/z_target/lutinTarget_Debian.py index 0257f5c..d9c2e6a 100644 --- a/lutin/z_target/lutinTarget_Debian.py +++ b/lutin/z_target/lutinTarget_Debian.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools import os diff --git a/lutin/z_target/lutinTarget_IOs.py b/lutin/z_target/lutinTarget_IOs.py index d122c13..5d66689 100644 --- a/lutin/z_target/lutinTarget_IOs.py +++ b/lutin/z_target/lutinTarget_IOs.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools from lutin import image diff --git a/lutin/z_target/lutinTarget_Linux.py b/lutin/z_target/lutinTarget_Linux.py index 1c8aec6..d3fd6f2 100644 --- a/lutin/z_target/lutinTarget_Linux.py +++ b/lutin/z_target/lutinTarget_Linux.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools from lutin import env diff --git a/lutin/z_target/lutinTarget_MacOs.py b/lutin/z_target/lutinTarget_MacOs.py index 9e80eb2..9cc3746 100644 --- a/lutin/z_target/lutinTarget_MacOs.py +++ b/lutin/z_target/lutinTarget_MacOs.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools from lutin import host diff --git a/lutin/z_target/lutinTarget_Web.py b/lutin/z_target/lutinTarget_Web.py index 79ffbff..dc764d1 100644 --- a/lutin/z_target/lutinTarget_Web.py +++ b/lutin/z_target/lutinTarget_Web.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools from lutin import env diff --git a/lutin/z_target/lutinTarget_Windows.py b/lutin/z_target/lutinTarget_Windows.py index 146f5c2..9f90731 100644 --- a/lutin/z_target/lutinTarget_Windows.py +++ b/lutin/z_target/lutinTarget_Windows.py @@ -8,7 +8,7 @@ ## @license MPL v2.0 (see license file) ## -from lutin import debug +from realog import debug from lutin import target from lutin import tools from lutin import host diff --git a/lutin/zip.py b/lutin/zip.py index 7ee50a7..bc9e7b1 100644 --- a/lutin/zip.py +++ b/lutin/zip.py @@ -12,7 +12,7 @@ import platform import os import zipfile # Local import -from . import debug +from realog import debug from . import tools diff --git a/setup.py b/setup.py index a35a79c..2e2bc7b 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup(name='lutin', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Programming Language :: Python', - 'Topic :: Software Development :: Compilers', + 'Topic :: Software Development :: Build Tools', ], keywords='builder c++ c android ios macos makefile cmake', scripts=['bin/lutin'], @@ -39,6 +39,10 @@ setup(name='lutin', #data_file=[ # ('/etc/bash_completion.d', ['bash-autocompletion/lutin']), #], + install_requires=[ + 'realog', + 'death', + ], include_package_data = True, zip_safe=False) diff --git a/test/test-c/lutin_test-c.py b/test/test-c/lutin_test-c.py index ede461c..87ed332 100644 --- a/test/test-c/lutin_test-c.py +++ b/test/test-c/lutin_test-c.py @@ -1,6 +1,6 @@ #!/usr/bin/python import lutin.tools as tools -import lutin.debug as debug +import realog.debug as debug import os def get_type():