ScriptCollection 4.0.17__py3-none-any.whl → 4.0.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ScriptCollection/ScriptCollectionCore.py +1 -1
- ScriptCollection/TFCPS/Docker/TFCPS_CodeUnitSpecific_Docker.py +3 -3
- ScriptCollection/TFCPS/DotNet/TFCPS_CodeUnitSpecific_DotNet.py +3 -3
- ScriptCollection/TFCPS/Flutter/TFCPS_CodeUnitSpecific_Flutter.py +3 -3
- ScriptCollection/TFCPS/NodeJS/TFCPS_CodeUnitSpecific_NodeJS.py +3 -3
- ScriptCollection/TFCPS/Python/TFCPS_CodeUnitSpecific_Python.py +3 -3
- ScriptCollection/TFCPS/TFCPS_CodeUnitSpecific_Base.py +3 -1
- ScriptCollection/TFCPS/TFCPS_CodeUnit_BuildCodeUnit.py +6 -1
- ScriptCollection/TFCPS/TFCPS_CodeUnit_BuildCodeUnits.py +2 -2
- ScriptCollection/TFCPS/TFCPS_MergeToMain.py +5 -2
- ScriptCollection/TFCPS/TFCPS_PreBuildCodeunitsScript.py +41 -0
- {scriptcollection-4.0.17.dist-info → scriptcollection-4.0.18.dist-info}/METADATA +1 -1
- {scriptcollection-4.0.17.dist-info → scriptcollection-4.0.18.dist-info}/RECORD +16 -15
- {scriptcollection-4.0.17.dist-info → scriptcollection-4.0.18.dist-info}/WHEEL +0 -0
- {scriptcollection-4.0.17.dist-info → scriptcollection-4.0.18.dist-info}/entry_points.txt +0 -0
- {scriptcollection-4.0.17.dist-info → scriptcollection-4.0.18.dist-info}/top_level.txt +0 -0
@@ -5,8 +5,8 @@ from ..TFCPS_CodeUnitSpecific_Base import TFCPS_CodeUnitSpecific_Base,TFCPS_Code
|
|
5
5
|
|
6
6
|
class TFCPS_CodeUnitSpecific_Docker_Functions(TFCPS_CodeUnitSpecific_Base):
|
7
7
|
|
8
|
-
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool):
|
9
|
-
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache)
|
8
|
+
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool,is_pre_merge:bool):
|
9
|
+
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache,is_pre_merge)
|
10
10
|
|
11
11
|
|
12
12
|
@GeneralUtilities.check_arguments
|
@@ -84,5 +84,5 @@ class TFCPS_CodeUnitSpecific_Docker_CLI:
|
|
84
84
|
parser=TFCPS_CodeUnitSpecific_Base_CLI.get_base_parser()
|
85
85
|
#add custom parameter if desired
|
86
86
|
args=parser.parse_args()
|
87
|
-
result:TFCPS_CodeUnitSpecific_Docker_Functions=TFCPS_CodeUnitSpecific_Docker_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache)
|
87
|
+
result:TFCPS_CodeUnitSpecific_Docker_Functions=TFCPS_CodeUnitSpecific_Docker_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache,args.ispremerge)
|
88
88
|
return result
|
@@ -17,8 +17,8 @@ class TFCPS_CodeUnitSpecific_DotNet_Functions(TFCPS_CodeUnitSpecific_Base):
|
|
17
17
|
is_library:bool
|
18
18
|
csproj_file:bool
|
19
19
|
|
20
|
-
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool):
|
21
|
-
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache)
|
20
|
+
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool,is_pre_merge:bool):
|
21
|
+
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache,is_pre_merge)
|
22
22
|
self.csproj_file=os.path.join(self.get_codeunit_folder(), self.get_codeunit_name(), self.get_codeunit_name() + ".csproj")
|
23
23
|
self.is_library="<OutputType>Library</OutputType>" in GeneralUtilities.read_text_from_file(self.csproj_file)#TODO do a real check
|
24
24
|
|
@@ -475,5 +475,5 @@ class TFCPS_CodeUnitSpecific_DotNet_CLI:
|
|
475
475
|
parser=TFCPS_CodeUnitSpecific_Base_CLI.get_base_parser()
|
476
476
|
#add custom parameter if desired
|
477
477
|
args=parser.parse_args()
|
478
|
-
result:TFCPS_CodeUnitSpecific_DotNet_Functions=TFCPS_CodeUnitSpecific_DotNet_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache)
|
478
|
+
result:TFCPS_CodeUnitSpecific_DotNet_Functions=TFCPS_CodeUnitSpecific_DotNet_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache,args.ispremerge)
|
479
479
|
return result
|
@@ -4,8 +4,8 @@ from ..TFCPS_CodeUnitSpecific_Base import TFCPS_CodeUnitSpecific_Base,TFCPS_Code
|
|
4
4
|
|
5
5
|
class TFCPS_CodeUnitSpecific_Flutter_Functions(TFCPS_CodeUnitSpecific_Base):
|
6
6
|
|
7
|
-
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool):
|
8
|
-
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache)
|
7
|
+
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool,is_pre_merge:bool):
|
8
|
+
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache,is_pre_merge)
|
9
9
|
|
10
10
|
|
11
11
|
@GeneralUtilities.check_arguments
|
@@ -39,5 +39,5 @@ class TFCPS_CodeUnitSpecific_Flutter_CLI:
|
|
39
39
|
parser=TFCPS_CodeUnitSpecific_Base_CLI.get_base_parser()
|
40
40
|
#add custom parameter if desired
|
41
41
|
args=parser.parse_args()
|
42
|
-
result:TFCPS_CodeUnitSpecific_Flutter_Functions=TFCPS_CodeUnitSpecific_Flutter_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache)
|
42
|
+
result:TFCPS_CodeUnitSpecific_Flutter_Functions=TFCPS_CodeUnitSpecific_Flutter_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache,args.ispremerge)
|
43
43
|
return result
|
@@ -8,8 +8,8 @@ from ..TFCPS_CodeUnitSpecific_Base import TFCPS_CodeUnitSpecific_Base,TFCPS_Code
|
|
8
8
|
class TFCPS_CodeUnitSpecific_NodeJS_Functions(TFCPS_CodeUnitSpecific_Base):
|
9
9
|
|
10
10
|
|
11
|
-
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool):
|
12
|
-
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache)
|
11
|
+
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool,is_pre_merge:bool):
|
12
|
+
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache,is_pre_merge)
|
13
13
|
|
14
14
|
|
15
15
|
@GeneralUtilities.check_arguments
|
@@ -119,5 +119,5 @@ class TFCPS_CodeUnitSpecific_NodeJS_CLI:
|
|
119
119
|
parser=TFCPS_CodeUnitSpecific_Base_CLI.get_base_parser()
|
120
120
|
#add custom parameter if desired
|
121
121
|
args=parser.parse_args()
|
122
|
-
result:TFCPS_CodeUnitSpecific_NodeJS_Functions=TFCPS_CodeUnitSpecific_NodeJS_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache)
|
122
|
+
result:TFCPS_CodeUnitSpecific_NodeJS_Functions=TFCPS_CodeUnitSpecific_NodeJS_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache,args.ispremerge)
|
123
123
|
return result
|
@@ -5,8 +5,8 @@ from ..TFCPS_CodeUnitSpecific_Base import TFCPS_CodeUnitSpecific_Base,TFCPS_Code
|
|
5
5
|
|
6
6
|
class TFCPS_CodeUnitSpecific_Python_Functions(TFCPS_CodeUnitSpecific_Base):
|
7
7
|
|
8
|
-
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool):
|
9
|
-
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache)
|
8
|
+
def __init__(self,current_file:str,verbosity:LogLevel,targetenvironmenttype:str,use_cache:bool,is_pre_merge:bool):
|
9
|
+
super().__init__(current_file, verbosity,targetenvironmenttype,use_cache,is_pre_merge)
|
10
10
|
|
11
11
|
|
12
12
|
@GeneralUtilities.check_arguments
|
@@ -107,5 +107,5 @@ class TFCPS_CodeUnitSpecific_Python_CLI:
|
|
107
107
|
parser=TFCPS_CodeUnitSpecific_Base_CLI.get_base_parser()
|
108
108
|
#add custom parameter if desired
|
109
109
|
args=parser.parse_args()
|
110
|
-
result:TFCPS_CodeUnitSpecific_Python_Functions=TFCPS_CodeUnitSpecific_Python_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache)
|
110
|
+
result:TFCPS_CodeUnitSpecific_Python_Functions=TFCPS_CodeUnitSpecific_Python_Functions(file,LogLevel(int(args.verbosity)),args.targetenvironmenttype,not args.nocache,args.ispremerge)
|
111
111
|
return result
|
@@ -28,13 +28,14 @@ class TFCPS_CodeUnitSpecific_Base(ABC):
|
|
28
28
|
__is_pre_merge:bool=False#TODO must be setable to true
|
29
29
|
__validate_developers_of_repository:bool=True#TODO must be setable to false
|
30
30
|
|
31
|
-
def __init__(self,current_file:str,verbosity:LogLevel,target_envionment_type:str,use_cache:bool):
|
31
|
+
def __init__(self,current_file:str,verbosity:LogLevel,target_envionment_type:str,use_cache:bool,is_pre_merge:bool):
|
32
32
|
self.__verbosity=verbosity
|
33
33
|
self.__use_cache=use_cache
|
34
34
|
self.__target_environment_type=target_envionment_type
|
35
35
|
self.__current_file = str(Path(current_file).absolute())
|
36
36
|
self.__current_folder = os.path.dirname(self.__current_file)
|
37
37
|
self.__codeunit_folder=self.__search_codeunit_folder()
|
38
|
+
self.__is_pre_merge=is_pre_merge
|
38
39
|
self._protected_sc=ScriptCollectionCore()#TODO set loglevel
|
39
40
|
self.tfcps_Tools_General=TFCPS_Tools_General(self._protected_sc)
|
40
41
|
self.tfcps_Tools_General.assert_is_codeunit_folder(self.__codeunit_folder)
|
@@ -414,4 +415,5 @@ class TFCPS_CodeUnitSpecific_Base_CLI():
|
|
414
415
|
parser.add_argument('-a', '--additionalargumentsfile', required=False, default=None)
|
415
416
|
parser.add_argument('-v', '--verbosity', required=False, default=3, help=f"Sets the loglevel. Possible values: {verbosity_values}")
|
416
417
|
parser.add_argument('-c', '--nocache', action='store_true', required=False, default=False)
|
418
|
+
parser.add_argument('-p', '--ispremerge', action='store_true', required=False, default=False)
|
417
419
|
return parser
|
@@ -16,8 +16,9 @@ class TFCPS_CodeUnit_BuildCodeUnit:
|
|
16
16
|
target_environment_type: str
|
17
17
|
additionalargumentsfile: str
|
18
18
|
use_cache: bool
|
19
|
+
is_pre_merge: bool
|
19
20
|
|
20
|
-
def __init__(self, codeunit_folder: str, verbosity: LogLevel, target_environment_type: str, additionalargumentsfile: str, use_cache: bool):
|
21
|
+
def __init__(self, codeunit_folder: str, verbosity: LogLevel, target_environment_type: str, additionalargumentsfile: str, use_cache: bool,is_pre_merge:bool):
|
21
22
|
self.sc = ScriptCollectionCore()
|
22
23
|
self.sc.log.loglevel = verbosity
|
23
24
|
self.tFCPS_Tools = TFCPS_Tools_General(self.sc)
|
@@ -27,6 +28,7 @@ class TFCPS_CodeUnit_BuildCodeUnit:
|
|
27
28
|
self.target_environment_type = target_environment_type
|
28
29
|
self.additionalargumentsfile = additionalargumentsfile
|
29
30
|
self.use_cache = use_cache
|
31
|
+
self.is_pre_merge=is_pre_merge
|
30
32
|
|
31
33
|
@GeneralUtilities.check_arguments
|
32
34
|
def build_codeunit(self) -> None:
|
@@ -44,6 +46,9 @@ class TFCPS_CodeUnit_BuildCodeUnit:
|
|
44
46
|
if not self.use_cache:
|
45
47
|
arguments = f"{arguments} --nocache"
|
46
48
|
|
49
|
+
if self.is_pre_merge:
|
50
|
+
arguments = f"{arguments} --ispremerge"
|
51
|
+
|
47
52
|
self.sc.log.log("Do common tasks...")
|
48
53
|
self.sc.run_program("python", f"CommonTasks.py {arguments}", os.path.join(self.codeunit_folder, "Other"), print_live_output=True)
|
49
54
|
self.verify_artifact_exists(self.codeunit_folder, dict[str, bool]({"Changelog": False, "License": True, "DiffReport": True}))
|
@@ -48,7 +48,7 @@ class TFCPS_CodeUnit_BuildCodeUnits:
|
|
48
48
|
for codeunit_name in codeunits:
|
49
49
|
self.sc.log.log(" - "+codeunit_name)
|
50
50
|
for codeunit_name in codeunits:
|
51
|
-
tFCPS_CodeUnit_BuildCodeUnit:TFCPS_CodeUnit_BuildCodeUnit = TFCPS_CodeUnit_BuildCodeUnit(os.path.join(self.repository,codeunit_name),self.sc.log.loglevel,self.target_environment_type,self.additionalargumentsfile,self.use_cache())
|
51
|
+
tFCPS_CodeUnit_BuildCodeUnit:TFCPS_CodeUnit_BuildCodeUnit = TFCPS_CodeUnit_BuildCodeUnit(os.path.join(self.repository,codeunit_name),self.sc.log.loglevel,self.target_environment_type,self.additionalargumentsfile,self.use_cache(),self.is_pre_merge())
|
52
52
|
self.sc.log.log(GeneralUtilities.get_line())
|
53
53
|
tFCPS_CodeUnit_BuildCodeUnit.build_codeunit()
|
54
54
|
self.sc.log.log(GeneralUtilities.get_line())
|
@@ -72,7 +72,7 @@ class TFCPS_CodeUnit_BuildCodeUnits:
|
|
72
72
|
#TODO update project-wide-dependencies here
|
73
73
|
codeunits:list[str]=self.tFCPS_Other.get_codeunits(self.repository)
|
74
74
|
for codeunit_name in codeunits:
|
75
|
-
tFCPS_CodeUnit_BuildCodeUnit:TFCPS_CodeUnit_BuildCodeUnit = TFCPS_CodeUnit_BuildCodeUnit(os.path.join(self.repository,codeunit_name),self.sc.log.loglevel,self.target_environment_type,self.additionalargumentsfile,self.use_cache())
|
75
|
+
tFCPS_CodeUnit_BuildCodeUnit:TFCPS_CodeUnit_BuildCodeUnit = TFCPS_CodeUnit_BuildCodeUnit(os.path.join(self.repository,codeunit_name),self.sc.log.loglevel,self.target_environment_type,self.additionalargumentsfile,self.use_cache(),self.is_pre_merge())
|
76
76
|
tFCPS_CodeUnit_BuildCodeUnit.update_dependencies()
|
77
77
|
|
78
78
|
@GeneralUtilities.check_arguments
|
@@ -16,9 +16,10 @@ class MergeToMainConfiguration:
|
|
16
16
|
repository_folder:str
|
17
17
|
tFCPS_Generic_Functions:TFCPS_Generic_Functions
|
18
18
|
common_remote_name:str
|
19
|
+
build_repo:str
|
19
20
|
sc:ScriptCollectionCore=ScriptCollectionCore()
|
20
21
|
|
21
|
-
def __init__(self, current_file: str,repository:str, product_name: str,merge_source_branch:str,log_level:LogLevel,additional_arguments_file:str,main_branch:str,common_remote_name:str):
|
22
|
+
def __init__(self, current_file: str,repository:str, product_name: str,merge_source_branch:str,log_level:LogLevel,additional_arguments_file:str,main_branch:str,common_remote_name:str,build_repo:str):
|
22
23
|
self.sc.log.loglevel=log_level
|
23
24
|
self.repository_folder = repository
|
24
25
|
self.product_name = product_name
|
@@ -27,6 +28,7 @@ class MergeToMainConfiguration:
|
|
27
28
|
self.log_level=log_level
|
28
29
|
self.main_branch=main_branch
|
29
30
|
self.common_remote_name=common_remote_name
|
31
|
+
self.build_repo=build_repo
|
30
32
|
|
31
33
|
class TFCPS_MergeToMain:
|
32
34
|
|
@@ -73,6 +75,7 @@ class TFCPS_MergeToMain:
|
|
73
75
|
self.sc.log.log("Push branches...")
|
74
76
|
self.sc.git_push_with_retry(self.generic_prepare_new_release_arguments.repository_folder,self.generic_prepare_new_release_arguments.common_remote_name,source_branch,source_branch)
|
75
77
|
self.sc.git_push_with_retry(self.generic_prepare_new_release_arguments.repository_folder,self.generic_prepare_new_release_arguments.common_remote_name,target_branch,target_branch)
|
78
|
+
self.sc.git_commit(self.generic_prepare_new_release_arguments.build_repo,"Updated submodule")
|
76
79
|
|
77
80
|
class TFCPS_MergeToMain_CLI:
|
78
81
|
|
@@ -120,6 +123,6 @@ class TFCPS_MergeToMain_CLI:
|
|
120
123
|
GeneralUtilities.assert_not_null(default_common_remote_name,"commonremotename is not set")
|
121
124
|
|
122
125
|
repository=os.path.join(build_repo,"Submodules",default_product_name)
|
123
|
-
config:MergeToMainConfiguration=MergeToMainConfiguration(file,repository,default_product_name,default_merge_source_branch,default_loglevel,default_additionalargumentsfile,default_main_branch,default_common_remote_name)
|
126
|
+
config:MergeToMainConfiguration=MergeToMainConfiguration(file,repository,default_product_name,default_merge_source_branch,default_loglevel,default_additionalargumentsfile,default_main_branch,default_common_remote_name,build_repo)
|
124
127
|
tFCPS_MergeToMain:TFCPS_MergeToMain=TFCPS_MergeToMain(config)
|
125
128
|
return tFCPS_MergeToMain
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import argparse
|
2
|
+
from ..SCLog import LogLevel
|
3
|
+
from ..ScriptCollectionCore import GeneralUtilities
|
4
|
+
from ..ScriptCollectionCore import ScriptCollectionCore
|
5
|
+
|
6
|
+
class TFCPS_PreBuildCodeunitsScriptConfiguration:
|
7
|
+
targetenvironmenttype:str
|
8
|
+
additionalargumentsfile:str
|
9
|
+
verbosity:LogLevel
|
10
|
+
use_cache:str
|
11
|
+
repository_folder:str=None
|
12
|
+
|
13
|
+
def __init__(self,script_file:str,targetenvironmenttype:str,additionalargumentsfile:str,verbosity:LogLevel,use_cache:bool):
|
14
|
+
self.targetenvironmenttype=targetenvironmenttype
|
15
|
+
self.additionalargumentsfile=additionalargumentsfile
|
16
|
+
self.verbosity=verbosity
|
17
|
+
self.use_cache=use_cache
|
18
|
+
self.repository_folder=ScriptCollectionCore().search_repository_folder(script_file)
|
19
|
+
|
20
|
+
class TFCPS_PreBuildCodeunitsScript:
|
21
|
+
configuration:TFCPS_PreBuildCodeunitsScriptConfiguration
|
22
|
+
|
23
|
+
def __init__(self,configuration:TFCPS_PreBuildCodeunitsScriptConfiguration):
|
24
|
+
self.configuration=configuration
|
25
|
+
|
26
|
+
def pre_merge(self):
|
27
|
+
pass#TODO
|
28
|
+
|
29
|
+
class TFCPS_PreBuildCodeunitsScript_CLI():
|
30
|
+
|
31
|
+
@staticmethod
|
32
|
+
@GeneralUtilities.check_arguments
|
33
|
+
def parse(script_file:str)->argparse.ArgumentParser:
|
34
|
+
parser = argparse.ArgumentParser()
|
35
|
+
verbosity_values = ", ".join(f"{lvl.value}={lvl.name}" for lvl in LogLevel)
|
36
|
+
parser.add_argument('-e', '--targetenvironmenttype', required=False, default="QualityCheck")
|
37
|
+
parser.add_argument('-a', '--additionalargumentsfile', required=False, default=None)
|
38
|
+
parser.add_argument('-v', '--verbosity', required=False, default=3, help=f"Sets the loglevel. Possible values: {verbosity_values}")
|
39
|
+
parser.add_argument('-c', '--nocache', action='store_true', required=False, default=False)
|
40
|
+
args=parser.parse_args()
|
41
|
+
return TFCPS_PreBuildCodeunitsScript(TFCPS_PreBuildCodeunitsScriptConfiguration(script_file,args.targetenvironmenttype,args.additionalargumentsfile,LogLevel(int(args.verbosity)),not args.nocache))
|
@@ -9,33 +9,34 @@ ScriptCollection/ProgramRunnerEpew.py,sha256=TJdDx9zIMSiCaXh8X-ekrMlbXfGtmd0Mmyx
|
|
9
9
|
ScriptCollection/ProgramRunnerMock.py,sha256=uTu-aFle1W_oKjeQEmuPsFPQpvo0kRf2FrRjAPIwT5Y,37
|
10
10
|
ScriptCollection/ProgramRunnerPopen.py,sha256=BPY7-ZMIlqT7JOKz8qlB5c0laF2Js-ijzqk09GxZC48,3821
|
11
11
|
ScriptCollection/SCLog.py,sha256=dxGOI4E9lG5v9jk_LajXCkM5nghliCDV8YB8Ihn160s,4541
|
12
|
-
ScriptCollection/ScriptCollectionCore.py,sha256=
|
12
|
+
ScriptCollection/ScriptCollectionCore.py,sha256=k94BR1k41sAW0qoOrze6EYcmbr8Ly_H3yBZZSC5DGlc,140617
|
13
13
|
ScriptCollection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
ScriptCollection/TFCPS/TFCPS_CodeUnitSpecific_Base.py,sha256=
|
15
|
-
ScriptCollection/TFCPS/TFCPS_CodeUnit_BuildCodeUnit.py,sha256=
|
16
|
-
ScriptCollection/TFCPS/TFCPS_CodeUnit_BuildCodeUnits.py,sha256=
|
14
|
+
ScriptCollection/TFCPS/TFCPS_CodeUnitSpecific_Base.py,sha256=Cj89Xhzf5CRSDVH_-0JachQMsPHfjkz8jtRi_BpiGvY,25979
|
15
|
+
ScriptCollection/TFCPS/TFCPS_CodeUnit_BuildCodeUnit.py,sha256=xfZ2iFCH-eIqi-AdhqcYaSYqb3JP1VE4o7LrHEtqFQA,7388
|
16
|
+
ScriptCollection/TFCPS/TFCPS_CodeUnit_BuildCodeUnits.py,sha256=GXFF1xem3fe8Vosb7dsVyOSe3mS1KtFO0WSlCg1XZ6Q,4733
|
17
17
|
ScriptCollection/TFCPS/TFCPS_CreateRelease.py,sha256=GfyeOjgluMLCc3FbcxyKp5GoT5e9TKM8MJwM7LjEw8s,6460
|
18
18
|
ScriptCollection/TFCPS/TFCPS_Generic.py,sha256=O-0guM_LJCcZmPZJhMgTvXD2RXUJEBWWv6Bt6hDFhvM,1943
|
19
|
-
ScriptCollection/TFCPS/TFCPS_MergeToMain.py,sha256=
|
19
|
+
ScriptCollection/TFCPS/TFCPS_MergeToMain.py,sha256=wX7oF_JYATofrJNQ7XtPKCg8cjr_XSAmE-Dn0BseaNo,7746
|
20
20
|
ScriptCollection/TFCPS/TFCPS_MergeToStable.py,sha256=AUM6hJDYmFzcP4wCwrn2htf3fTBK9mstxnLWWHaxxPE,22652
|
21
|
+
ScriptCollection/TFCPS/TFCPS_PreBuildCodeunitsScript.py,sha256=pp1jXgNCkDGbpCyoLU5csZ_Y7FVYrMAuE_doUiEIFf4,1967
|
21
22
|
ScriptCollection/TFCPS/TFCPS_Tools_Dependencies.py,sha256=o7HI3ki3WWqlAiUsrh3Lky_w6UhYh9hdjYPGOhubQGA,414
|
22
23
|
ScriptCollection/TFCPS/TFCPS_Tools_General.py,sha256=QsywKFqRQBHflDISwwRvLuP3JppNxHzhhuKS3ThPMm4,66111
|
23
24
|
ScriptCollection/TFCPS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
ScriptCollection/TFCPS/Docker/TFCPS_CodeUnitSpecific_Docker.py,sha256
|
25
|
+
ScriptCollection/TFCPS/Docker/TFCPS_CodeUnitSpecific_Docker.py,sha256=-g8h2gCf9rh0KJXUBeQD5d0qLJgBU3Q8DNZXM1UXC04,5259
|
25
26
|
ScriptCollection/TFCPS/Docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
27
|
ScriptCollection/TFCPS/DotNet/CertificateGeneratorInformationBase.py,sha256=bT6Gd5pQpZCw4OQz6HWkPCSn5z__eUUEisABLDSxd0o,200
|
27
28
|
ScriptCollection/TFCPS/DotNet/CertificateGeneratorInformationGenerate.py,sha256=QyjOfMY22JWCvKjMelHiDWbJiWqotOfebpJpgDUaoO4,237
|
28
29
|
ScriptCollection/TFCPS/DotNet/CertificateGeneratorInformationNoGenerate.py,sha256=i0zEGehj0sttxjjZtoq2KFSKp_ulxVyWp_ZgAhIY_So,241
|
29
|
-
ScriptCollection/TFCPS/DotNet/TFCPS_CodeUnitSpecific_DotNet.py,sha256=
|
30
|
+
ScriptCollection/TFCPS/DotNet/TFCPS_CodeUnitSpecific_DotNet.py,sha256=BsHGikZXE2tZLlCo5rKNwIXkHqQCZTQk9KAYNquFxgs,30770
|
30
31
|
ScriptCollection/TFCPS/DotNet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
-
ScriptCollection/TFCPS/Flutter/TFCPS_CodeUnitSpecific_Flutter.py,sha256=
|
32
|
+
ScriptCollection/TFCPS/Flutter/TFCPS_CodeUnitSpecific_Flutter.py,sha256=6g1xZ6_Nnr0Xa2VvSEtMg0H1hjUCvjzXXaPHFJ2xD1o,1626
|
32
33
|
ScriptCollection/TFCPS/Flutter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
ScriptCollection/TFCPS/NodeJS/TFCPS_CodeUnitSpecific_NodeJS.py,sha256=
|
34
|
+
ScriptCollection/TFCPS/NodeJS/TFCPS_CodeUnitSpecific_NodeJS.py,sha256=dnuDlQXThFmhe6EbUAWmGhx7AAYGL0lVUqsrhOgtmC8,6255
|
34
35
|
ScriptCollection/TFCPS/NodeJS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
ScriptCollection/TFCPS/Python/TFCPS_CodeUnitSpecific_Python.py,sha256=
|
36
|
+
ScriptCollection/TFCPS/Python/TFCPS_CodeUnitSpecific_Python.py,sha256=q7msAxCb5VIZ-xhFg1MfzUvWomQRKYldqmW42KFhyMU,6868
|
36
37
|
ScriptCollection/TFCPS/Python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
scriptcollection-4.0.
|
38
|
-
scriptcollection-4.0.
|
39
|
-
scriptcollection-4.0.
|
40
|
-
scriptcollection-4.0.
|
41
|
-
scriptcollection-4.0.
|
38
|
+
scriptcollection-4.0.18.dist-info/METADATA,sha256=eS3jPqnN076u_qN7AUrh6jK7nyJFgryIQrjjFeXWJZ8,7688
|
39
|
+
scriptcollection-4.0.18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
40
|
+
scriptcollection-4.0.18.dist-info/entry_points.txt,sha256=EBRDrnGDURysHNyK0Z0fPCnL7uCCO_Mxc6WYJ47KxAI,4234
|
41
|
+
scriptcollection-4.0.18.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
|
42
|
+
scriptcollection-4.0.18.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|