Nuitka-winsvc 2.5.1__cp311-cp311-win_amd64.whl → 2.5.6__cp311-cp311-win_amd64.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.
Potentially problematic release.
This version of Nuitka-winsvc might be problematic. Click here for more details.
- {Nuitka_winsvc-2.5.1.dist-info → Nuitka_winsvc-2.5.6.dist-info}/METADATA +55 -109
- {Nuitka_winsvc-2.5.1.dist-info → Nuitka_winsvc-2.5.6.dist-info}/RECORD +50 -49
- {Nuitka_winsvc-2.5.1.dist-info → Nuitka_winsvc-2.5.6.dist-info}/WHEEL +1 -1
- nuitka/OptionParsing.py +6 -5
- nuitka/Options.py +14 -5
- nuitka/Version.py +1 -1
- nuitka/build/SconsInterface.py +2 -0
- nuitka/build/include/nuitka/constants.h +2 -0
- nuitka/build/include/nuitka/helper/dictionaries.h +10 -2
- nuitka/build/include/nuitka/helper/tuples.h +12 -0
- nuitka/build/include/nuitka/prelude.h +1 -0
- nuitka/build/static_src/CompiledCodeHelpers.c +2 -0
- nuitka/build/static_src/CompiledCoroutineType.c +1 -1
- nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +32 -23
- nuitka/build/static_src/HelpersBuiltin.c +1 -1
- nuitka/build/static_src/HelpersDeepcopy.c +1 -0
- nuitka/build/static_src/HelpersDictionaries.c +14 -2
- nuitka/build/static_src/HelpersDictionariesGenerated.c +12 -1
- nuitka/build/static_src/HelpersFiles.c +1 -1
- nuitka/build/static_src/HelpersTuples.c +1 -1
- nuitka/build/static_src/MainProgram.c +24 -3
- nuitka/code_generation/templates/CodeTemplatesVariables.py +23 -20
- nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +4 -1
- nuitka/freezer/ImportDetection.py +4 -1
- nuitka/freezer/IncludedDataFiles.py +10 -1
- nuitka/freezer/Onefile.py +1 -0
- nuitka/nodes/BuiltinIteratorNodes.py +1 -1
- nuitka/nodes/DictionaryNodes.py +1 -1
- nuitka/nodes/VariableAssignNodes.py +2 -1
- nuitka/nodes/shapes/IteratorShapes.py +71 -0
- nuitka/nodes/shapes/ShapeMixins.py +3 -2
- nuitka/nodes/shapes/StandardShapes.py +1 -50
- nuitka/plugins/Plugins.py +10 -0
- nuitka/plugins/standard/DllFilesPlugin.py +78 -2
- nuitka/plugins/standard/ImplicitImports.py +4 -2
- nuitka/plugins/standard/MatplotlibPlugin.py +1 -1
- nuitka/plugins/standard/OptionsNannyPlugin.py +5 -4
- nuitka/plugins/standard/TkinterPlugin.py +23 -3
- nuitka/plugins/standard/standard.nuitka-package.config.yml +65 -11
- nuitka/tools/environments/Virtualenv.py +13 -5
- nuitka/tools/podman/__main__.py +4 -2
- nuitka/utils/FileOperations.py +4 -1
- nuitka/utils/Hashing.py +5 -1
- nuitka/utils/SharedLibraries.py +24 -0
- nuitka/utils/Signing.py +9 -1
- {Nuitka_winsvc-2.5.1.data → Nuitka_winsvc-2.5.6.data}/scripts/nuitka-run.cmd +0 -0
- {Nuitka_winsvc-2.5.1.data → Nuitka_winsvc-2.5.6.data}/scripts/nuitka.cmd +0 -0
- {Nuitka_winsvc-2.5.1.dist-info → Nuitka_winsvc-2.5.6.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.5.1.dist-info → Nuitka_winsvc-2.5.6.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.5.1.dist-info → Nuitka_winsvc-2.5.6.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Nuitka-winsvc
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.6
|
|
4
4
|
Summary: Nuitka but support compile as Windows service
|
|
5
5
|
Home-page: https://github.com/tabris17/Nuitka-winsvc
|
|
6
6
|
Author: tabris17
|
|
@@ -42,111 +42,57 @@ License-File: LICENSE.txt
|
|
|
42
42
|
Requires-Dist: ordered-set>=4.1.0
|
|
43
43
|
Requires-Dist: zstandard>=0.15
|
|
44
44
|
|
|
45
|
-
# Nuitka-winsvc User Manual
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
Additional command line arguments that will be passed to the service, such as `--config config.json --output output.log` .
|
|
100
|
-
|
|
101
|
-
- `--windows-service-install`
|
|
102
|
-
|
|
103
|
-
Windows service installation command-line argument. Default value is `install` .
|
|
104
|
-
|
|
105
|
-
- `--windows-service-uninstall`
|
|
106
|
-
|
|
107
|
-
Windows service uninstallation command-line argument. Default value is `uninstall` .
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
Use the following command to build a Windows service:
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
```shell
|
|
116
|
-
|
|
117
|
-
python -m nuitka --onefile --output-dir=build --windows-service --windows-service-name=myservice --windows-service-display-name="My Service" --windows-service-description="This is the description of my service" --windows-service-cmdline="-c config.yml -o output.log" --windows-service-install=install --windows-service-uninstall=uninstall main.py
|
|
118
|
-
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
When the python program is compiled successfully, you can use the following command to install the service:
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
```shell
|
|
128
|
-
|
|
129
|
-
.\main.exe install
|
|
130
|
-
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
Also you can use the following command to uninstall the service:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
```shell
|
|
140
|
-
|
|
141
|
-
.\main.exe uninstall
|
|
142
|
-
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
Note: Administrator privileges is required when installing and uninstalling the Windows services. You should run the above commands as administrator.
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
The compiled EXE executable file can be run both as a Windows service and as a regular Windows program. However, it is important to note that the Windows service installation and uninstallation command-line arguments which specified by `--windows-service-install` and `--windows-service-uninstall` of Nuitka-winsvc compilation arguments will override the original behavior of the program. Therefore, the compiled Python program should avoid using the same command line arguments.
|
|
152
|
-
|
|
45
|
+
# Nuitka-winsvc User Manual
|
|
46
|
+
|
|
47
|
+
  
|
|
48
|
+
|
|
49
|
+
Nuitka-winsvc is a forked version of Nuitka, it supports compiling EXE as a Windows service.
|
|
50
|
+
|
|
51
|
+
## Install
|
|
52
|
+
|
|
53
|
+
You can install Nuitka-winsvc by pip:
|
|
54
|
+
|
|
55
|
+
```shell
|
|
56
|
+
pip install nuitka-winsvc
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Usage
|
|
60
|
+
|
|
61
|
+
In addition to supporting all the command line arguments of Nuitka, Nuitka-winsvc also provides 7 additional arguments for compiling the Windows services:
|
|
62
|
+
|
|
63
|
+
- `--windows-service`
|
|
64
|
+
Enable Windows service mode, works only when compiling for Windows and **onefile** mode enabled.
|
|
65
|
+
- `--windows-service-name`
|
|
66
|
+
Name of the Windows service. If not provided, the target program name will be used as the service name.
|
|
67
|
+
- `--windows-service-display-name`
|
|
68
|
+
Display name of the Windows service. If not provided, the product name will be attempted to use.
|
|
69
|
+
- `--windows-service-description`
|
|
70
|
+
Description of the Windows service. If not provided, the file description will be attempted to use.
|
|
71
|
+
- `--windows-service-cmdline`
|
|
72
|
+
Additional command line arguments that will be passed to the service, such as `--config config.json --output output.log` .
|
|
73
|
+
- `--windows-service-install`
|
|
74
|
+
Windows service installation command-line argument. Default value is `install` .
|
|
75
|
+
- `--windows-service-uninstall`
|
|
76
|
+
Windows service uninstallation command-line argument. Default value is `uninstall` .
|
|
77
|
+
|
|
78
|
+
Use the following command to build a Windows service:
|
|
79
|
+
|
|
80
|
+
```shell
|
|
81
|
+
python -m nuitka --onefile --output-dir=build --windows-service --windows-service-name=myservice --windows-service-display-name="My Service" --windows-service-description="This is the description of my service" --windows-service-cmdline="-c config.yml -o output.log" --windows-service-install=install --windows-service-uninstall=uninstall main.py
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
When the python program is compiled successfully, you can use the following command to install the service:
|
|
85
|
+
|
|
86
|
+
```shell
|
|
87
|
+
.\main.exe install
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Also you can use the following command to uninstall the service:
|
|
91
|
+
|
|
92
|
+
```shell
|
|
93
|
+
.\main.exe uninstall
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Note: Administrator privileges is required when installing and uninstalling the Windows services. You should run the above commands as administrator.
|
|
97
|
+
|
|
98
|
+
The compiled EXE executable file can be run both as a Windows service and as a regular Windows program. However, it is important to note that the Windows service installation and uninstallation command-line arguments which specified by `--windows-service-install` and `--windows-service-uninstall` of Nuitka-winsvc compilation arguments will override the original behavior of the program. Therefore, the compiled Python program should avoid using the same command line arguments.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
Nuitka_winsvc-2.5.
|
|
2
|
-
Nuitka_winsvc-2.5.
|
|
1
|
+
Nuitka_winsvc-2.5.6.data/scripts/nuitka-run.cmd,sha256=ymcs9S9XtjCwZ7-oOj1gLisLaIj8uIxn-1mb0mTxWUI,924
|
|
2
|
+
Nuitka_winsvc-2.5.6.data/scripts/nuitka.cmd,sha256=G-3yCOmURvmaYtciOLW4cMRGEcutzcsea4qDJqfezg0,1061
|
|
3
3
|
nuitka/Builtins.py,sha256=zO35j6fANpINkM9xzesgcB23akNqmK14SmseoM-YlPQ,8374
|
|
4
4
|
nuitka/BytecodeCaching.py,sha256=KFVx1wDKEG8bydgerI6k2YK6VXIZLmTfMxgZmUhkBWo,5787
|
|
5
5
|
nuitka/Bytecodes.py,sha256=BFKfgzCHUb8-qs1VZcjaKpCwBMt7UKgkT8POEsYljLQ,3891
|
|
@@ -9,8 +9,8 @@ nuitka/Errors.py,sha256=Yw8-RTf7SEel-0ddEQAcvM9MwF6Es-l1X9wOkPRuEQg,2570
|
|
|
9
9
|
nuitka/HardImportRegistry.py,sha256=fH1OH8k1LlOGMqeYMLWEz6IdRZVEyffcvDTTh5DMo88,12278
|
|
10
10
|
nuitka/MainControl.py,sha256=4rKa2IrOLq95gymEfBgp_FdEzVcfTCsgMJRxkAgk4yw,39288
|
|
11
11
|
nuitka/ModuleRegistry.py,sha256=z1kdwF6DABgfu06I_KjoUmNHOx4PYd0rQpUwNYp92Fk,9122
|
|
12
|
-
nuitka/OptionParsing.py,sha256=
|
|
13
|
-
nuitka/Options.py,sha256=
|
|
12
|
+
nuitka/OptionParsing.py,sha256=6IWwq3jHqMti9DhC4ijs_fq_7j1GTvmCD_Zh7aGqlLU,67244
|
|
13
|
+
nuitka/Options.py,sha256=6udVjvwOVIP1osRX9ZmltMZ_fxVcWYrt8jTVIubFkPU,83674
|
|
14
14
|
nuitka/OutputDirectories.py,sha256=J7XeMbp61EXMfqcfQYqlTY4V9P_3iXvHsGzItFr1i3Q,5649
|
|
15
15
|
nuitka/PostProcessing.py,sha256=S2z1vWsZUZHqrXhiV3_oBkf2VnDK4yYFx-G-1MwpRSk,16721
|
|
16
16
|
nuitka/Progress.py,sha256=zg9eXYIX7BaDmFimyw2g9iqa0k-JHX6EHM7c7lYS0RI,7279
|
|
@@ -22,7 +22,7 @@ nuitka/SourceCodeReferences.py,sha256=quGcd9Kg3FjYwsSDDv49MWi_Yec2AurRp-cVspo5qq
|
|
|
22
22
|
nuitka/Tracing.py,sha256=VlNFbHJJoFLBssyzr9fZ9PBN79xVgRswS5w-9_sRn28,15351
|
|
23
23
|
nuitka/TreeXML.py,sha256=KGsCEB9Tu1HUNQd10AMWoYX82Qxso_DUfoiet4AiRoc,3654
|
|
24
24
|
nuitka/Variables.py,sha256=53u-p0l58lrBg8nNSYd5DjR3AOGezMayUM7C05vANVM,15470
|
|
25
|
-
nuitka/Version.py,sha256=
|
|
25
|
+
nuitka/Version.py,sha256=TvL1T2U1x0_aqSwtLhRdQfyaW8J4c4ez0f252hbtk7Y,2466
|
|
26
26
|
nuitka/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
27
27
|
nuitka/__main__.py,sha256=dp8HcyiviRrEVm1OWjffOIy0DvkT4iW8R9wCjGpxwT8,7810
|
|
28
28
|
nuitka/__past__.py,sha256=c9HaNn4DHQU3x1ip7aVSzdQqNAzDojYmr2KfMHbqmSQ,5739
|
|
@@ -33,7 +33,7 @@ nuitka/build/Onefile.scons,sha256=KULKbd0Wkt5cx_o_lrA5QThSNX8DW_erd11zb958UWY,18
|
|
|
33
33
|
nuitka/build/SconsCaching.py,sha256=NxE37QbPkFvcujBrXQfObK66AQQlK6oPOC7VUfW8dNA,16029
|
|
34
34
|
nuitka/build/SconsCompilerSettings.py,sha256=OTqrJX7EcKwhHqmliu6rzqqhJX0BiZ8U6NNUpRJySpc,36898
|
|
35
35
|
nuitka/build/SconsHacks.py,sha256=KvcjESBRMRcwAWZN5S09JbZNs9WAc7HvPXIiRRgJE0c,5802
|
|
36
|
-
nuitka/build/SconsInterface.py,sha256=
|
|
36
|
+
nuitka/build/SconsInterface.py,sha256=eKBP9xcOQOmmtJXsMaZfVcXYSM24jOcfRJoGypn3LUE,18733
|
|
37
37
|
nuitka/build/SconsProgress.py,sha256=Zc0Gp2meURGXDK9RMcTb3MBH0wRW51625__y7u8fFa8,2703
|
|
38
38
|
nuitka/build/SconsSpawn.py,sha256=g2BzLuCeIMpt5OHYK7jelyRgm8QlHQxoCKA33mg3y4g,13210
|
|
39
39
|
nuitka/build/SconsUtils.py,sha256=XAfHMeqMAek_1K9krzpBJjQnI4aBN7j1sutIduatUQc,27648
|
|
@@ -50,7 +50,7 @@ nuitka/build/include/nuitka/compiled_frame.h,sha256=CtkGgFscZgzsrqw4-kYABBQvYfNa
|
|
|
50
50
|
nuitka/build/include/nuitka/compiled_function.h,sha256=lbJqaARKBjNdjO4nR7fYeueeM2MvGEqnxcpBe24SV8I,7520
|
|
51
51
|
nuitka/build/include/nuitka/compiled_generator.h,sha256=QzHMQYYpuA__g-ZT86GFBE32MpF_xpJ9ag9RmYY4SM0,9189
|
|
52
52
|
nuitka/build/include/nuitka/compiled_method.h,sha256=PPsDXuS_a_6cowagEegfAnkiLCxLXIycgWxHh73N13I,1873
|
|
53
|
-
nuitka/build/include/nuitka/constants.h,sha256=
|
|
53
|
+
nuitka/build/include/nuitka/constants.h,sha256=jZvJ-UBeJ_XvII-yurqA_ceVijwUOIy7bGA1SyKXAtE,8106
|
|
54
54
|
nuitka/build/include/nuitka/constants_blob.h,sha256=XYc-mECeFE9c0W5-FBFp6m4YsL5z9gEnTEAti_D-Huw,1345
|
|
55
55
|
nuitka/build/include/nuitka/debug_settings.h,sha256=1pj0B6BxgSsUro_eNk9LnmrZG-vjnIftPGTw5f9tuVA,1755
|
|
56
56
|
nuitka/build/include/nuitka/environment_variables.h,sha256=aOFTFH_mpvXvqaVM0AUdCeqY82-0M9N24KbP5JXXmUg,1187
|
|
@@ -64,7 +64,7 @@ nuitka/build/include/nuitka/helpers.h,sha256=3OaWJ5GgTN2kvrrc4DeU3f1rgWa44ZLb9xD
|
|
|
64
64
|
nuitka/build/include/nuitka/importing.h,sha256=bY-c5SlSFmpQEeY6Q-dc8oHjefzvr2YYN8R9eWkk8gc,6268
|
|
65
65
|
nuitka/build/include/nuitka/incbin.h,sha256=TRcdv5KUprIKXyKr4SBYFvOVFdIKWm_dyfdlEYxqJMM,12979
|
|
66
66
|
nuitka/build/include/nuitka/jit_sources.h,sha256=DzJmqlSa-68fDQi7vFdZcNY64-Zv4SuvALrbVjvjheY,1086
|
|
67
|
-
nuitka/build/include/nuitka/prelude.h,sha256=
|
|
67
|
+
nuitka/build/include/nuitka/prelude.h,sha256=HaKXrVUmtZgcFIRQY3sVTg1OVx-bFwXRh32nwPMKCWY,17984
|
|
68
68
|
nuitka/build/include/nuitka/printing.h,sha256=VxJUrt2-A5DE_lfEml-Weg_RRld4lhKVOiB1qrZAMcg,3397
|
|
69
69
|
nuitka/build/include/nuitka/python_pgo.h,sha256=1gJNr_iGYPVCLWJ212GQJRuk_XreLysUXRd-anGwbNU,1811
|
|
70
70
|
nuitka/build/include/nuitka/safe_string_ops.h,sha256=b-PSnlG7cCk4sygpu4xq5glvHR9jWO0ct7891ixsNX0,2421
|
|
@@ -90,7 +90,7 @@ nuitka/build/include/nuitka/helper/comparisons_le.h,sha256=MoFrqZv5HC_xD9vaCqFwZ
|
|
|
90
90
|
nuitka/build/include/nuitka/helper/comparisons_lt.h,sha256=zX17DvHqBw3mg6QfukSwOxIt5rg4aPKzYxZxA4R2_dI,13168
|
|
91
91
|
nuitka/build/include/nuitka/helper/comparisons_ne.h,sha256=Upq1RN8b7ia32WkpKjv6lxSK8Vk7yoQyk4rt0qR6v0E,10645
|
|
92
92
|
nuitka/build/include/nuitka/helper/complex.h,sha256=m8QPtwfbFNMS7xL7YMGG-RnedCSDrk5bQxq6JP2k8YA,1834
|
|
93
|
-
nuitka/build/include/nuitka/helper/dictionaries.h,sha256=
|
|
93
|
+
nuitka/build/include/nuitka/helper/dictionaries.h,sha256=5ddXAAr6yAfOvJzyPDEYwLMcbL9aTYSVdaOXuzBDTYQ,15313
|
|
94
94
|
nuitka/build/include/nuitka/helper/floats.h,sha256=rX8nMviCcox-CJFnaxN-SH4iRl-Oj9i_Ti116Gh9_Qg,1235
|
|
95
95
|
nuitka/build/include/nuitka/helper/import_hard.h,sha256=VUanLlUDVe2Zbzg_KgJwUHmDhh-daSGFL6Xhb3W_-m8,4401
|
|
96
96
|
nuitka/build/include/nuitka/helper/indexes.h,sha256=UKZFHrE3DIuvINky2KFgILtNhA6BdtoG6g-C73J2-vM,1827
|
|
@@ -139,7 +139,7 @@ nuitka/build/include/nuitka/helper/sets.h,sha256=FaGK8nqWrRVraag_f9_g0ScUd_AA8Xo
|
|
|
139
139
|
nuitka/build/include/nuitka/helper/slices.h,sha256=fuaj73F7RhdrH0VaVxLERLcpjiNcOyBlv7gXeTYVueE,9114
|
|
140
140
|
nuitka/build/include/nuitka/helper/strings.h,sha256=nK_lqZkoRprTBaUtUrPQLe9rAV4SiGOS43gg6bYty7k,1363
|
|
141
141
|
nuitka/build/include/nuitka/helper/subscripts.h,sha256=zDs83eXjH5YQng0Wj05DTdW9p5FCihoclAAr8grC19w,12844
|
|
142
|
-
nuitka/build/include/nuitka/helper/tuples.h,sha256=
|
|
142
|
+
nuitka/build/include/nuitka/helper/tuples.h,sha256=9bceEv6veE1hHOFLx1MdFmhq8cu-kJ9GhjGu1zFwm8s,7166
|
|
143
143
|
nuitka/build/inline_copy/appdirs/LICENSE.txt,sha256=Nt200KdFqTqyAyA9cZCBSxuJcn0lTK_0jHp6-71HAAs,1097
|
|
144
144
|
nuitka/build/inline_copy/appdirs/appdirs.py,sha256=i14Bgt4Rt1iL9mvq_wFlfLBxChZOQK7B8_GvU8cJpRM,24824
|
|
145
145
|
nuitka/build/inline_copy/atomicwrites/LICENSE,sha256=h4Mp8L2HitAVEpzovagvSB6G7C6Agx6QnA1nFx2SLnM,1069
|
|
@@ -428,16 +428,16 @@ nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.h,sha256=Tsd32XLg
|
|
|
428
428
|
nuitka/build/inline_copy/zstd/decompress/zstd_decompress_internal.h,sha256=2Dw1AaKzodgE564IrcIIn4C8w_CE59iKLA4fUSuslBg,7906
|
|
429
429
|
nuitka/build/static_src/CompiledAsyncgenType.c,sha256=ybTTdEnXM278Fk6gfheFc91KwSgL3lV0nodMMFODemE,84108
|
|
430
430
|
nuitka/build/static_src/CompiledCellType.c,sha256=-d1zroznVqvlV9xPzmGg-55F8AbfHwBAbcz88m9uzLs,9239
|
|
431
|
-
nuitka/build/static_src/CompiledCodeHelpers.c,sha256=
|
|
432
|
-
nuitka/build/static_src/CompiledCoroutineType.c,sha256=
|
|
431
|
+
nuitka/build/static_src/CompiledCodeHelpers.c,sha256=NLRCnBP6Urc7SXX8C09GrYGs5LDUGUqI-76xinZnX0Q,61487
|
|
432
|
+
nuitka/build/static_src/CompiledCoroutineType.c,sha256=449cm5o_fh-lq31oIBKtlPiL__xq9vCWnkrXmBM8N6k,72867
|
|
433
433
|
nuitka/build/static_src/CompiledFrameType.c,sha256=R1V32zSQEILUSTX7yy0RWgDCDeW1Bprp_qTvNFfJXMg,43638
|
|
434
434
|
nuitka/build/static_src/CompiledFunctionType.c,sha256=BMZ--rES9ITBR0piMcD9DnWmEKdhwv9fKK3okUzz2dg,113715
|
|
435
435
|
nuitka/build/static_src/CompiledGeneratorType.c,sha256=uEPlYkPZ1WFUF2r5fbIRbWxexTiQcRNVmOd-gRftpEA,67924
|
|
436
|
-
nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c,sha256=
|
|
436
|
+
nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c,sha256=hvnUAGFCqu45BmF-xZvQ-Dk-WjuoKbmMyQcLqVdmP74,69760
|
|
437
437
|
nuitka/build/static_src/CompiledMethodType.c,sha256=rtCt3el6Y6ePMWGWEMpEj8jzsEms2hD87MP2wK443xg,22434
|
|
438
438
|
nuitka/build/static_src/HelpersAllocator.c,sha256=ZMjC5728AzaEP1tUf9g1NeRYq2MVzBT07qOlJDzVLJc,28013
|
|
439
439
|
nuitka/build/static_src/HelpersAttributes.c,sha256=vAFjx534gyT1HPsI4ekwW5B20CmeYvE4rzlBUGGoOUg,36936
|
|
440
|
-
nuitka/build/static_src/HelpersBuiltin.c,sha256=
|
|
440
|
+
nuitka/build/static_src/HelpersBuiltin.c,sha256=eFXcx3M7U0_d9Wm9oUN_8_Gv0jlFs6RgnWWtzk1pCuk,24437
|
|
441
441
|
nuitka/build/static_src/HelpersBuiltinTypeMethods.c,sha256=8KT1Naoot64WipECnnE9iGxFsy4QdEKlLRidJYcxrdI,114017
|
|
442
442
|
nuitka/build/static_src/HelpersBytes.c,sha256=dH8NhgJMch4qb09uKkm6KBhyVgPv72oXbGse7A-e9O4,3066
|
|
443
443
|
nuitka/build/static_src/HelpersCalling.c,sha256=4N_pffsUTCzgIXevh20fBLzLgdh5TGFNC1WzXI4Vtis,13587
|
|
@@ -459,14 +459,14 @@ nuitka/build/static_src/HelpersComparisonLt.c,sha256=gc-Puj_zTHRg0bVzuczGEcTA-e7
|
|
|
459
459
|
nuitka/build/static_src/HelpersComparisonNe.c,sha256=BePDyFzqWF5IKxz8Hp5sUsWTQCNMpyorlhEd4_JACu0,319192
|
|
460
460
|
nuitka/build/static_src/HelpersConsole.c,sha256=GGkCZvZLae7o0MxjqI-o14CEwimNH61WpPvjcIFZuXs,4741
|
|
461
461
|
nuitka/build/static_src/HelpersConstantsBlob.c,sha256=Vlaw_wn6Io09XjngrJ5HPwte34y3CmiiqlnSSKSgRMc,36120
|
|
462
|
-
nuitka/build/static_src/HelpersDeepcopy.c,sha256=
|
|
463
|
-
nuitka/build/static_src/HelpersDictionaries.c,sha256=
|
|
464
|
-
nuitka/build/static_src/HelpersDictionariesGenerated.c,sha256=
|
|
462
|
+
nuitka/build/static_src/HelpersDeepcopy.c,sha256=TkX6lT-tuL9LDji-K4BFcJQihMcntbvHBBm0siBP2rI,20383
|
|
463
|
+
nuitka/build/static_src/HelpersDictionaries.c,sha256=9f-howpwgX_Jv014C20mGovx9exnYsWzWevWlT-oeJ8,45154
|
|
464
|
+
nuitka/build/static_src/HelpersDictionariesGenerated.c,sha256=le8RJSbpWFxgqN9wjFqjQudHyfmFABzY8kk-nOL4mNI,24991
|
|
465
465
|
nuitka/build/static_src/HelpersDumpBacktraces.c,sha256=YLLaUz69cqK1D6H-7WsN6bXgPiLZXvOfB2p8c-E0UjM,2066
|
|
466
466
|
nuitka/build/static_src/HelpersEnvironmentVariables.c,sha256=NFeGsWd6Z8TgvtbAWAITXK0fSOnoDPjbywjQpbo4j5k,2194
|
|
467
467
|
nuitka/build/static_src/HelpersEnvironmentVariablesSystem.c,sha256=gH3eizvT_9-hagDwFkHl5I2lxxIVa4G7GQkRJQSY7yY,2979
|
|
468
468
|
nuitka/build/static_src/HelpersExceptions.c,sha256=lyPOvEl0rZQ19mLAnu4lb-wftSdTYOUtvioxkev6vtc,9859
|
|
469
|
-
nuitka/build/static_src/HelpersFiles.c,sha256=
|
|
469
|
+
nuitka/build/static_src/HelpersFiles.c,sha256=WN4nL72mTEDj__zkxX7sdzKE4R4m7RIWfHmjmaY9tDM,10292
|
|
470
470
|
nuitka/build/static_src/HelpersFilesystemPaths.c,sha256=rQ66z6vBrzktpOUoC3myQjLyOjMgUge5GbtW05qRz2Y,30635
|
|
471
471
|
nuitka/build/static_src/HelpersFloats.c,sha256=0Gq3_hD25Jsg7WClqsq1o0f0JSDg--ROBON9oKoUIoU,2719
|
|
472
472
|
nuitka/build/static_src/HelpersHeapStorage.c,sha256=UKucPIeZlW6sbzKnm2A9QKYTkKcv-jIJs2GDgsopsCc,1837
|
|
@@ -520,10 +520,10 @@ nuitka/build/static_src/HelpersSafeStrings.c,sha256=F2WzY-50zwzMhAGYWzVT_NgA_pPc
|
|
|
520
520
|
nuitka/build/static_src/HelpersSequences.c,sha256=tOnjrArZHPfQMcjrRDuRukDNtPl-Ohb-XH67BA0X8bg,3766
|
|
521
521
|
nuitka/build/static_src/HelpersSlices.c,sha256=cNCJUMPMY9BnEhK8fTSNnuSaf0NXnrSHo2c_B_5tGeg,2233
|
|
522
522
|
nuitka/build/static_src/HelpersStrings.c,sha256=m5jHLSe3uVs_LIpXSih5jrcY7UZKE6BVs46gbJg4Yro,32308
|
|
523
|
-
nuitka/build/static_src/HelpersTuples.c,sha256=
|
|
523
|
+
nuitka/build/static_src/HelpersTuples.c,sha256=r_OYbne_74ZfuO6ECKRhb82lvkCjs3enqdKwIrUgUac,4484
|
|
524
524
|
nuitka/build/static_src/HelpersTypes.c,sha256=a6OTAlXhapuhZVjXF0Pu4iF8TGhmusg28Dkd03WBiCg,9956
|
|
525
525
|
nuitka/build/static_src/InspectPatcher.c,sha256=mQ0U_CyOC8I06X7DJ4qeDimFEljb2WHngB-Kf-qDwQ0,14752
|
|
526
|
-
nuitka/build/static_src/MainProgram.c,sha256=
|
|
526
|
+
nuitka/build/static_src/MainProgram.c,sha256=pYw8MWXJqZ2AlA5n98FIhffPiRv88NF4SlOSQqCz1zI,61275
|
|
527
527
|
nuitka/build/static_src/MetaPathBasedLoader.c,sha256=ySWRGooFul7qCRlB7wW3yY9BTqsDipPpm4z3-65SJXQ,66888
|
|
528
528
|
nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c,sha256=Ja17tBwGgt6jVF8Hr8Wvhx0NKarqJ6IL7d149latRR0,5082
|
|
529
529
|
nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c,sha256=K5zaC-z7r47DZiQbn4-aYvmm0AEYd3hCAeXw8Xtw9ew,6651
|
|
@@ -618,7 +618,7 @@ nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py,sha256=fQzX4t
|
|
|
618
618
|
nuitka/code_generation/templates/CodeTemplatesIterators.py,sha256=pxuPB5eanNMDAmu9O2Z31hodG3QeXf3iQ1ALTlBZXvE,1322
|
|
619
619
|
nuitka/code_generation/templates/CodeTemplatesLoader.py,sha256=W19mYZeYH-i-09A-_lgTomBPSVEr78D0JnTHo8cRm5c,4565
|
|
620
620
|
nuitka/code_generation/templates/CodeTemplatesModules.py,sha256=ZcLn4qZcqvTVer9P1Dp76PIbG2x0h23IC3DtBKRaFdo,24451
|
|
621
|
-
nuitka/code_generation/templates/CodeTemplatesVariables.py,sha256=
|
|
621
|
+
nuitka/code_generation/templates/CodeTemplatesVariables.py,sha256=xHuifeMcPej36LlpsaaCVQUDDISR3MC0RHDNp6me7M4,9711
|
|
622
622
|
nuitka/code_generation/templates/TemplateDebugWrapper.py,sha256=aeOpufKeOR3iMo63-FK_akKVwb_aNEo_I9ASB2GLmhs,2507
|
|
623
623
|
nuitka/code_generation/templates/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
624
624
|
nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2,sha256=IGHjZbG7zOBxvtJcONdUGl0K3ac78z-dOVausmXBoV8,11328
|
|
@@ -628,7 +628,7 @@ nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2,s
|
|
|
628
628
|
nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2,sha256=LMuXCksYKYkUMtQFQIXgWsGLbaQtd411eGGgoEQo_VE,1786
|
|
629
629
|
nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2,sha256=wmRgvJovR7wcMi8SKs28Y02zBdzD0K7JCH5NGPxXsGc,1723
|
|
630
630
|
nuitka/code_generation/templates_c/HelperBuiltinMethodOperation.c.j2,sha256=fgZJV0AO6OHstHYHhTB5tNn8j5qKkh3z-CG0JbkJgzI,2706
|
|
631
|
-
nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2,sha256=
|
|
631
|
+
nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2,sha256=5rTC1ehA3MJx_QdQh0hPWF-_zMy_VWv6spsSh071bQI,11700
|
|
632
632
|
nuitka/code_generation/templates_c/HelperImportHard.c.j2,sha256=6-Y6etGWI0DARqYkTKWdo6vorultjIc10cC6AxxhRuk,1885
|
|
633
633
|
nuitka/code_generation/templates_c/HelperLongTools.c.j2,sha256=IFnaVk2aVTcLxrQ_e1pULHu2BqqE96MRNseiUy4HjyA,2639
|
|
634
634
|
nuitka/code_generation/templates_c/HelperObjectTools.c.j2,sha256=o2IUY-5CvKBQsktuf4yMhhg8GWQaAwP20oPPVrSKFeE,1394
|
|
@@ -672,10 +672,10 @@ nuitka/freezer/DllDependenciesCommon.py,sha256=uZkJ4tpvzZ_vHDud0sOuI-GiqWu0R-Y0w
|
|
|
672
672
|
nuitka/freezer/DllDependenciesMacOS.py,sha256=iICdzQhTwW31qCzr7VZLmItM13NCYp547Y6m8xFk21c,16063
|
|
673
673
|
nuitka/freezer/DllDependenciesPosix.py,sha256=FKzKDuVAViqI00CfADzqgYAJZqB416VaSS-MtApjjJs,7468
|
|
674
674
|
nuitka/freezer/DllDependenciesWin32.py,sha256=mc36rhnpGvPnwZRNTi5otD_mCowB2EtSQZsint5w0hM,7217
|
|
675
|
-
nuitka/freezer/ImportDetection.py,sha256=
|
|
676
|
-
nuitka/freezer/IncludedDataFiles.py,sha256=
|
|
675
|
+
nuitka/freezer/ImportDetection.py,sha256=Dt1sholb8bHod-rGpFe2TLtdlbvq3Yxjs5G-Cpt8IVU,12342
|
|
676
|
+
nuitka/freezer/IncludedDataFiles.py,sha256=VXN9bxNcios-jsJTPzYDj3DczrjnCJM0Zs16fDC2cWE,20903
|
|
677
677
|
nuitka/freezer/IncludedEntryPoints.py,sha256=6BtJZt-olpVCtw9Jdg1mu2-UsfZcqWgrCSbr5UWxa3I,12162
|
|
678
|
-
nuitka/freezer/Onefile.py,sha256=
|
|
678
|
+
nuitka/freezer/Onefile.py,sha256=0u9pdzgNeLea9JLEHaEIA8fyyD0ejWov4BP2EJY7kwc,10588
|
|
679
679
|
nuitka/freezer/Standalone.py,sha256=y3cWFqrONh8MqPX-7m-lfO0PuPmIXTTAxsNesokEqJs,15109
|
|
680
680
|
nuitka/freezer/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
681
681
|
nuitka/importing/IgnoreListing.py,sha256=sDR37R5N1zgqA92G0GxcXJf_b-H4eLMeinYpUu1c4Qs,11040
|
|
@@ -700,7 +700,7 @@ nuitka/nodes/BuiltinFormatNodes.py,sha256=aBkjrDU7PC2cncrIZ6k_7yze2HmaX3lYNcqlTC
|
|
|
700
700
|
nuitka/nodes/BuiltinHashNodes.py,sha256=XNpk9gKJaiBd7T0CCQcjsNecj5YYSKeyAudZC_HHeXw,2275
|
|
701
701
|
nuitka/nodes/BuiltinInputNodes.py,sha256=pVsu7ZCgwEC9yMeEdPGoNmt2bA9PuZ5jlSESBpCfLls,1457
|
|
702
702
|
nuitka/nodes/BuiltinIntegerNodes.py,sha256=3ylD9G5EvIYs_Eee1d5rTZt6Jyar_ncyC3uLdMSfhCs,5367
|
|
703
|
-
nuitka/nodes/BuiltinIteratorNodes.py,sha256=
|
|
703
|
+
nuitka/nodes/BuiltinIteratorNodes.py,sha256=pHZp888vRqe9SbQ9MYpIguSFyIJsFXdVV7jXTnwR5_w,12813
|
|
704
704
|
nuitka/nodes/BuiltinLenNodes.py,sha256=MwitzTIMQNIsi6UZPqUFufcn_b1xrDGTRrPlH5K5vww,2029
|
|
705
705
|
nuitka/nodes/BuiltinNextNodes.py,sha256=92XhgEq7XDI_nhR-YXmeNG4GZ_BJCFrdG9fM6MIsSzA,3639
|
|
706
706
|
nuitka/nodes/BuiltinOpenNodes.py,sha256=QNd6NpSPtl0_dMd7aHUyuzLpawjY7ndCG10CoW_YtqI,3981
|
|
@@ -723,7 +723,7 @@ nuitka/nodes/ContainerMakingNodes.py,sha256=0vec76vzLoQE4t7Q6BuCWptWVLq2RcU4dfbF
|
|
|
723
723
|
nuitka/nodes/ContainerOperationNodes.py,sha256=-GNRu6pLects-xx4tc8v38xYh4jXHurcZQvk6a9aU6I,2867
|
|
724
724
|
nuitka/nodes/CoroutineNodes.py,sha256=FFUTWalFFYj56VyyP8Q6duiEk_SYS9wRV4_OwAsro0o,4463
|
|
725
725
|
nuitka/nodes/CtypesNodes.py,sha256=h-oLM7GYTikgrD62-v_FIl11FnFkrELphRspaf4_SM8,1746
|
|
726
|
-
nuitka/nodes/DictionaryNodes.py,sha256=
|
|
726
|
+
nuitka/nodes/DictionaryNodes.py,sha256=QVG7DplQV9zBXa60aOFgjrAhDx3FYuDYFeTiXF3PrN4,51053
|
|
727
727
|
nuitka/nodes/ExceptionNodes.py,sha256=mGMGeQkcSgYjL8pk6cpySH74MN1fLucLJK8H4vOOX9I,10416
|
|
728
728
|
nuitka/nodes/ExecEvalNodes.py,sha256=jjCVPUG53FHr8i46tyPtrlTBbe-gvbitkFpPn40Xu2A,7408
|
|
729
729
|
nuitka/nodes/ExpressionBases.py,sha256=hC1JxpZ4Q3jodvpPl8N2__1k1aezgUf4e1Da02KSav4,45046
|
|
@@ -772,7 +772,7 @@ nuitka/nodes/TensorflowNodes.py,sha256=9nqpqGh3BQeKW0o0ubwM5jOvK0qklv32ry0TRhhTt
|
|
|
772
772
|
nuitka/nodes/TryNodes.py,sha256=K0ZQih6oGDKMBlZbWHNX-jsZyEUEkw3lakVmpm_aULU,17886
|
|
773
773
|
nuitka/nodes/TypeMatchNodes.py,sha256=6nl888S-7v_A2TGsDa3bAjkNi8IKd9RXwwbSTH7o2Ys,2438
|
|
774
774
|
nuitka/nodes/TypeNodes.py,sha256=T4MBVx8wWtZ5FUnocrEMCjcrjfLjcGnBiWYG-MGAVFA,12500
|
|
775
|
-
nuitka/nodes/VariableAssignNodes.py,sha256=
|
|
775
|
+
nuitka/nodes/VariableAssignNodes.py,sha256=7OlfAVdT4qg3AQr-2tZKE9RHdqwn5N7nn1gL3BZ1tco,42431
|
|
776
776
|
nuitka/nodes/VariableDelNodes.py,sha256=Gzi5kbvL36VQ1M59atKcrbasYWMt6tpjROLfaa9kKTc,10779
|
|
777
777
|
nuitka/nodes/VariableNameNodes.py,sha256=PYVvq_tN9uQkVWjpFt3K6GC6lhUzu4ATLDnh1eAJg90,4607
|
|
778
778
|
nuitka/nodes/VariableRefNodes.py,sha256=rxh1jeO9Cj009Ln_wy63smMVHql3FZ6Vk1msAnSRTZ4,32437
|
|
@@ -781,8 +781,9 @@ nuitka/nodes/YieldNodes.py,sha256=5IKeM-RjIx-EDUzXJfhJpb7aQ9qFX4tw9O1Rho1JRpI,39
|
|
|
781
781
|
nuitka/nodes/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
782
782
|
nuitka/nodes/shapes/BuiltinTypeShapes.py,sha256=vm5Yip-CQg45Sg_mdKARYrkOncLhUJWOw8iXFYUc3_Q,158411
|
|
783
783
|
nuitka/nodes/shapes/ControlFlowDescriptions.py,sha256=N_xKi3qvgY5TGXi96Ou7FmLbnMVxc_YAdBDomADow20,4420
|
|
784
|
-
nuitka/nodes/shapes/
|
|
785
|
-
nuitka/nodes/shapes/
|
|
784
|
+
nuitka/nodes/shapes/IteratorShapes.py,sha256=8s9FZeK0fNbnWahBYYNI6FL5V4-1wCyRMNY_fNsPtzY,2072
|
|
785
|
+
nuitka/nodes/shapes/ShapeMixins.py,sha256=C-4U0gi9CCrbBZomodnWYv-WzUxP4CrXM0Tswes5cdU,5667
|
|
786
|
+
nuitka/nodes/shapes/StandardShapes.py,sha256=_I4OvHmq5DpZ8i-fRZEr0ogyUqqqKaYORm9AiK0BNSs,43007
|
|
786
787
|
nuitka/nodes/shapes/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
787
788
|
nuitka/optimizations/BytecodeDemotion.py,sha256=-Uc17r6FslDtrJadEyqEkkxuUndsyC7t9KJQxtH42SQ,3435
|
|
788
789
|
nuitka/optimizations/FunctionInlining.py,sha256=vglkD0QLVFM76w5KOFIkP3A873X6_tYrfVhEIUKu2RM,3790
|
|
@@ -796,7 +797,7 @@ nuitka/optimizations/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSk
|
|
|
796
797
|
nuitka/pgo/PGO.py,sha256=9oSnX1hXeuECPOujz4vadlGI6-wFYICWjdTBrE04G9c,4932
|
|
797
798
|
nuitka/pgo/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
798
799
|
nuitka/plugins/PluginBase.py,sha256=j7JgkYp9lt7OrrEN8QWi8MT8eb1s1JWa_S9sgl7u2yc,59073
|
|
799
|
-
nuitka/plugins/Plugins.py,sha256=
|
|
800
|
+
nuitka/plugins/Plugins.py,sha256=774QqcJJg_3yddo18LzXj0F591qa2s79Pw2yG55YMeQ,64340
|
|
800
801
|
nuitka/plugins/YamlPluginBase.py,sha256=chUVAyth-W19CMBlypK66Jxk_DSZLHYx5hbdP3DBaPk,4215
|
|
801
802
|
nuitka/plugins/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
802
803
|
nuitka/plugins/standard/AntiBloatPlugin.py,sha256=6kaYPecvHxqJxnniqN-DfptrfgQC1OBgxfNX-kQl850,33942
|
|
@@ -804,18 +805,18 @@ nuitka/plugins/standard/ConsiderPyLintAnnotationsPlugin.py,sha256=IigSPpfjml4nm8
|
|
|
804
805
|
nuitka/plugins/standard/DataFilesPlugin.py,sha256=is3OmRcIbu_OsHkMM4y4DjS24BZDPRnz1CHdGzF1ZU4,11857
|
|
805
806
|
nuitka/plugins/standard/DelvewheelPlugin.py,sha256=1CJH47bsUm6mPhapRn25fqNMJHIL35uWo7rmxpQRzCE,5211
|
|
806
807
|
nuitka/plugins/standard/DillPlugin.py,sha256=HPWPBqwi6pHtoSndsTub77dq95rKrXpfkEYTpYFLZck,2679
|
|
807
|
-
nuitka/plugins/standard/DllFilesPlugin.py,sha256=
|
|
808
|
+
nuitka/plugins/standard/DllFilesPlugin.py,sha256=xPQQpzvNSLBdjvzNSwv30GDcznVrVj_1l4ewHKLMOcY,19027
|
|
808
809
|
nuitka/plugins/standard/EnumPlugin.py,sha256=pkaKlKdshT9SEXS_V25SYG-NLq-76jhsQLtcFYW8WUw,2095
|
|
809
810
|
nuitka/plugins/standard/EventletPlugin.py,sha256=Wj3YDAior_de5-d7-X7L-aE4-aTk5CX3D_TVsjZwojc,1938
|
|
810
811
|
nuitka/plugins/standard/GeventPlugin.py,sha256=_cKREOuAXiKCYpjH5fcRfRT6lHhfz0JgcYhOzMOiw2Y,1913
|
|
811
812
|
nuitka/plugins/standard/GiPlugin.py,sha256=K65v6ic34flduZZ76zP_oTX6JPmmYHS8g2_kPSEL_4o,4018
|
|
812
813
|
nuitka/plugins/standard/GlfwPlugin.py,sha256=DaWEfMhLdxzd12IqLTi4qb6R2sCAu_aQjI0cfuneZ8c,4854
|
|
813
|
-
nuitka/plugins/standard/ImplicitImports.py,sha256=
|
|
814
|
+
nuitka/plugins/standard/ImplicitImports.py,sha256=Mo8BTIUCCah6o2U5v6kQaRJBqJCijo8clQSkHoaX9n4,32518
|
|
814
815
|
nuitka/plugins/standard/KivyPlugin.py,sha256=ArwcQ8pkXjk7Ns2YHZ6iA6bUNUS08z2sD3gc7vDo0_M,5084
|
|
815
|
-
nuitka/plugins/standard/MatplotlibPlugin.py,sha256=
|
|
816
|
+
nuitka/plugins/standard/MatplotlibPlugin.py,sha256=fJdJNcI-7VBZG7zQyZzwoKV7jYWWLh1KFRLUiFc8G-Q,9419
|
|
816
817
|
nuitka/plugins/standard/MultiprocessingPlugin.py,sha256=3YstpQ6ropHudSrHQA8gn3ZqKfobbS3JrReJx1IbWK8,6650
|
|
817
818
|
nuitka/plugins/standard/NumpyPlugin.py,sha256=mAzhziM_7o-SKxnKtGp7CBhWV86Jvs5OLMbHTQNFJoE,1220
|
|
818
|
-
nuitka/plugins/standard/OptionsNannyPlugin.py,sha256=
|
|
819
|
+
nuitka/plugins/standard/OptionsNannyPlugin.py,sha256=iNgMNAD3qNuYWz4kMvNJPhlkW8plLmZFeelvXJH1QBo,6108
|
|
819
820
|
nuitka/plugins/standard/PbrPlugin.py,sha256=RtLGO3_35qrecTadPVm_IqdBmd0mNylLoMKvXD0MTx0,1940
|
|
820
821
|
nuitka/plugins/standard/PkgResourcesPlugin.py,sha256=tbW41HouryYBNcgQvdY-2P04i-rtcGhzRtYjDhQ_2OY,5144
|
|
821
822
|
nuitka/plugins/standard/PlaywrightPlugin.py,sha256=-0dPuH1Mc2ZSK96BP2yx_bsJsN47ddLwhD5vFkT5C2o,6635
|
|
@@ -824,13 +825,13 @@ nuitka/plugins/standard/PySidePyQtPlugin.py,sha256=EYUGTHX6zk4UwjNWHyseHCw89daix
|
|
|
824
825
|
nuitka/plugins/standard/PywebViewPlugin.py,sha256=CjFFrY0OxYGd845S7xA6Imy46Jk21SZlnwO0NBJKFVQ,3020
|
|
825
826
|
nuitka/plugins/standard/SpacyPlugin.py,sha256=aVek-cDsAMX__qVrJpCsx-zdc1-MSf5TJWfJ0G9ZLFw,5173
|
|
826
827
|
nuitka/plugins/standard/TensorflowPlugin.py,sha256=MPcLVye9_gDiU_lWnhNdYIeKkUGjYzjCjc5UV_XNP3E,1194
|
|
827
|
-
nuitka/plugins/standard/TkinterPlugin.py,sha256=
|
|
828
|
+
nuitka/plugins/standard/TkinterPlugin.py,sha256=B2rARI183lFpFG5xjhQdh5V910p7K4lgDn8kAO-Ey2M,12562
|
|
828
829
|
nuitka/plugins/standard/TorchPlugin.py,sha256=oFyDyz5qfWwRl6JUS-7WAReDF4TazgQQH52xq2J7zj8,1174
|
|
829
830
|
nuitka/plugins/standard/TransformersPlugin.py,sha256=H1WPYUcyNMZoGfBUHw4dsKvS-g6IC-ne5metbYZCJXs,4683
|
|
830
831
|
nuitka/plugins/standard/TrioPlugin.py,sha256=fIz_UTQfwBnl6MY4-XI4eKHPPsMeksPWYjnJU10mOb8,1107
|
|
831
832
|
nuitka/plugins/standard/UpxPlugin.py,sha256=1I3WouiEmKQAvTkzhgmJ2FRjDKHC0oH9onENntmFphg,5668
|
|
832
833
|
nuitka/plugins/standard/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
833
|
-
nuitka/plugins/standard/standard.nuitka-package.config.yml,sha256=
|
|
834
|
+
nuitka/plugins/standard/standard.nuitka-package.config.yml,sha256=bvYn57_yLyYUJxEOIKR_dODTN23xFCJKEJGCydQXwQs,273693
|
|
834
835
|
nuitka/plugins/standard/stdlib2.nuitka-package.config.yml,sha256=DRazC20zLXbc71ZMRu9kEA8N4Xe8Iry2sHNsUlbx4FE,2357
|
|
835
836
|
nuitka/plugins/standard/stdlib3.nuitka-package.config.yml,sha256=EeEuyFZpqYb0qXv5xvjB20HFuH3oPyKHHujzIssBHjs,14812
|
|
836
837
|
nuitka/plugins/standard/DillPlugin/DillPlugin.c,sha256=RbyX_UPvVZ00nN2bnIBVFoZ8xSZZ5YFJqVB6Qwg9GSo,1688
|
|
@@ -856,7 +857,7 @@ nuitka/tools/data_composer/DataComposer.py,sha256=1yKd35p08isVCQEzMB1j2EGME-ZXfP
|
|
|
856
857
|
nuitka/tools/data_composer/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
857
858
|
nuitka/tools/data_composer/__main__.py,sha256=8u-EQrjZuptJkJ8xleoHb2nhnM6s6unqMXWtUTYbbko,1338
|
|
858
859
|
nuitka/tools/environments/CreateEnvironment.py,sha256=JeZmUIK_J1UrKGlNnyia8LwSJiAhhO0WNZSiwRq4wmg,2510
|
|
859
|
-
nuitka/tools/environments/Virtualenv.py,sha256=
|
|
860
|
+
nuitka/tools/environments/Virtualenv.py,sha256=1jcoCp0yBEHiI05dTy1HqQrKx-pIPK39CxpYUmRXWWM,4822
|
|
860
861
|
nuitka/tools/environments/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
861
862
|
nuitka/tools/general/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
862
863
|
nuitka/tools/general/dll_report/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
@@ -868,7 +869,7 @@ nuitka/tools/onefile_compressor/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5o
|
|
|
868
869
|
nuitka/tools/onefile_compressor/__main__.py,sha256=0CpkELG_fCZcycpayg-QurtU2k4VzNVMi0LbhstfOeg,1343
|
|
869
870
|
nuitka/tools/podman/Podman.py,sha256=a8h7QQXUhM3IrZ2lU6htsO5wjHfod5nWXYVv04HvYbE,1905
|
|
870
871
|
nuitka/tools/podman/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
871
|
-
nuitka/tools/podman/__main__.py,sha256=
|
|
872
|
+
nuitka/tools/podman/__main__.py,sha256=qLTEbRrYtChnD8YLN_Y8lRBwjzPkDrMXXhpCF2gPWE8,11705
|
|
872
873
|
nuitka/tools/profiler/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
873
874
|
nuitka/tools/profiler/__main__.py,sha256=ZsT2pcKTVskyl-kUxVk4stG5AwZElMM-J229iGr6Zr8,2561
|
|
874
875
|
nuitka/tools/scanning/DisplayPackageDLLs.py,sha256=unC5TCdnt0K6qOWME_iVSTkPZR-_S2TZiDhxCcfE7dk,4001
|
|
@@ -942,8 +943,8 @@ nuitka/utils/CommandLineOptions.py,sha256=EmlOqsarM5jFMNRW2E1I_-fpvyXxheMd0K8Yn2
|
|
|
942
943
|
nuitka/utils/Distributions.py,sha256=FLe2NgLElmU1Y2sUP6E3l0EjrKZ6KB3qahq6vFOXEVM,16874
|
|
943
944
|
nuitka/utils/Download.py,sha256=GEksOtorR6p6xJeKhT5nx0e0XsG_dIGeiVXvOGnYLZg,6724
|
|
944
945
|
nuitka/utils/Execution.py,sha256=IIdspfj5Sv8gr23GjWP9kBgy_F4H3Q8fVPTF1wP2M1A,13792
|
|
945
|
-
nuitka/utils/FileOperations.py,sha256=
|
|
946
|
-
nuitka/utils/Hashing.py,sha256=
|
|
946
|
+
nuitka/utils/FileOperations.py,sha256=yT9gGSMPNtTwtUwNxA5l0t6cz53jFOQs7qJe_Ko7LcQ,44206
|
|
947
|
+
nuitka/utils/Hashing.py,sha256=jWaB0x47heOpRJcJ5UvyDM7x-MtuMWqWPYXelDn73A8,3870
|
|
947
948
|
nuitka/utils/Images.py,sha256=HitRj3qvpRXs2hV3V20cavcc2YZZNiyo5KawtcUCMTs,2547
|
|
948
949
|
nuitka/utils/Importing.py,sha256=riETdzHidTfi1_9hmKMbMYKbMdeDKeh0OFJOAKiH1y0,10466
|
|
949
950
|
nuitka/utils/InlineCopies.py,sha256=tX14U0lc1dm5dbVkX4UIHr2WqzI_MrK9wuHtZ_c9jYQ,1774
|
|
@@ -957,9 +958,9 @@ nuitka/utils/ModuleNames.py,sha256=h6gjzhKTr5u641BACjFckF6xnC-Xx3Xkoa3E6c1Hogs,1
|
|
|
957
958
|
nuitka/utils/PackageResources.py,sha256=V2bcBM-baCszGgnOpL8tDPqRjgAOzQ0X4bWmg8H9z9Y,1573
|
|
958
959
|
nuitka/utils/ReExecute.py,sha256=6ALIkqKCt1D39CbAPF9N4seUaRN8hybtJW1DkluK-D4,5121
|
|
959
960
|
nuitka/utils/Rest.py,sha256=zP9jjG6pOSuLKVuZbbj_Wwq1CLZ6hk16wdhHkR_m2oE,1889
|
|
960
|
-
nuitka/utils/SharedLibraries.py,sha256=
|
|
961
|
+
nuitka/utils/SharedLibraries.py,sha256=ztA_EdjVKmeM7ilzC2MuHoGj7-5mCCE9oho0DkYCDgY,25779
|
|
961
962
|
nuitka/utils/Shebang.py,sha256=6NXzMiY9gF16Pvw4FrboM3pmQPgOH5fcEdbt_5mt2Og,3698
|
|
962
|
-
nuitka/utils/Signing.py,sha256=
|
|
963
|
+
nuitka/utils/Signing.py,sha256=dxdHpbb-LzrMNun9W_1umP0ZH-NbabOy1veUm9UCgrw,3958
|
|
963
964
|
nuitka/utils/SlotMetaClasses.py,sha256=lVJokq-0XqDaNHTt9rfE_khZCQSi_BWMfDDwdwudwt8,2084
|
|
964
965
|
nuitka/utils/StaticLibraries.py,sha256=KPSm7zcFljGThkPpAykTfaeqIouBD8kexAKVR2gIiuM,6582
|
|
965
966
|
nuitka/utils/ThreadedExecutor.py,sha256=MeByXD8Rn56zdFHta8gYfn7vAgvv13R1vYsJQUAhEGY,2634
|
|
@@ -969,9 +970,9 @@ nuitka/utils/WindowsFileUsage.py,sha256=S6zm_4JQzaSyVmOoLdZDEq--SObR-CHofH4cvs__
|
|
|
969
970
|
nuitka/utils/WindowsResources.py,sha256=npt3jbcTgh1M5G6jyEv6uFqiZIf84XEea3wXQ_sXGdM,19837
|
|
970
971
|
nuitka/utils/Yaml.py,sha256=osd2K6G4XxSpzzTA-KzYoN8n2OF11zgB-4QxgJOig8M,7206
|
|
971
972
|
nuitka/utils/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
972
|
-
Nuitka_winsvc-2.5.
|
|
973
|
-
Nuitka_winsvc-2.5.
|
|
974
|
-
Nuitka_winsvc-2.5.
|
|
975
|
-
Nuitka_winsvc-2.5.
|
|
976
|
-
Nuitka_winsvc-2.5.
|
|
977
|
-
Nuitka_winsvc-2.5.
|
|
973
|
+
Nuitka_winsvc-2.5.6.dist-info/LICENSE.txt,sha256=ZWq74m8T3pVbRFjCBu74q_4GyW11rCqtYB_1vZ4rQ88,11348
|
|
974
|
+
Nuitka_winsvc-2.5.6.dist-info/METADATA,sha256=Z0f2QiVi-gfiFefqE_JSMrgNKNB6mwpHQqAOnL5Tgi8,4957
|
|
975
|
+
Nuitka_winsvc-2.5.6.dist-info/WHEEL,sha256=nkBcd8Ko0v5sEcSagm2-x_RVrb8gBSkTa8VFFZ0Mr1o,101
|
|
976
|
+
Nuitka_winsvc-2.5.6.dist-info/entry_points.txt,sha256=jeBnijqxZ4U0WpNEdtaogpNMNlv5jw8H7yMOsf2isFc,308
|
|
977
|
+
Nuitka_winsvc-2.5.6.dist-info/top_level.txt,sha256=TRrfKxSYukbo1yzTGfwyH7wVzhDpKlwQsLjhIr15yqY,7
|
|
978
|
+
Nuitka_winsvc-2.5.6.dist-info/RECORD,,
|
nuitka/OptionParsing.py
CHANGED
|
@@ -74,13 +74,14 @@ parser.add_option(
|
|
|
74
74
|
action="store",
|
|
75
75
|
dest="compilation_mode",
|
|
76
76
|
metavar="COMPILATION_MODE",
|
|
77
|
-
choices=("onefile", "standalone", "accelerated", "module"),
|
|
77
|
+
choices=("app", "onefile", "standalone", "accelerated", "module"),
|
|
78
78
|
default=None,
|
|
79
79
|
help="""\
|
|
80
80
|
Mode in which to compile. Accelerated runs in your Python
|
|
81
81
|
installation and depends on it. Standalone creates a folder
|
|
82
82
|
with an executable contained to run it. Onefile creates a
|
|
83
|
-
single executable to deploy.
|
|
83
|
+
single executable to deploy. App is onefile except on macOS
|
|
84
|
+
where it's not to be used. Default is 'accelerated'.""",
|
|
84
85
|
)
|
|
85
86
|
|
|
86
87
|
parser.add_option(
|
|
@@ -641,7 +642,7 @@ compilation_group.add_option(
|
|
|
641
642
|
"--file-reference-choice",
|
|
642
643
|
action="store",
|
|
643
644
|
dest="file_reference_mode",
|
|
644
|
-
metavar="
|
|
645
|
+
metavar="FILE_MODE",
|
|
645
646
|
choices=("original", "runtime", "frozen"),
|
|
646
647
|
default=None,
|
|
647
648
|
help="""\
|
|
@@ -660,7 +661,7 @@ compilation_group.add_option(
|
|
|
660
661
|
"--module-name-choice",
|
|
661
662
|
action="store",
|
|
662
663
|
dest="module_name_mode",
|
|
663
|
-
metavar="
|
|
664
|
+
metavar="MODULE_NAME_MODE",
|
|
664
665
|
choices=("original", "runtime"),
|
|
665
666
|
default=None,
|
|
666
667
|
help="""\
|
|
@@ -1622,7 +1623,7 @@ macos_group.add_option(
|
|
|
1622
1623
|
"--macos-app-mode",
|
|
1623
1624
|
action="store",
|
|
1624
1625
|
dest="macos_app_mode",
|
|
1625
|
-
metavar="
|
|
1626
|
+
metavar="APP_MODE",
|
|
1626
1627
|
choices=("gui", "background", "ui-element"),
|
|
1627
1628
|
default="gui",
|
|
1628
1629
|
help="""\
|
nuitka/Options.py
CHANGED
|
@@ -57,6 +57,7 @@ from nuitka.PythonVersions import (
|
|
|
57
57
|
from nuitka.utils.Execution import getExecutablePath
|
|
58
58
|
from nuitka.utils.FileOperations import (
|
|
59
59
|
getNormalizedPath,
|
|
60
|
+
getReportPath,
|
|
60
61
|
isLegalPath,
|
|
61
62
|
isPathExecutable,
|
|
62
63
|
openTextFile,
|
|
@@ -296,15 +297,13 @@ it with e.g. '{TEMP}', '{CACHE_DIR}' is recommended: '%s'"""
|
|
|
296
297
|
|
|
297
298
|
|
|
298
299
|
def _getVersionInformationValues():
|
|
299
|
-
# TODO: Might be nice if we could delay version information computation
|
|
300
|
-
# until it's actually used.
|
|
301
300
|
yield getNuitkaVersion()
|
|
302
301
|
yield "Commercial: %s" % getCommercialVersion()
|
|
303
302
|
yield "Python: %s" % sys.version.split("\n", 1)[0]
|
|
304
303
|
yield "Flavor: %s" % getPythonFlavorName()
|
|
305
304
|
if python_version >= 0x3D0:
|
|
306
305
|
yield "GIL: %s" % ("yes" if isPythonWithGil() else "no")
|
|
307
|
-
yield "Executable: %s" % sys.executable
|
|
306
|
+
yield "Executable: %s" % getReportPath(sys.executable)
|
|
308
307
|
yield "OS: %s" % getOS()
|
|
309
308
|
yield "Arch: %s" % getArchitecture()
|
|
310
309
|
|
|
@@ -494,7 +493,12 @@ Error, the Python from Windows app store is not supported.""",
|
|
|
494
493
|
Tracing.progress_logger.is_quiet = not options.show_progress
|
|
495
494
|
|
|
496
495
|
if options.compilation_mode is not None:
|
|
497
|
-
if
|
|
496
|
+
if (
|
|
497
|
+
options.is_onefile
|
|
498
|
+
or options.is_standalone
|
|
499
|
+
or options.module_mode
|
|
500
|
+
or options.macos_create_bundle
|
|
501
|
+
):
|
|
498
502
|
Tracing.options_logger.sysexit(
|
|
499
503
|
"Cannot use both '--mode=' and deprecated options that specify mode."
|
|
500
504
|
)
|
|
@@ -505,6 +509,11 @@ Error, the Python from Windows app store is not supported.""",
|
|
|
505
509
|
options.is_standalone = True
|
|
506
510
|
elif options.compilation_mode == "module":
|
|
507
511
|
options.module_mode = True
|
|
512
|
+
elif options.compilation_mode == "app":
|
|
513
|
+
if isMacOS():
|
|
514
|
+
options.macos_create_bundle = True
|
|
515
|
+
else:
|
|
516
|
+
options.is_onefile = True
|
|
508
517
|
|
|
509
518
|
# Onefile implies standalone build.
|
|
510
519
|
if options.is_onefile:
|
|
@@ -1557,7 +1566,7 @@ def getOutputFilename():
|
|
|
1557
1566
|
def getOutputPath(path):
|
|
1558
1567
|
"""Return output pathname of a given path (filename)."""
|
|
1559
1568
|
if options.output_dir:
|
|
1560
|
-
return
|
|
1569
|
+
return getNormalizedPath(os.path.join(options.output_dir, path))
|
|
1561
1570
|
else:
|
|
1562
1571
|
return path
|
|
1563
1572
|
|
nuitka/Version.py
CHANGED
nuitka/build/SconsInterface.py
CHANGED
|
@@ -472,6 +472,8 @@ def setCommonSconsOptions(options):
|
|
|
472
472
|
|
|
473
473
|
options["debug_modes"] = ",".join(Options.getDebugModeIndications())
|
|
474
474
|
|
|
475
|
+
options["deployment"] = asBoolStr(Options.isDeploymentMode())
|
|
476
|
+
|
|
475
477
|
options["no_deployment"] = ",".join(Options.getNoDeploymentIndications())
|
|
476
478
|
|
|
477
479
|
if Options.shallRunInDebugger():
|
|
@@ -143,6 +143,8 @@ extern PyObject **global_constants;
|
|
|
143
143
|
#define const_str_plain_isfile global_constants[42]
|
|
144
144
|
// 'listdir'
|
|
145
145
|
#define const_str_plain_listdir global_constants[42]
|
|
146
|
+
// 'lstat'
|
|
147
|
+
#define const_str_plain_lstat global_constants[42]
|
|
146
148
|
// 'stat'
|
|
147
149
|
#define const_str_plain_stat global_constants[42]
|
|
148
150
|
// 'basename'
|