Nuitka-winsvc 2.3.3__cp311-cp311-win_amd64.whl → 2.3.9__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.

Files changed (50) hide show
  1. {Nuitka_winsvc-2.3.3.dist-info → Nuitka_winsvc-2.3.9.dist-info}/METADATA +1 -1
  2. {Nuitka_winsvc-2.3.3.dist-info → Nuitka_winsvc-2.3.9.dist-info}/RECORD +50 -29
  3. {Nuitka_winsvc-2.3.3.dist-info → Nuitka_winsvc-2.3.9.dist-info}/WHEEL +1 -1
  4. nuitka/Options.py +1 -1
  5. nuitka/PythonFlavors.py +15 -0
  6. nuitka/Version.py +1 -1
  7. nuitka/build/include/nuitka/compiled_function.h +2 -0
  8. nuitka/build/inline_copy/python_hacl/LICENSE.txt +201 -0
  9. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_MD5.c +1430 -0
  10. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_MD5.h +66 -0
  11. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA1.c +463 -0
  12. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA1.h +66 -0
  13. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA2.c +1273 -0
  14. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA2.h +204 -0
  15. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA3.c +734 -0
  16. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA3.h +131 -0
  17. nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Streaming_Types.h +83 -0
  18. nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/FStar_UInt128_Verified.h +346 -0
  19. nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/FStar_UInt_8_16_32_64.h +107 -0
  20. nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/fstar_uint128_struct_endianness.h +68 -0
  21. nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/internal/target.h +293 -0
  22. nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/lowstar_endianness.h +231 -0
  23. nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/types.h +14 -0
  24. nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_MD5.h +56 -0
  25. nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA1.h +56 -0
  26. nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA2.h +164 -0
  27. nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA3.h +65 -0
  28. nuitka/build/inline_copy/python_hacl/hacl_312/python_hacl_namespaces.h +89 -0
  29. nuitka/build/static_src/CompiledFrameType.c +2 -5
  30. nuitka/build/static_src/CompiledFunctionType.c +43 -4
  31. nuitka/build/static_src/HelpersAllocator.c +0 -2
  32. nuitka/build/static_src/MainProgram.c +17 -0
  33. nuitka/build/static_src/MetaPathBasedLoader.c +75 -46
  34. nuitka/code_generation/templates/CodeTemplatesModules.py +1 -10
  35. nuitka/freezer/DllDependenciesCommon.py +28 -3
  36. nuitka/freezer/DllDependenciesWin32.py +6 -1
  37. nuitka/importing/Importing.py +5 -1
  38. nuitka/nodes/ModuleNodes.py +3 -4
  39. nuitka/plugins/PluginBase.py +11 -3
  40. nuitka/plugins/standard/KivyPlugin.py +10 -0
  41. nuitka/plugins/standard/standard.nuitka-package.config.yml +213 -20
  42. nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +27 -2
  43. nuitka/tools/testing/Common.py +22 -2
  44. nuitka/utils/FileOperations.py +38 -1
  45. nuitka/utils/SharedLibraries.py +1 -1
  46. {Nuitka_winsvc-2.3.3.data → Nuitka_winsvc-2.3.9.data}/scripts/nuitka-run.bat +0 -0
  47. {Nuitka_winsvc-2.3.3.data → Nuitka_winsvc-2.3.9.data}/scripts/nuitka.bat +0 -0
  48. {Nuitka_winsvc-2.3.3.dist-info → Nuitka_winsvc-2.3.9.dist-info}/LICENSE.txt +0 -0
  49. {Nuitka_winsvc-2.3.3.dist-info → Nuitka_winsvc-2.3.9.dist-info}/entry_points.txt +0 -0
  50. {Nuitka_winsvc-2.3.3.dist-info → Nuitka_winsvc-2.3.9.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.3.3
3
+ Version: 2.3.9
4
4
  Summary: Nuitka but support compile as Windows service
5
5
  Home-page: https://github.com/tabris17/Nuitka-winsvc
6
6
  Author: tabris17
@@ -1,5 +1,5 @@
1
- Nuitka_winsvc-2.3.3.data/scripts/nuitka-run.bat,sha256=zzCZ6CymZcBcI_BMB1RwNIegL0JcACGwKTMeIW-aaOU,924
2
- Nuitka_winsvc-2.3.3.data/scripts/nuitka.bat,sha256=G-3yCOmURvmaYtciOLW4cMRGEcutzcsea4qDJqfezg0,1061
1
+ Nuitka_winsvc-2.3.9.data/scripts/nuitka-run.bat,sha256=zzCZ6CymZcBcI_BMB1RwNIegL0JcACGwKTMeIW-aaOU,924
2
+ Nuitka_winsvc-2.3.9.data/scripts/nuitka.bat,sha256=G-3yCOmURvmaYtciOLW4cMRGEcutzcsea4qDJqfezg0,1061
3
3
  nuitka/Builtins.py,sha256=IPBD00YlX9eNfKyKxyGRukVmwtoiaeJ4YLNdm1LoLOo,7560
4
4
  nuitka/BytecodeCaching.py,sha256=KFVx1wDKEG8bydgerI6k2YK6VXIZLmTfMxgZmUhkBWo,5787
5
5
  nuitka/Bytecodes.py,sha256=BFKfgzCHUb8-qs1VZcjaKpCwBMt7UKgkT8POEsYljLQ,3891
@@ -10,11 +10,11 @@ nuitka/HardImportRegistry.py,sha256=HCFVEXQOI-8JA7VnIBRdZzYy1JQMp7v3AdRkGy6hI20,
10
10
  nuitka/MainControl.py,sha256=yGNA4wWmjXZCumIfjOs8iec1DwPD6QI48afECZjaDJo,38217
11
11
  nuitka/ModuleRegistry.py,sha256=YmuFBKzUSFFCZysAFPS1_E8pa_PFPiErsh1TypO6d_c,8938
12
12
  nuitka/OptionParsing.py,sha256=3nHovbnl0-ZkJIJqzsb_vSL8X_2u9Y8P0xd4zEeY5dA,64582
13
- nuitka/Options.py,sha256=g6yfr1IOwvM3axsn947EDAMa9l0JMNAi_pPvbUTNgKk,78446
13
+ nuitka/Options.py,sha256=DXiMHL7fZCoHd5DxyShD1tn3OpIePyShElQceQZM7sY,78465
14
14
  nuitka/OutputDirectories.py,sha256=SlCeSLVBZvpv8gu14wKd9H51x2JGOLPuZ56GBjjYPbc,5432
15
15
  nuitka/PostProcessing.py,sha256=TqUBEehR7cMfv7qrK0btv2VX2GHyKHubkil94QZjoAA,15010
16
16
  nuitka/Progress.py,sha256=GvQwzjCa7_WehXlC2S3F8s9IpaJLudgPAftpkzHwXL8,6805
17
- nuitka/PythonFlavors.py,sha256=FPcCAURpdzw0v1uUHbO1AgBE4yqUrtFlsqDXUVmeCLA,9852
17
+ nuitka/PythonFlavors.py,sha256=8ehOv_JkjDfEmxc1tb6jlTYIe3KYOyuKPB9Jk8dxPHs,10338
18
18
  nuitka/PythonOperators.py,sha256=YsVvyhiSk7QgbPIIwzln2qmHRopAgS7LvdyXb6x7dAE,4093
19
19
  nuitka/PythonVersions.py,sha256=dx3YLDkcHzRdwWyj63c3417vQCE7X7yJZGc2VUtRLJk,14573
20
20
  nuitka/Serialization.py,sha256=s_ChVkRqMmzZNj5EwWUKnRM7_bKnXPH49KHBJEVelRk,9525
@@ -22,7 +22,7 @@ nuitka/SourceCodeReferences.py,sha256=quGcd9Kg3FjYwsSDDv49MWi_Yec2AurRp-cVspo5qq
22
22
  nuitka/Tracing.py,sha256=7BE6sDP5XmOWzoQnjC05ll2b5i38KLzXr2V5zI4eXX4,13335
23
23
  nuitka/TreeXML.py,sha256=x3InjVm0LL5V6aWUrRNCnpCRhjOleEO-HQF6xDEHEyQ,3512
24
24
  nuitka/Variables.py,sha256=53u-p0l58lrBg8nNSYd5DjR3AOGezMayUM7C05vANVM,15470
25
- nuitka/Version.py,sha256=LMN4IW7rU7-KndPUMG22RVsXKMR2fj6MZO1Hw6MxvCA,2466
25
+ nuitka/Version.py,sha256=ArOmlrYdgUeGoolVV760xx10BSe4qd6DZAUfPN5M7sU,2466
26
26
  nuitka/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
27
27
  nuitka/__main__.py,sha256=HZFjEt3fdlQLqcreBI6dlUvA53IqQMnZE4Aj5FPwu1s,6373
28
28
  nuitka/__past__.py,sha256=x9W6PDKU2SOY2Qbeu5kgiwgJ5edjG4BUPhdA-6qQ7mY,5604
@@ -47,7 +47,7 @@ nuitka/build/include/nuitka/compiled_asyncgen.h,sha256=tF_z5FDsXvhD-SmZQoBhDn4O6
47
47
  nuitka/build/include/nuitka/compiled_cell.h,sha256=uibAkhiBsBynoyg3Oypt-dY_JeZ5D9OVgq63JW7SLv8,2460
48
48
  nuitka/build/include/nuitka/compiled_coroutine.h,sha256=vdYuWjcIN5iN_hiAex8GhqocFq0mpxveNHF5PG74uwY,9233
49
49
  nuitka/build/include/nuitka/compiled_frame.h,sha256=jIUdY86qqXBUmD2erfUG2zHupo_j-Bfv5gM5tFhNfbE,18671
50
- nuitka/build/include/nuitka/compiled_function.h,sha256=7gD6ji_J9i49LpoUX7AbBxCyAe-rGTybisBUM26LaKs,7332
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=D6CU14wu8Fq3RSkwJ48DqMzYGIvIOmtKGFFzC2nXmDQ,1866
53
53
  nuitka/build/include/nuitka/constants.h,sha256=u3LQC6Sdo3ZzJDiuNAx8-8GmBeJZVjRvlGlwUSSrWLQ,7876
@@ -329,6 +329,27 @@ nuitka/build/inline_copy/markupsafe/markupsafe/_constants.py,sha256=zo2ajfScG-l1
329
329
  nuitka/build/inline_copy/markupsafe/markupsafe/_native.py,sha256=d-8S_zzYt2y512xYcuSxq0NeG2DUUvG80wVdTn-4KI8,1873
330
330
  nuitka/build/inline_copy/pkg_resources/pkg_resources/__init__.py,sha256=CDvtAW_tiyTP_Yp7yM35hwlcgEvrilqeH14Ecwh25Hk,107335
331
331
  nuitka/build/inline_copy/pkg_resources/pkg_resources/py31compat.py,sha256=wx-LGd5mCmLCbianopVSbKIQ4LoEDkbz7XVionn5znM,538
332
+ nuitka/build/inline_copy/python_hacl/LICENSE.txt,sha256=xazLvYVG6Uw0rtJK_miaYXYn0Y7tWmxIJ35I21fCOFE,11356
333
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_MD5.c,sha256=9xz2oOjwk1TCryx4Wh024MunYTpYm-AcqKPYR49MiHQ,38499
334
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_MD5.h,sha256=mgLipuFjUV6gIoqFnV5VwfV7EfrlkIxC-fmBTOm8ojA,2223
335
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA1.c,sha256=Wym9mVFkaGHg4ZQnvl2SOlurekUWgkzMBo9pZGkZXuw,13043
336
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA1.h,sha256=VkApXHkNVrG03xR9amxYgDsYRc19kzZb98x7dbo8rNU,2234
337
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA2.c,sha256=MGOO-3XIsYW7CcPfaXfj88XSGh5pYhjPet5rxNUgGzE,36131
338
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA2.h,sha256=CT12kwhK8JmdKhPSBzEddLW9_cnAhEftSpeeP3UFrms,6903
339
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA3.c,sha256=F8DbltQNGEnwJUbV9VQo-om2Gwd0jVtd9FzsJcXynA8,21450
340
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA3.h,sha256=2NTRS7w6VhpOWQ2bGLMm5qgJXvsSQj7b2UnPPACVNiE,3700
341
+ nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Streaming_Types.h,sha256=JpE2E_O0-P__Cj4hGl68hJFZCU5eEd4KMfy5W2EFt0w,2654
342
+ nuitka/build/inline_copy/python_hacl/hacl_312/python_hacl_namespaces.h,sha256=NH39-FbtHlhNEk1nCbUSZ1mOpbN8Gi4Dvus1jJeL6to,5549
343
+ nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/FStar_UInt128_Verified.h,sha256=RV6U8koJAN7afm429HFOQlPTLOoHf5fiP5DFaacXvEg,9342
344
+ nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/FStar_UInt_8_16_32_64.h,sha256=Zd7Nt0wkBJqhlDBGKlEhklDPxl2MFid45C34izFC-kI,3026
345
+ nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/fstar_uint128_struct_endianness.h,sha256=_lfhvFzjIk0QbjbLiCm1OZxjpopwsMzQyR2CpFZciGk,1649
346
+ nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/lowstar_endianness.h,sha256=NzTHlCvsmkNOFt8Gn6Rb3LhLEw8UQXvF97_oVGJy2fU,7757
347
+ nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/types.h,sha256=3nREw0XKpMR5AsQ4BQA1aj7n4ZnSqrhP2MSWBBAVTz0,307
348
+ nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/internal/target.h,sha256=0WpZ83odSYJiaHDjcIieudMyqa0DVmG4Bi9Un8c00GE,10653
349
+ nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_MD5.h,sha256=Nw2O-cSMtVRy7OEeEur5TFgRjeP1UVtt8cEwtpZZeCg,1923
350
+ nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA1.h,sha256=q1LGCSvbv8mIT4Qb9IJAFnkv-pYWdXfL4N8A3Zb1ajQ,1932
351
+ nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA2.h,sha256=EOlZqSsyiKYWWkBMj64rvNf7AKmruuK3gJ-lXW_pBo0,6457
352
+ nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA3.h,sha256=aFMSXeEND2Bem8Oj271yVHE3CemJPMP2mSnqjT8lSTQ,1959
332
353
  nuitka/build/inline_copy/tqdm/tqdm/__init__.py,sha256=tXNfVIBkYbXj2H-hT_n_1YktRNRzNAPUWYmNYe2N25E,1595
333
354
  nuitka/build/inline_copy/tqdm/tqdm/_main.py,sha256=9ySvgmi_2Sw4CAo5UDW0Q2dxfTryboEWGHohfCJz0sA,283
334
355
  nuitka/build/inline_copy/tqdm/tqdm/_monitor.py,sha256=DR8AwqGRj4K7bXCibiFOSUV8SDMhLdhq1o6YXPG-Y_M,3687
@@ -398,12 +419,12 @@ nuitka/build/static_src/CompiledAsyncgenType.c,sha256=5QGMCi0J83i87C7o-jHzULYj4l
398
419
  nuitka/build/static_src/CompiledCellType.c,sha256=PnCv5qveCrr1V8w8EKlkrKlUDfE4hLeOBnNfysnOoJk,9151
399
420
  nuitka/build/static_src/CompiledCodeHelpers.c,sha256=mT2fPfR0lSa_KSnR7258rMLu4AOC7UhIRx4kDyRslD8,59100
400
421
  nuitka/build/static_src/CompiledCoroutineType.c,sha256=TPwZBbURO5DfjU9IzLmSs93tJK4eNSKG8ERBr2ehD_A,72338
401
- nuitka/build/static_src/CompiledFrameType.c,sha256=RQna2jbyo3jNLH3YdyUetHbTunjFZtK1Dra0n__koS0,41388
402
- nuitka/build/static_src/CompiledFunctionType.c,sha256=0MLmT6l2MMNLYGLvIGhiwj88JGztCE5ZFvIfgp8dmX0,111154
422
+ nuitka/build/static_src/CompiledFrameType.c,sha256=WDTJ_ubztcPwbfRWB-2ER0eelqM_Pyg28GarZgimx6Y,41337
423
+ nuitka/build/static_src/CompiledFunctionType.c,sha256=PWEm6yqdeDZceh5HM7gqcJiE8lt7vYYR-ZN1YI_eyX8,112838
403
424
  nuitka/build/static_src/CompiledGeneratorType.c,sha256=T767ptPErymf21J-Wl_cmYaHJzSx35JauyUZpXRexGE,67867
404
425
  nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c,sha256=bmclb1o44hi4-RUFF6TPK8nUQ3JM__TLUaoFHwZs8e8,56209
405
426
  nuitka/build/static_src/CompiledMethodType.c,sha256=FPwlVjQ9X-443RJu4VONlAxr1Y-ClC_ZamL1WLsiiy4,22410
406
- nuitka/build/static_src/HelpersAllocator.c,sha256=EkpH5Gl9-ql2r_o7Re0QZeRtSCDA79d3Akc7ggmSrYw,20752
427
+ nuitka/build/static_src/HelpersAllocator.c,sha256=-wtp21Q7cZAYQbwg2-_LddaKV-wmunOHZ2fgBYmlojA,20728
407
428
  nuitka/build/static_src/HelpersAttributes.c,sha256=-tNlhdUyXHXrXoY7WwiNBtNxoll9fNR0ov_ycWWuCuI,37589
408
429
  nuitka/build/static_src/HelpersBuiltin.c,sha256=dZmKXII2VG6PLuWnrkKOeYVoSJQoMKwInNvVPZWsCqI,23729
409
430
  nuitka/build/static_src/HelpersBuiltinTypeMethods.c,sha256=8KT1Naoot64WipECnnE9iGxFsy4QdEKlLRidJYcxrdI,114017
@@ -484,8 +505,8 @@ nuitka/build/static_src/HelpersStrings.c,sha256=-WLwXGcKdErdMLNNPT8seMdm9LOTLW2o
484
505
  nuitka/build/static_src/HelpersTuples.c,sha256=9yVThC0PIcHYadFLyPdf16Bs204TmE2gzTClKClvM8w,4481
485
506
  nuitka/build/static_src/HelpersTypes.c,sha256=tjZ06sfYrsSr6bjrnMvC7d6h0rU5zaXWG_NRaIWiRFU,6786
486
507
  nuitka/build/static_src/InspectPatcher.c,sha256=NJCesU-b9Sut_Qrz7wMTJf4g3HT-Mw8XkkyNjc6vE1s,14331
487
- nuitka/build/static_src/MainProgram.c,sha256=ZGZ-Vu_igXHh_NGDhzaPJch1zhvazTtgADUPaGtSPRQ,56113
488
- nuitka/build/static_src/MetaPathBasedLoader.c,sha256=Czrus6nfHSCb95xE3mW3_lbzg3LVXasd3htjiyr1QyM,65104
508
+ nuitka/build/static_src/MainProgram.c,sha256=wpz1Z3k1J8PIOboQgWsf32Fc0pERn5hGUN0bKY0gXdM,56700
509
+ nuitka/build/static_src/MetaPathBasedLoader.c,sha256=FVO-KEHwCu6JQR4BUgPSEDU8Rax6xWAoq9oIlc-bQes,66084
489
510
  nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c,sha256=Xk4bHcLl7HBEko1BzZqCLDywhBZtkP4NeXsSOIAR5Rc,4827
490
511
  nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c,sha256=K5zaC-z7r47DZiQbn4-aYvmm0AEYd3hCAeXw8Xtw9ew,6651
491
512
  nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c,sha256=6gmOBiajKp7DKgE34xQCFBkIw7zYofvPxIhe9aEniXM,21913
@@ -578,7 +599,7 @@ nuitka/code_generation/templates/CodeTemplatesFunction.py,sha256=aGrIgdCm6Bl4Tfc
578
599
  nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py,sha256=_zhGgLbxUzEbqcNmDJ1OQG0K2nfVqTytU4Q7pHZoBkA,3390
579
600
  nuitka/code_generation/templates/CodeTemplatesIterators.py,sha256=JFSVdRpnUFp6-0EaXEwFeTvm08TO7wG6jA8NLyoR_mc,2408
580
601
  nuitka/code_generation/templates/CodeTemplatesLoader.py,sha256=BKE9oKX99H-o0DL-CZEB3FEuD4QJ22nAt6l0SWYsTNg,4568
581
- nuitka/code_generation/templates/CodeTemplatesModules.py,sha256=DZHoAwb6VIdBY9S2z-7L7ejXGGHmWfMFL7_ucjq67ho,23606
602
+ nuitka/code_generation/templates/CodeTemplatesModules.py,sha256=RTV-4RFzZsGgdsvglUOP9-e93XVDTeulyN3YCcoRFr8,23062
582
603
  nuitka/code_generation/templates/CodeTemplatesVariables.py,sha256=Z0eBqmECxv3M9WlOtsHG-U-VOSErzI9Jl3q6e_hHoKY,6840
583
604
  nuitka/code_generation/templates/TemplateDebugWrapper.py,sha256=aeOpufKeOR3iMo63-FK_akKVwb_aNEo_I9ASB2GLmhs,2507
584
605
  nuitka/code_generation/templates/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
@@ -627,10 +648,10 @@ nuitka/finalizations/Finalization.py,sha256=NE7mn3W5PzgCKXTHrptcztVG7EgXwMVM9bYC
627
648
  nuitka/finalizations/FinalizeMarkups.py,sha256=vjhI4fVEAglPb_z-e6YtTzgVSBpt5R2NQUC2mbaQx7o,5465
628
649
  nuitka/finalizations/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
629
650
  nuitka/freezer/DependsExe.py,sha256=iwVz0-PQaizqfxiDTJ74kKNAmc_r9hTF-9nlfWakjbA,7953
630
- nuitka/freezer/DllDependenciesCommon.py,sha256=Ycn3BdvGgp0S1NZ6294Z9kO4nWM6U0s_c3B2utQl4wI,2616
651
+ nuitka/freezer/DllDependenciesCommon.py,sha256=uZkJ4tpvzZ_vHDud0sOuI-GiqWu0R-Y0w64uqKrmgxE,3268
631
652
  nuitka/freezer/DllDependenciesMacOS.py,sha256=97RKANnAw3q-wD1lXjW1rM2EzfYbn7HS84c-fjI8edM,14423
632
653
  nuitka/freezer/DllDependenciesPosix.py,sha256=FKzKDuVAViqI00CfADzqgYAJZqB416VaSS-MtApjjJs,7468
633
- nuitka/freezer/DllDependenciesWin32.py,sha256=UU84kOatOGJ3w1BhpyJ9rheDK3u6GQ7h-Uxd6Z-Plk4,6731
654
+ nuitka/freezer/DllDependenciesWin32.py,sha256=K5_NGi_tl8_Oky9T198YlkbFjrPylzFPe7W-3kVfbZU,6837
634
655
  nuitka/freezer/ImportDetection.py,sha256=zJtJk-8rmHW-BngN5W6WPhQu6vHLsX9nbDSysytp_0k,11999
635
656
  nuitka/freezer/IncludedDataFiles.py,sha256=pkCesgOb2MOD8v43LP-dWDeufTDAlsGNocqid5KDCyU,19404
636
657
  nuitka/freezer/IncludedEntryPoints.py,sha256=qQlTaBrH1KjyIrwCKfA0ObAgBan3CbroDdHPLuJREEM,12007
@@ -640,7 +661,7 @@ nuitka/freezer/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,86
640
661
  nuitka/importing/IgnoreListing.py,sha256=sDR37R5N1zgqA92G0GxcXJf_b-H4eLMeinYpUu1c4Qs,11040
641
662
  nuitka/importing/ImportCache.py,sha256=qyg3yHj6lepcy1hgLpZTWL7CUpDvMlsp2XoZxwgTI3Y,2989
642
663
  nuitka/importing/ImportResolving.py,sha256=I1aUiZqhoIMnRLIuKZpjYusH0NbW_tEGWgCj5P2FY1k,7784
643
- nuitka/importing/Importing.py,sha256=NO_Mj4T1HgQ22OYxIjAh4Doa5fv8mzMxWWNfdQ-5St4,33380
664
+ nuitka/importing/Importing.py,sha256=rfpJXPzBDRlsyh9KPDDJOqyYQUYTBw6Cva2iKGjnQZ0,33524
644
665
  nuitka/importing/PreloadedPackages.py,sha256=VHlzoXRgWHu1tOX-06mNa_qXW-llkPSz4ZQZnU1UDo4,4869
645
666
  nuitka/importing/Recursion.py,sha256=ZdXjXv4QfKTwZFjGCF9XTBZB-XhhPKPNfGJo5tl_GLg,18804
646
667
  nuitka/importing/StandardLibrary.py,sha256=HIZLeSUf1dc-5_KTbOUIGV7Ms0H-r1Kicswnqb4DWGA,12918
@@ -707,7 +728,7 @@ nuitka/nodes/LocalsScopes.py,sha256=fFUILJsOHtyKgy37x5dxFsAevv6w_q-Nbbtrb3GfpCM,
707
728
  nuitka/nodes/LoopNodes.py,sha256=nDfUQmWd9mQRFa0NCPEzPWZjsHr4TOolhJSXoAqw5b8,15995
708
729
  nuitka/nodes/MatchNodes.py,sha256=veeVVceVILWtCze1lsHAS46M4IVDxkHloqKl-6vlt98,1745
709
730
  nuitka/nodes/ModuleAttributeNodes.py,sha256=wU-2MbDVOYblJkANZn1WxRDYmy37rb4vSoW_aafKNoY,6567
710
- nuitka/nodes/ModuleNodes.py,sha256=qszRGTS3Di3tEZiibBh9C-5d2Na7jr0sINY6G0Yo97w,33158
731
+ nuitka/nodes/ModuleNodes.py,sha256=7sodqqKTmT8cAqrFMNrD5xubJ6Y_osnZWP_-4C1KxUo,33083
711
732
  nuitka/nodes/NetworkxNodes.py,sha256=prS8Hr3n0CEca2KqZ-T55GNcn2JGjye1p31iekPvurU,1759
712
733
  nuitka/nodes/NodeBases.py,sha256=wqUpqfi1W2G_rstvuCUDyX9zhKZeBC6Kyhc0ESql4oQ,24461
713
734
  nuitka/nodes/NodeMakingHelpers.py,sha256=lfjHq9-TCh04kOG4YFqRGvds6Fv2VpgzJkp5cXQZ_wk,15147
@@ -754,7 +775,7 @@ nuitka/optimizations/ValueTraces.py,sha256=nKK_cR-fq-V6IKyBMxQAuKNEALNTonA7vB3hT
754
775
  nuitka/optimizations/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
755
776
  nuitka/pgo/PGO.py,sha256=9oSnX1hXeuECPOujz4vadlGI6-wFYICWjdTBrE04G9c,4932
756
777
  nuitka/pgo/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
757
- nuitka/plugins/PluginBase.py,sha256=1imqfCq-o2t3VDlFHVEFVqSQL835hcny0N8ul8ptSDA,57775
778
+ nuitka/plugins/PluginBase.py,sha256=alxyJ-L4U3GCzV278cKs4oXlHre1nRpBnm6F1llYfaY,57926
758
779
  nuitka/plugins/Plugins.py,sha256=yTxgQ2jxDsooPgn_CC5Lo2kgumvnan5fufjZxtPcxZ8,60905
759
780
  nuitka/plugins/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
760
781
  nuitka/plugins/standard/AntiBloatPlugin.py,sha256=MflD2al1KuddbtKh3YIR26AOqfyOE5KB_qDkY48rkig,30813
@@ -769,7 +790,7 @@ nuitka/plugins/standard/GeventPlugin.py,sha256=_cKREOuAXiKCYpjH5fcRfRT6lHhfz0Jgc
769
790
  nuitka/plugins/standard/GiPlugin.py,sha256=K65v6ic34flduZZ76zP_oTX6JPmmYHS8g2_kPSEL_4o,4018
770
791
  nuitka/plugins/standard/GlfwPlugin.py,sha256=DaWEfMhLdxzd12IqLTi4qb6R2sCAu_aQjI0cfuneZ8c,4854
771
792
  nuitka/plugins/standard/ImplicitImports.py,sha256=jtDZ3zmavrO4ifI-OByR7bFCjPOLK1tuAUA-SrP6U70,32501
772
- nuitka/plugins/standard/KivyPlugin.py,sha256=FGpyxlRRQhsKYktLwI0B41EF28lZGHPLBvAeUlyyfrw,5024
793
+ nuitka/plugins/standard/KivyPlugin.py,sha256=fGG2ADXiTJOb-L4AnlhWrhpQ1kEHNmcfMyAva8rygCM,5506
773
794
  nuitka/plugins/standard/MatplotlibPlugin.py,sha256=sSbNsSzRYLhrgUkKMfplwDULgXjqxmKsv1PY0sgGASE,8824
774
795
  nuitka/plugins/standard/MultiprocessingPlugin.py,sha256=EzWhHHFM0036v4ku2dhFvB1CCjwm_VCveJDEUL5MyrQ,7080
775
796
  nuitka/plugins/standard/NumpyPlugin.py,sha256=mAzhziM_7o-SKxnKtGp7CBhWV86Jvs5OLMbHTQNFJoE,1220
@@ -786,9 +807,9 @@ nuitka/plugins/standard/TransformersPlugin.py,sha256=6Ex9lNg5OupnXhFPKq5ozDOikIb
786
807
  nuitka/plugins/standard/TrioPlugin.py,sha256=fIz_UTQfwBnl6MY4-XI4eKHPPsMeksPWYjnJU10mOb8,1107
787
808
  nuitka/plugins/standard/UpxPlugin.py,sha256=1I3WouiEmKQAvTkzhgmJ2FRjDKHC0oH9onENntmFphg,5668
788
809
  nuitka/plugins/standard/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
789
- nuitka/plugins/standard/standard.nuitka-package.config.yml,sha256=y0raydoKrhwuZF572gOo56p42rgcnYAG5gkI7CL4cvE,237308
810
+ nuitka/plugins/standard/standard.nuitka-package.config.yml,sha256=rF0bfl2InBupbNQWsI6YiB1bAFGU4KkszTAESlC3VcU,243000
790
811
  nuitka/plugins/standard/stdlib2.nuitka-package.config.yml,sha256=DRazC20zLXbc71ZMRu9kEA8N4Xe8Iry2sHNsUlbx4FE,2357
791
- nuitka/plugins/standard/stdlib3.nuitka-package.config.yml,sha256=D26Hq-CNkoJWQM6p4iqtjzFwRTXnTaoQJqr2dvC6NYY,12515
812
+ nuitka/plugins/standard/stdlib3.nuitka-package.config.yml,sha256=s8OgS1BU9wI5a9J0SZl-tfHKI_o0xCli0cIwfsOxUR8,13117
792
813
  nuitka/plugins/standard/DillPlugin/DillPlugin.c,sha256=RbyX_UPvVZ00nN2bnIBVFoZ8xSZZ5YFJqVB6Qwg9GSo,1688
793
814
  nuitka/plugins/standard/DillPlugin/dill-postLoad.py,sha256=WICFdsvx5ZZKqgfX-GuYWqsuL7avFDqxlFk6UA3qihk,9826
794
815
  nuitka/reports/CompilationReportReader.py,sha256=9MRNyEpfu7gf5jDlhz53ZBBERGXTvps1sV2P_hutWf8,2286
@@ -835,7 +856,7 @@ nuitka/tools/specialize/Common.py,sha256=HFjFyVl1rwOwM9pfyA7Ns76t-v3zkIThgOHhkbb
835
856
  nuitka/tools/specialize/SpecializeC.py,sha256=QW217C0KRsFs7foSBaqi6auO-tSkeDjR1jk5OFvw1rg,39747
836
857
  nuitka/tools/specialize/SpecializePython.py,sha256=U8u8axnCL_52vzYuacQH0x2szeR-t_ZkSMN0Yn2U0VE,36683
837
858
  nuitka/tools/specialize/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
838
- nuitka/tools/testing/Common.py,sha256=sBzVeFonMTQjU6I0NMzJE2So5-2wlPVkC2kVrMJ0t40,56502
859
+ nuitka/tools/testing/Common.py,sha256=dsG4CJOrx5PjnEkX5masPyN7ILAeb38GKbmDpUc4GKY,57102
839
860
  nuitka/tools/testing/Constructs.py,sha256=zHyVi7g3Gn3kLKvZW_OGFrskf5OIvCf7nK1GX2sJXy4,1516
840
861
  nuitka/tools/testing/OutputComparison.py,sha256=WquPChaxgx1wyuP_9nB0v4_zH1QnEtZEb0k40f5s60k,10129
841
862
  nuitka/tools/testing/Pythons.py,sha256=ydchEs7aFNwYq9KT8ni1S3y55IRUSMqGOCriwkuacw4,1310
@@ -897,7 +918,7 @@ nuitka/utils/CommandLineOptions.py,sha256=eUc6cRetHxL07xppAn9MlWcSEUuEDyp6tJ3ihg
897
918
  nuitka/utils/Distributions.py,sha256=jsxVLx2KnX8gfYsTodZDj4yvsixhDlVDxxbl0krRhO8,14983
898
919
  nuitka/utils/Download.py,sha256=oX32tAw6ozvCTE661xaZmw4hGDrOfVaw1VUuMTHMhR8,6477
899
920
  nuitka/utils/Execution.py,sha256=vGudqYLYbL25-bbAaEsRl31q4maDrhn6qHa51Dmtxks,13519
900
- nuitka/utils/FileOperations.py,sha256=s9SHvWJ8dbFXydkWwwWIwhJ832TKv9mMpEaqBNFg4PU,42552
921
+ nuitka/utils/FileOperations.py,sha256=OCkwHfSL-dN12s2hu2SqEQkAbNs2-zWRvRRmdf1YRJA,43399
901
922
  nuitka/utils/Hashing.py,sha256=vOFVzPNqAJw7NNZ1Hxe0rllnKO-HGwd6n5N3R_2WgQM,3753
902
923
  nuitka/utils/Images.py,sha256=UZEABy6K48Zb1Nw22jZ6P41aTfBvYsuklrzKQAxLWyE,2391
903
924
  nuitka/utils/Importing.py,sha256=QrSEXtsjOVYhwiGqe5F6T41gnkCWRjK-J31LS8qYd4M,10843
@@ -910,7 +931,7 @@ nuitka/utils/MemoryUsage.py,sha256=QeanxAep9aOvtYvhL4viCHrlRqN3i9OcgfmcV0dhq1c,5
910
931
  nuitka/utils/ModuleNames.py,sha256=bLtm5e3ojZ_F0GuPbXFbFG4q2vTQXdO-OvMuiSoUO5I,9951
911
932
  nuitka/utils/ReExecute.py,sha256=PL4bHKxF6PqqMZeyHo1MLz6flWLngOvERasrcIbC_HA,4831
912
933
  nuitka/utils/Rest.py,sha256=zP9jjG6pOSuLKVuZbbj_Wwq1CLZ6hk16wdhHkR_m2oE,1889
913
- nuitka/utils/SharedLibraries.py,sha256=o6KkJsZQQ5JRewhR_qG84Kz-u1lxHQUSUHYdViZoJaA,24696
934
+ nuitka/utils/SharedLibraries.py,sha256=CQCzSZmCeNNKgkqm4QakwmnKYsVJdBnaZ1YS3ifwNDc,24735
914
935
  nuitka/utils/Shebang.py,sha256=6NXzMiY9gF16Pvw4FrboM3pmQPgOH5fcEdbt_5mt2Og,3698
915
936
  nuitka/utils/Signing.py,sha256=mORmwzVJFLdeZeiDXkQgZz9guL34lhcfOXPSdy0tQnI,3687
916
937
  nuitka/utils/SlotMetaClasses.py,sha256=lVJokq-0XqDaNHTt9rfE_khZCQSi_BWMfDDwdwudwt8,2084
@@ -922,9 +943,9 @@ nuitka/utils/WindowsFileUsage.py,sha256=S6zm_4JQzaSyVmOoLdZDEq--SObR-CHofH4cvs__
922
943
  nuitka/utils/WindowsResources.py,sha256=npt3jbcTgh1M5G6jyEv6uFqiZIf84XEea3wXQ_sXGdM,19837
923
944
  nuitka/utils/Yaml.py,sha256=osd2K6G4XxSpzzTA-KzYoN8n2OF11zgB-4QxgJOig8M,7206
924
945
  nuitka/utils/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
925
- Nuitka_winsvc-2.3.3.dist-info/LICENSE.txt,sha256=ZWq74m8T3pVbRFjCBu74q_4GyW11rCqtYB_1vZ4rQ88,11348
926
- Nuitka_winsvc-2.3.3.dist-info/METADATA,sha256=abe1f9kfaB938M_BO_7Hz3Fuq-jX7EnLkufTnXIcCrU,4961
927
- Nuitka_winsvc-2.3.3.dist-info/WHEEL,sha256=nSybvzWlmdJnHiUQSY-d7V1ycwEVUTqXiTvr2eshg44,102
928
- Nuitka_winsvc-2.3.3.dist-info/entry_points.txt,sha256=jeBnijqxZ4U0WpNEdtaogpNMNlv5jw8H7yMOsf2isFc,308
929
- Nuitka_winsvc-2.3.3.dist-info/top_level.txt,sha256=TRrfKxSYukbo1yzTGfwyH7wVzhDpKlwQsLjhIr15yqY,7
930
- Nuitka_winsvc-2.3.3.dist-info/RECORD,,
946
+ Nuitka_winsvc-2.3.9.dist-info/LICENSE.txt,sha256=ZWq74m8T3pVbRFjCBu74q_4GyW11rCqtYB_1vZ4rQ88,11348
947
+ Nuitka_winsvc-2.3.9.dist-info/METADATA,sha256=WXMt7oK4pBpFn-0ZZhyjovRJkoEq7z3V_UuBEkl21dM,4961
948
+ Nuitka_winsvc-2.3.9.dist-info/WHEEL,sha256=rt4ogJhfwzOIZpQG1-igUOP-t_yXz3fi7xFfo-fNzUo,101
949
+ Nuitka_winsvc-2.3.9.dist-info/entry_points.txt,sha256=jeBnijqxZ4U0WpNEdtaogpNMNlv5jw8H7yMOsf2isFc,308
950
+ Nuitka_winsvc-2.3.9.dist-info/top_level.txt,sha256=TRrfKxSYukbo1yzTGfwyH7wVzhDpKlwQsLjhIr15yqY,7
951
+ Nuitka_winsvc-2.3.9.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (70.1.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-win_amd64
5
5
 
nuitka/Options.py CHANGED
@@ -902,7 +902,7 @@ version '%s' instead or newer Nuitka."""
902
902
  )
903
903
 
904
904
  # spell-checker: ignore releaselevel
905
- if sys.version_info.releaselevel != "final":
905
+ if sys.version_info.releaselevel not in ("final", "candidate"):
906
906
  if python_version_str not in getNotYetSupportedPythonVersions():
907
907
  Tracing.general.sysexit(
908
908
  """\
nuitka/PythonFlavors.py CHANGED
@@ -113,6 +113,19 @@ def isHomebrewPython():
113
113
  return False
114
114
 
115
115
 
116
+ def isRyePython():
117
+ if isMacOS():
118
+ import sysconfig
119
+
120
+ # We didn't find a better one, since they do not leave much of any trace
121
+ # otherwise than an unusable "libpython.a"
122
+ # spell-checker: ignore isysroot,flto,ldflags
123
+ value = sysconfig.get_config_var("_OSX_SUPPORT_INITIAL_PY_CORE_LDFLAGS")
124
+ return value is not None and "-flto=thin" in value and "-isysroot" in value
125
+
126
+ return False
127
+
128
+
116
129
  def isPyenvPython():
117
130
  if isWin32Windows():
118
131
  return False
@@ -335,6 +348,8 @@ def getPythonFlavorName():
335
348
  return "Alpine Python"
336
349
  elif isHomebrewPython():
337
350
  return "Homebrew Python"
351
+ elif isRyePython():
352
+ return "Rye Python"
338
353
  elif isApplePython():
339
354
  return "Apple Python"
340
355
  elif isPyenvPython():
nuitka/Version.py CHANGED
@@ -20,7 +20,7 @@
20
20
  """
21
21
 
22
22
  version_string = """\
23
- Nuitka V2.3.3
23
+ Nuitka V2.3.9
24
24
  Copyright (C) 2024 Kay Hayen."""
25
25
 
26
26
 
@@ -116,6 +116,8 @@ Nuitka_Function_CreateFunctionViaCodeIndex(PyObject *module, PyObject *function_
116
116
  PyObject *code_object_desc, PyObject *constant_return_value,
117
117
  PyObject *defaults, PyObject *kw_defaults, PyObject *doc, PyObject *closure,
118
118
  function_impl_code const *function_table, int function_table_size);
119
+ extern PyObject *Nuitka_Function_ExtractCodeObjectDescription(PyThreadState *tstate,
120
+ struct Nuitka_FunctionObject *function);
119
121
  #endif
120
122
 
121
123
  static inline bool Nuitka_Function_Check(PyObject *object) { return Py_TYPE(object) == &Nuitka_Function_Type; }
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.