lets-plot 4.8.1rc1__cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.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.
Files changed (97) hide show
  1. lets_plot/__init__.py +382 -0
  2. lets_plot/_global_settings.py +192 -0
  3. lets_plot/_kbridge.py +197 -0
  4. lets_plot/_type_utils.py +133 -0
  5. lets_plot/_version.py +6 -0
  6. lets_plot/bistro/__init__.py +16 -0
  7. lets_plot/bistro/_plot2d_common.py +106 -0
  8. lets_plot/bistro/corr.py +448 -0
  9. lets_plot/bistro/im.py +196 -0
  10. lets_plot/bistro/joint.py +192 -0
  11. lets_plot/bistro/qq.py +207 -0
  12. lets_plot/bistro/residual.py +341 -0
  13. lets_plot/bistro/waterfall.py +332 -0
  14. lets_plot/export/__init__.py +6 -0
  15. lets_plot/export/ggsave_.py +172 -0
  16. lets_plot/frontend_context/__init__.py +8 -0
  17. lets_plot/frontend_context/_configuration.py +140 -0
  18. lets_plot/frontend_context/_dynamic_configure_html.py +115 -0
  19. lets_plot/frontend_context/_frontend_ctx.py +16 -0
  20. lets_plot/frontend_context/_html_contexts.py +223 -0
  21. lets_plot/frontend_context/_intellij_python_json_ctx.py +38 -0
  22. lets_plot/frontend_context/_isolated_webview_panel_ctx.py +81 -0
  23. lets_plot/frontend_context/_json_contexts.py +39 -0
  24. lets_plot/frontend_context/_jupyter_notebook_ctx.py +82 -0
  25. lets_plot/frontend_context/_mime_types.py +7 -0
  26. lets_plot/frontend_context/_static_html_page_ctx.py +76 -0
  27. lets_plot/frontend_context/_static_svg_ctx.py +26 -0
  28. lets_plot/frontend_context/_webbr_html_page_ctx.py +29 -0
  29. lets_plot/frontend_context/sandbox.py +5 -0
  30. lets_plot/geo_data/__init__.py +19 -0
  31. lets_plot/geo_data/core.py +335 -0
  32. lets_plot/geo_data/geocoder.py +988 -0
  33. lets_plot/geo_data/geocodes.py +512 -0
  34. lets_plot/geo_data/gis/__init__.py +0 -0
  35. lets_plot/geo_data/gis/fluent_dict.py +201 -0
  36. lets_plot/geo_data/gis/geocoding_service.py +42 -0
  37. lets_plot/geo_data/gis/geometry.py +91 -0
  38. lets_plot/geo_data/gis/json_request.py +232 -0
  39. lets_plot/geo_data/gis/json_response.py +308 -0
  40. lets_plot/geo_data/gis/request.py +492 -0
  41. lets_plot/geo_data/gis/response.py +247 -0
  42. lets_plot/geo_data/livemap_helper.py +65 -0
  43. lets_plot/geo_data/to_geo_data_frame.py +141 -0
  44. lets_plot/geo_data/type_assertion.py +34 -0
  45. lets_plot/geo_data_internals/__init__.py +4 -0
  46. lets_plot/geo_data_internals/constants.py +13 -0
  47. lets_plot/geo_data_internals/utils.py +33 -0
  48. lets_plot/mapping.py +115 -0
  49. lets_plot/package_data/lets-plot.min.js +3 -0
  50. lets_plot/plot/__init__.py +64 -0
  51. lets_plot/plot/_global_theme.py +14 -0
  52. lets_plot/plot/annotation.py +290 -0
  53. lets_plot/plot/coord.py +242 -0
  54. lets_plot/plot/core.py +1071 -0
  55. lets_plot/plot/expand_limits_.py +78 -0
  56. lets_plot/plot/facet.py +210 -0
  57. lets_plot/plot/font_features.py +71 -0
  58. lets_plot/plot/geom.py +9146 -0
  59. lets_plot/plot/geom_extras.py +53 -0
  60. lets_plot/plot/geom_function_.py +219 -0
  61. lets_plot/plot/geom_imshow_.py +393 -0
  62. lets_plot/plot/geom_livemap_.py +343 -0
  63. lets_plot/plot/ggbunch_.py +96 -0
  64. lets_plot/plot/gggrid_.py +139 -0
  65. lets_plot/plot/ggtb_.py +81 -0
  66. lets_plot/plot/guide.py +231 -0
  67. lets_plot/plot/label.py +187 -0
  68. lets_plot/plot/marginal_layer.py +181 -0
  69. lets_plot/plot/plot.py +245 -0
  70. lets_plot/plot/pos.py +344 -0
  71. lets_plot/plot/sampling.py +338 -0
  72. lets_plot/plot/sandbox_.py +26 -0
  73. lets_plot/plot/scale.py +3580 -0
  74. lets_plot/plot/scale_colormap_mpl.py +300 -0
  75. lets_plot/plot/scale_convenience.py +155 -0
  76. lets_plot/plot/scale_identity_.py +653 -0
  77. lets_plot/plot/scale_position.py +1342 -0
  78. lets_plot/plot/series_meta.py +209 -0
  79. lets_plot/plot/stat.py +585 -0
  80. lets_plot/plot/subplots.py +331 -0
  81. lets_plot/plot/subplots_util.py +24 -0
  82. lets_plot/plot/theme_.py +790 -0
  83. lets_plot/plot/theme_set.py +418 -0
  84. lets_plot/plot/tooltip.py +486 -0
  85. lets_plot/plot/util.py +267 -0
  86. lets_plot/settings_utils.py +244 -0
  87. lets_plot/tilesets.py +429 -0
  88. lets_plot-4.8.1rc1.dist-info/METADATA +221 -0
  89. lets_plot-4.8.1rc1.dist-info/RECORD +97 -0
  90. lets_plot-4.8.1rc1.dist-info/WHEEL +6 -0
  91. lets_plot-4.8.1rc1.dist-info/licenses/LICENSE +21 -0
  92. lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.FreeType +166 -0
  93. lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.ImageMagick +106 -0
  94. lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.expat +21 -0
  95. lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.fontconfig +200 -0
  96. lets_plot-4.8.1rc1.dist-info/top_level.txt +2 -0
  97. lets_plot_kotlin_bridge.cpython-311-x86_64-linux-gnu.so +0 -0
@@ -0,0 +1,97 @@
1
+ lets_plot_kotlin_bridge.cpython-311-x86_64-linux-gnu.so,sha256=is708GkWRSFTM2LEOKi7F5xTpPcvYRHiPpp8E6Kct10,20281744
2
+ lets_plot/__init__.py,sha256=xP3t0o4xjJVjCUG0v16mIrOZgURR3MXLe64douhrTE8,17284
3
+ lets_plot/_global_settings.py,sha256=DSagEhxxfBlrxGQsk4ydwmOmMSOIJfJegBNFKLpdllk,7502
4
+ lets_plot/_kbridge.py,sha256=50eNgA6KeMcEr3IavF__mph_M6cfeKzyusvecV1K18U,7573
5
+ lets_plot/_type_utils.py,sha256=mlNG1J0Lgt7n0gERJZFkdhP6B3C7iZD5WRMB0yS6-r0,3828
6
+ lets_plot/_version.py,sha256=XU08knf3SbBIp36pPI_0NweuTIM9i-mjBJPNp0hHXmQ,236
7
+ lets_plot/mapping.py,sha256=VDvkHxiNXfTNWV3dzBYa3Cfy8z7VdW12papmTUlL06M,3584
8
+ lets_plot/settings_utils.py,sha256=nDtemq2zuEJ6Qulm1IXvSPhKEQt2xtztwkD247cg4sU,9087
9
+ lets_plot/tilesets.py,sha256=gN7gfn4qnXZj699LyxpDWwEuWwNmAJr2ZQ7VJX7rzoU,10382
10
+ lets_plot/bistro/__init__.py,sha256=4Vix3Qu2P4zqGiDx8gnTd3usCLQQGBRKhseSNjrsBUY,426
11
+ lets_plot/bistro/_plot2d_common.py,sha256=YW7t2jHxvbUUERMPHjgCsZadeBl4244ioZLoF30Ok_A,4122
12
+ lets_plot/bistro/corr.py,sha256=rOjbCDr5GE6DPK4UFrErDrRBnofeQrinkNeu-kk5wDc,13923
13
+ lets_plot/bistro/im.py,sha256=Dc3B0B264jHV1od8VuxcvoQZGC7sHu2kRSy2lWenCt4,6453
14
+ lets_plot/bistro/joint.py,sha256=c7oTAr7XrpVjiQt17ufjevTROIYJddyrNY5qGjpcMCg,6757
15
+ lets_plot/bistro/qq.py,sha256=BeTc2VGBNIxvArs80jptXzc-dhKhZk6HhFUQeBqTbN0,8298
16
+ lets_plot/bistro/residual.py,sha256=vaU_XHYdruZZR71D1V2SyZWbNehv9RA_-Ka76EtTo9E,12506
17
+ lets_plot/bistro/waterfall.py,sha256=ZZ2ytdkzyhpzCALyt9cZ-vhmUuOFt4x3poCWKhNUBRg,14880
18
+ lets_plot/export/__init__.py,sha256=lDs6fqtQjkgJyKqeYlOdhrHMN__TeggTz73hgHAkyzc,188
19
+ lets_plot/export/ggsave_.py,sha256=fTs0gCOYm7BIlr1ej76wcFQxv-zrsX5dvQfB9BeNA8s,6512
20
+ lets_plot/frontend_context/__init__.py,sha256=nqIogfMulwKRY2l_v3Rn7tXMQ1btasX9f7dwfrVaj_A,204
21
+ lets_plot/frontend_context/_configuration.py,sha256=X1fitdtUSCPfgaKwTvY9rpycndavHKbJN8Z6QGLFIiA,4841
22
+ lets_plot/frontend_context/_dynamic_configure_html.py,sha256=QDCN3OY26iUlTVu3faLHrhd0X8EVsWYQTPyGLU7Sli0,4115
23
+ lets_plot/frontend_context/_frontend_ctx.py,sha256=073vxq0laO6ubol3kJK6aBbWo9Fr2_olbQEZUbr_QFc,359
24
+ lets_plot/frontend_context/_html_contexts.py,sha256=tGFWvfCjDSLi3Xq5sFIlX3Geh4QP00Y7dHig8tkCVS0,7238
25
+ lets_plot/frontend_context/_intellij_python_json_ctx.py,sha256=pklGvBxke3nvK4gWgK5TuFAEzr2ywDtLtC7_V9lHMPE,1116
26
+ lets_plot/frontend_context/_isolated_webview_panel_ctx.py,sha256=G0INumSx-LodZQCz7_w1rqXV7SU-Pk54-1QdslHkyDo,2848
27
+ lets_plot/frontend_context/_json_contexts.py,sha256=5yzjvcyg5ZXgVJPWkN5GNiaa2BBUkxd2BXzF0QnCfdA,1371
28
+ lets_plot/frontend_context/_jupyter_notebook_ctx.py,sha256=gWuJYk1Beky8qK-jLbIXLXQngPwKGtQX_hu7TvK3gsI,2807
29
+ lets_plot/frontend_context/_mime_types.py,sha256=Ka1IlWM8IgKZJePrg1GHDwNqH1Lz3z3AWAjLY6ylSb8,239
30
+ lets_plot/frontend_context/_static_html_page_ctx.py,sha256=go3iaxAkdG2WO5hc_grQVMxgNBdIM71H_LjmV7vji34,2722
31
+ lets_plot/frontend_context/_static_svg_ctx.py,sha256=xc4EP8Lsa1kRID1-Jb5R40uG02OEMTKVwdUaSw4yQ_0,820
32
+ lets_plot/frontend_context/_webbr_html_page_ctx.py,sha256=n_RunY5jmUn5UW_uD_DI_JSATIiTX3YWZtKLwReKNAY,868
33
+ lets_plot/frontend_context/sandbox.py,sha256=7fKogCbxiYbE3zt6efsaISP5t3-kbgGeDJ3MLr11u2g,140
34
+ lets_plot/geo_data/__init__.py,sha256=vSa3yEc79hgIyXPEMTK2sAroRARs71nd5hrKO9sNiM4,588
35
+ lets_plot/geo_data/core.py,sha256=dzfSWRB_UZDAbD_UfYOM0OHpUBfCFnNZvDXuPRCo1Pk,10393
36
+ lets_plot/geo_data/geocoder.py,sha256=vbwSMa-MheMV7_4auklKFMrvWNpeDVAuT0q1Yzh14So,35084
37
+ lets_plot/geo_data/geocodes.py,sha256=DOdJKa2UVrf4ME64_6H9prrzLZ5ohgp9SKRnq4zgVu0,17861
38
+ lets_plot/geo_data/livemap_helper.py,sha256=vmmkC8FkBckFlSLpsps794OtYqRnEVCGn5NkZLOmw9o,2085
39
+ lets_plot/geo_data/to_geo_data_frame.py,sha256=jvOi2xyoJPK_CPEDvjidzeI3d8o06HtD0ZLmsHHG5-M,5321
40
+ lets_plot/geo_data/type_assertion.py,sha256=ldO3pgs_RA8OFCXhoykdCXjZZi8YhPWcLTM377_vh8k,775
41
+ lets_plot/geo_data/gis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ lets_plot/geo_data/gis/fluent_dict.py,sha256=WR1uREV2vx_krAQdegol1fIIebtbWm3bb_8jDt7uj-E,7030
43
+ lets_plot/geo_data/gis/geocoding_service.py,sha256=UfM0xMf_9MC0_8EtHiJTLSI6CKbrC4_OqtMSTg2oCxI,1652
44
+ lets_plot/geo_data/gis/geometry.py,sha256=kPtKDx35N4p7vhtaLOVA0rfHqsVYSDwMT5NhD8ydijQ,2418
45
+ lets_plot/geo_data/gis/json_request.py,sha256=CSNQRcgVVkeYjJ4uQ8_ppJ3CFgPm4JqmmeVR6q9HE-Y,10546
46
+ lets_plot/geo_data/gis/json_response.py,sha256=kpulh_-3CuRtP8lGSu6vdYFuZe5UHvt0s6-cvIK524Y,12353
47
+ lets_plot/geo_data/gis/request.py,sha256=TzNcbX05YY4eB9_y78FBVI6mCtbPCgdQnm5M_h7e_n4,17413
48
+ lets_plot/geo_data/gis/response.py,sha256=7Ac2VN4Hl9iffm7wAyfL80Wzo7sG9A1F5BqzJU3uZgQ,8014
49
+ lets_plot/geo_data_internals/__init__.py,sha256=4R6hr7MVB9iRi9JNQm_UUQL9jCe_dYDtizw_230V2Yg,234
50
+ lets_plot/geo_data_internals/constants.py,sha256=IDpHhOOg7dbfIKqLNSk3AGa-5HjDcnItFZDxCm4fylw,428
51
+ lets_plot/geo_data_internals/utils.py,sha256=phV_Q84xz4uZH2jI9WLUrYDyZAz0d2-00OOLxkRH4iw,967
52
+ lets_plot/package_data/lets-plot.min.js,sha256=xDNE-a1LHPBJm5GdfXQKq8K2-kfGMu69rg35Hk2VdYY,2736931
53
+ lets_plot/plot/__init__.py,sha256=RNsQuVS8qe4Xf4so7PJiQJKdYYnDMIqydUQNzstqhZI,1771
54
+ lets_plot/plot/_global_theme.py,sha256=hOV9MzYpfjdF6hDE3mfLv_LqFtaouCJcccoW8pGoFoU,297
55
+ lets_plot/plot/annotation.py,sha256=2gwx2QZ2N-uH--XdckdWpJTZYCx9rdEohc5Wybxgfmg,9851
56
+ lets_plot/plot/coord.py,sha256=IG1EJYfEUIueGVBny-e2Vfc5NZJCJ4_B-Djtwk7sPxI,7984
57
+ lets_plot/plot/core.py,sha256=jXs-44sOMaIfj2_iYTgHPnZ2u4GtI16cMOnYod7lnrM,38103
58
+ lets_plot/plot/expand_limits_.py,sha256=q5Vrx4nls_KbFCyQIo1YTXznMaa7TFx0_HAMNRSzwMk,2445
59
+ lets_plot/plot/facet.py,sha256=xwz8M3_l4PfjkZsvXj_aIzhybJSN7ke8pAcY-L36Pvg,7297
60
+ lets_plot/plot/font_features.py,sha256=ju-DUr_t2frOxm3_gQjA6gmQmfwuP1SAtF7dxnLGiao,2242
61
+ lets_plot/plot/geom.py,sha256=sj3JobzLJ1hLtZ_OtMh2i8vg8efOSTfvg1sw79jpraA,423461
62
+ lets_plot/plot/geom_extras.py,sha256=pVfd_A0TrrrQecuJw4TN4Ea297Rpz7seYYuZcxqg-O8,1696
63
+ lets_plot/plot/geom_function_.py,sha256=wws5Cl0huD08vqk0Oqi3CoinT9ynpJScMjP4_b-jzeM,8317
64
+ lets_plot/plot/geom_imshow_.py,sha256=G_DzmyTTZdNye0g9indu3KqQssClmoUqy-0ilurtrWo,14605
65
+ lets_plot/plot/geom_livemap_.py,sha256=vmE_uGPT3wjz50POKsD5y1aRbSn07dqa0V6qtjT9Obo,13277
66
+ lets_plot/plot/ggbunch_.py,sha256=qSuw07ImjECJW0EzqnWtbWkc59b9NKh-4O1wNe2AbSE,3093
67
+ lets_plot/plot/gggrid_.py,sha256=5u4McYjQKfnmGs0_eXEBYyof_MuDig0_lakga2ypTjA,4619
68
+ lets_plot/plot/ggtb_.py,sha256=ZscIqa89hwyCtXAFHT_cR4R-GCDiPI66gfcyWqVZ2eM,2812
69
+ lets_plot/plot/guide.py,sha256=Y4qChtVYOehEqGzqHPLDvAZeoRK-P9dDHPTktP109ho,7052
70
+ lets_plot/plot/label.py,sha256=Wf9tMBdlYK4v1JTK2wi-PkqdXB2wGXaTpRhx8auFJGY,4632
71
+ lets_plot/plot/marginal_layer.py,sha256=NtyX0spOYmRztnte2xQJ3iFhKVq-fzmjBqD_a79s5mU,6376
72
+ lets_plot/plot/plot.py,sha256=5H3GCE2xabpkwRRLbhrHvpmfg9v9EQxLWJpbRRrx-as,8382
73
+ lets_plot/plot/pos.py,sha256=Dohs925Xg-m7wtPI0FgmuIwfc5SgId4RpJfL3EmngAA,11403
74
+ lets_plot/plot/sampling.py,sha256=J_KOgrbIx58xXr3t8xoUeHHpHweJ5yXqbC1nHG2p8_A,8505
75
+ lets_plot/plot/sandbox_.py,sha256=Tb5UwJqe8HMMSCbDLdrj_BcxPSkmyxy-hI0_2L6kpBk,545
76
+ lets_plot/plot/scale.py,sha256=O4kKjpW8xVWj1HFXAawM9LoWDLHHDP1I80uu9UohTZA,142105
77
+ lets_plot/plot/scale_colormap_mpl.py,sha256=EFf-6gGniGFKGRYanfiM8dSkWNdiau_Wefb6wDT7Gxs,10729
78
+ lets_plot/plot/scale_convenience.py,sha256=7c0WEbazscWleBH7_ezstmIb1wjOYu-4Ab1-HWy0Rvk,4128
79
+ lets_plot/plot/scale_identity_.py,sha256=oxekwcGXDcBn0Zrigb_6EU68BUWMXGEbt6Sp9YiCkyw,23570
80
+ lets_plot/plot/scale_position.py,sha256=cqXmVa8nv2L6tPeFut29rpWIg4LSOiNUkFB_ocGRFew,47004
81
+ lets_plot/plot/series_meta.py,sha256=o9J01J5A-vsPbMlSaEaBFpXvm1O3pURyx339dPinPWo,7162
82
+ lets_plot/plot/stat.py,sha256=ufeXV_wNPe3Qi6cPeQ4Er_GP346mSGLwNI6tmnDR9PU,24401
83
+ lets_plot/plot/subplots.py,sha256=zC3xTKLIkH4YyLK2QTp8X-E1HbynYDF2LZQ5LZo6pZw,11852
84
+ lets_plot/plot/subplots_util.py,sha256=T04pwI7LaYliUqEdRHog1SGExVt9XosQk6XDwqOg7q0,913
85
+ lets_plot/plot/theme_.py,sha256=fXdRC1hJwfxb2_N4u3RNzZvIymK9BsSTRUqiwDvivpM,39036
86
+ lets_plot/plot/theme_set.py,sha256=TGTZ2YLR8Fxtkq0-B1oF2A7cDmwxgjUxsfEnf61iTyU,9959
87
+ lets_plot/plot/tooltip.py,sha256=w2OHySKcftTFeT55KfHrOBV4uB_aE009RDsb2pF70tw,16011
88
+ lets_plot/plot/util.py,sha256=WS4CR9dH5xdLm8fRrX5kR9dQL0XZEiCTvtzz_yo-4bE,10456
89
+ lets_plot-4.8.1rc1.dist-info/METADATA,sha256=Axoymdwou2YfJdriMFVtrRE3ZGeaQWXVO9taedJwXB4,12687
90
+ lets_plot-4.8.1rc1.dist-info/WHEEL,sha256=_CFvICYDmZlAYHt8L7Zn3n-BGLj8dkZLQPp22Piy5JE,151
91
+ lets_plot-4.8.1rc1.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
92
+ lets_plot-4.8.1rc1.dist-info/RECORD,,
93
+ lets_plot-4.8.1rc1.dist-info/licenses/LICENSE,sha256=r43VKLFaMylB4Ru-pE07j0cfUO7wQpMnWm-uZ8hEqMw,1066
94
+ lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.FreeType,sha256=7YOXABSJgU7bZvuf8s6ySO493IEQ2hotc3nsCvHx3us,6718
95
+ lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.ImageMagick,sha256=pVbFKSyHyaaseVyAZpsMNmD59ynejEdr8rEPg6sbNOw,12577
96
+ lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.expat,sha256=MbFd6CqhmoRRVhaaF6VIi_WX5WGywxjRWe1YMTmyXoc,1144
97
+ lets_plot-4.8.1rc1.dist-info/licenses/licenses/LICENSE.fontconfig,sha256=UaUaqYI3BP2QvMxhbN0X66u1srPpy96IbKAscAIogGc,8616
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-manylinux_2_17_x86_64
5
+ Tag: cp311-cp311-manylinux2014_x86_64
6
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 JetBrains
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,166 @@
1
+ The FreeType Project LICENSE
2
+ ----------------------------
3
+
4
+ 2006-Jan-27
5
+
6
+ Copyright 1996-2002, 2006 by
7
+ David Turner, Robert Wilhelm, and Werner Lemberg
8
+
9
+
10
+
11
+ Introduction
12
+ ============
13
+
14
+ The FreeType Project is distributed in several archive packages;
15
+ some of them may contain, in addition to the FreeType font engine,
16
+ various tools and contributions which rely on, or relate to, the
17
+ FreeType Project.
18
+
19
+ This license applies to all files found in such packages, and
20
+ which do not fall under their own explicit license. The license
21
+ affects thus the FreeType font engine, the test programs,
22
+ documentation and makefiles, at the very least.
23
+
24
+ This license was inspired by the BSD, Artistic, and IJG
25
+ (Independent JPEG Group) licenses, which all encourage inclusion
26
+ and use of free software in commercial and freeware products
27
+ alike. As a consequence, its main points are that:
28
+
29
+ o We don't promise that this software works. However, we will be
30
+ interested in any kind of bug reports. (`as is' distribution)
31
+
32
+ o You can use this software for whatever you want, in parts or
33
+ full form, without having to pay us. (`royalty-free' usage)
34
+
35
+ o You may not pretend that you wrote this software. If you use
36
+ it, or only parts of it, in a program, you must acknowledge
37
+ somewhere in your documentation that you have used the
38
+ FreeType code. (`credits')
39
+
40
+ We specifically permit and encourage the inclusion of this
41
+ software, with or without modifications, in commercial products.
42
+ We disclaim all warranties covering The FreeType Project and
43
+ assume no liability related to The FreeType Project.
44
+
45
+
46
+ Finally, many people asked us for a preferred form for a
47
+ credit/disclaimer to use in compliance with this license. We thus
48
+ encourage you to use the following text:
49
+
50
+ """
51
+ Portions of this software are copyright © <year> The FreeType
52
+ Project (www.freetype.org). All rights reserved.
53
+ """
54
+
55
+ Please replace <year> with the value from the FreeType version you
56
+ actually use.
57
+
58
+
59
+ Legal Terms
60
+ ===========
61
+
62
+ 0. Definitions
63
+ --------------
64
+
65
+ Throughout this license, the terms `package', `FreeType Project',
66
+ and `FreeType archive' refer to the set of files originally
67
+ distributed by the authors (David Turner, Robert Wilhelm, and
68
+ Werner Lemberg) as the `FreeType Project', be they named as alpha,
69
+ beta or final release.
70
+
71
+ `You' refers to the licensee, or person using the project, where
72
+ `using' is a generic term including compiling the project's source
73
+ code as well as linking it to form a `program' or `executable'.
74
+ This program is referred to as `a program using the FreeType
75
+ engine'.
76
+
77
+ This license applies to all files distributed in the original
78
+ FreeType Project, including all source code, binaries and
79
+ documentation, unless otherwise stated in the file in its
80
+ original, unmodified form as distributed in the original archive.
81
+ If you are unsure whether or not a particular file is covered by
82
+ this license, you must contact us to verify this.
83
+
84
+ The FreeType Project is copyright (C) 1996-2000 by David Turner,
85
+ Robert Wilhelm, and Werner Lemberg. All rights reserved except as
86
+ specified below.
87
+
88
+ 1. No Warranty
89
+ --------------
90
+
91
+ THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
92
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
93
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94
+ PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
95
+ BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
96
+ USE, OF THE FREETYPE PROJECT.
97
+
98
+ 2. Redistribution
99
+ -----------------
100
+
101
+ This license grants a worldwide, royalty-free, perpetual and
102
+ irrevocable right and license to use, execute, perform, compile,
103
+ display, copy, create derivative works of, distribute and
104
+ sublicense the FreeType Project (in both source and object code
105
+ forms) and derivative works thereof for any purpose; and to
106
+ authorize others to exercise some or all of the rights granted
107
+ herein, subject to the following conditions:
108
+
109
+ o Redistribution of source code must retain this license file
110
+ (`FTL.TXT') unaltered; any additions, deletions or changes to
111
+ the original files must be clearly indicated in accompanying
112
+ documentation. The copyright notices of the unaltered,
113
+ original files must be preserved in all copies of source
114
+ files.
115
+
116
+ o Redistribution in binary form must provide a disclaimer that
117
+ states that the software is based in part of the work of the
118
+ FreeType Team, in the distribution documentation. We also
119
+ encourage you to put an URL to the FreeType web page in your
120
+ documentation, though this isn't mandatory.
121
+
122
+ These conditions apply to any software derived from or based on
123
+ the FreeType Project, not just the unmodified files. If you use
124
+ our work, you must acknowledge us. However, no fee need be paid
125
+ to us.
126
+
127
+ 3. Advertising
128
+ --------------
129
+
130
+ Neither the FreeType authors and contributors nor you shall use
131
+ the name of the other for commercial, advertising, or promotional
132
+ purposes without specific prior written permission.
133
+
134
+ We suggest, but do not require, that you use one or more of the
135
+ following phrases to refer to this software in your documentation
136
+ or advertising materials: `FreeType Project', `FreeType Engine',
137
+ `FreeType library', or `FreeType Distribution'.
138
+
139
+ As you have not signed this license, you are not required to
140
+ accept it. However, as the FreeType Project is copyrighted
141
+ material, only this license, or another one contracted with the
142
+ authors, grants you the right to use, distribute, and modify it.
143
+ Therefore, by using, distributing, or modifying the FreeType
144
+ Project, you indicate that you understand and accept all the terms
145
+ of this license.
146
+
147
+ 4. Contacts
148
+ -----------
149
+
150
+ There are two mailing lists related to FreeType:
151
+
152
+ o freetype@nongnu.org
153
+
154
+ Discusses general use and applications of FreeType, as well as
155
+ future and wanted additions to the library and distribution.
156
+ If you are looking for support, start in this list if you
157
+ haven't found anything to help you in the documentation.
158
+
159
+ o freetype-devel@nongnu.org
160
+
161
+ Discusses bugs, as well as engine internals, design issues,
162
+ specific licenses, porting, etc.
163
+
164
+ Our home page can be found at
165
+
166
+ https://www.freetype.org
@@ -0,0 +1,106 @@
1
+ ImageMagick License
2
+ https://imagemagick.org/script/license.php
3
+
4
+ Before we get to the text of the license, lets just review what the license says in simple terms:
5
+
6
+ It allows you to:
7
+
8
+ * freely download and use ImageMagick software, in whole or in part, for personal, company internal, or commercial purposes;
9
+ * use ImageMagick software in packages or distributions that you create;
10
+ * link against a library under a different license;
11
+ * link code under a different license against a library under this license;
12
+ * merge code into a work under a different license;
13
+ * extend patent grants to any code using code under this license;
14
+ * and extend patent protection.
15
+
16
+ It forbids you to:
17
+
18
+ * redistribute any piece of ImageMagick-originated software without proper attribution;
19
+ * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that ImageMagick Studio LLC endorses your distribution;
20
+ * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that you created the ImageMagick software in question.
21
+
22
+ It requires you to:
23
+
24
+ * include a copy of the license in any redistribution you may make that includes ImageMagick software;
25
+ * provide clear attribution to ImageMagick Studio LLC for any distributions that include ImageMagick software.
26
+
27
+ It does not require you to:
28
+
29
+ * include the source of the ImageMagick software itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it;
30
+ * submit changes that you make to the software back to the ImageMagick Studio LLC (though such feedback is encouraged).
31
+
32
+ A few other clarifications include:
33
+
34
+ * ImageMagick is freely available without charge;
35
+ * you may include ImageMagick on a DVD as long as you comply with the terms of the license;
36
+ * you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software;
37
+ * the license is compatible with the GPL V3.
38
+ * when exporting the ImageMagick software, review its export classification.
39
+
40
+ Terms and Conditions for Use, Reproduction, and Distribution
41
+
42
+ The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow:
43
+
44
+ Copyright @ 1999 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available.
45
+
46
+ 1. Definitions.
47
+
48
+ License shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
49
+
50
+ Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
51
+
52
+ Legal Entity shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, control means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
53
+
54
+ You (or Your) shall mean an individual or Legal Entity exercising permissions granted by this License.
55
+
56
+ Source form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
57
+
58
+ Object form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
59
+
60
+ Work shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
61
+
62
+ Derivative Works shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
63
+
64
+ Contribution shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as Not a Contribution.
65
+
66
+ Contributor shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
69
+
70
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
71
+
72
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
73
+
74
+ * You must give any other recipients of the Work or Derivative Works a copy of this License; and
75
+ * You must cause any modified files to carry prominent notices stating that You changed the files; and
76
+ * You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
77
+ * If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
78
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
79
+
80
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
81
+
82
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
83
+
84
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
85
+
86
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
87
+
88
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
89
+
90
+ How to Apply the License to your Work
91
+
92
+ To apply the ImageMagick License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information (don't include the brackets). The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
93
+
94
+ Copyright [yyyy] [name of copyright owner]
95
+
96
+ Licensed under the ImageMagick License (the "License"); you may not use
97
+ this file except in compliance with the License. You may obtain a copy
98
+ of the License at
99
+
100
+ https://imagemagick.org/script/license.php
101
+
102
+ Unless required by applicable law or agreed to in writing, software
103
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
104
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
105
+ License for the specific language governing permissions and limitations
106
+ under the License.
@@ -0,0 +1,21 @@
1
+ Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper
2
+ Copyright (c) 2001-2025 Expat maintainers
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining
5
+ a copy of this software and associated documentation files (the
6
+ "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish,
8
+ distribute, sublicense, and/or sell copies of the Software, and to
9
+ permit persons to whom the Software is furnished to do so, subject to
10
+ the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included
13
+ in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,200 @@
1
+ fontconfig/COPYING
2
+
3
+ Copyright © 2000,2001,2002,2003,2004,2006,2007 Keith Packard
4
+ Copyright © 2005 Patrick Lam
5
+ Copyright © 2007 Dwayne Bailey and Translate.org.za
6
+ Copyright © 2009 Roozbeh Pournader
7
+ Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Red Hat, Inc.
8
+ Copyright © 2008 Danilo Šegan
9
+ Copyright © 2012 Google, Inc.
10
+
11
+
12
+ Permission to use, copy, modify, distribute, and sell this software and its
13
+ documentation for any purpose is hereby granted without fee, provided that
14
+ the above copyright notice appear in all copies and that both that
15
+ copyright notice and this permission notice appear in supporting
16
+ documentation, and that the name of the author(s) not be used in
17
+ advertising or publicity pertaining to distribution of the software without
18
+ specific, written prior permission. The authors make no
19
+ representations about the suitability of this software for any purpose. It
20
+ is provided "as is" without express or implied warranty.
21
+
22
+ THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
23
+ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
24
+ EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
25
+ CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
26
+ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28
+ PERFORMANCE OF THIS SOFTWARE.
29
+
30
+
31
+ --------------------------------------------------------------------------------
32
+ fontconfig/fc-case/CaseFolding.txt
33
+
34
+ © 2019 Unicode®, Inc.
35
+ Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
36
+ For terms of use, see http://www.unicode.org/terms_of_use.html
37
+
38
+
39
+ --------------------------------------------------------------------------------
40
+ fontconfig/src/fcatomic.h
41
+
42
+ /*
43
+ * Mutex operations. Originally copied from HarfBuzz.
44
+ *
45
+ * Copyright © 2007 Chris Wilson
46
+ * Copyright © 2009,2010 Red Hat, Inc.
47
+ * Copyright © 2011,2012,2013 Google, Inc.
48
+ *
49
+ * Permission is hereby granted, without written agreement and without
50
+ * license or royalty fees, to use, copy, modify, and distribute this
51
+ * software and its documentation for any purpose, provided that the
52
+ * above copyright notice and the following two paragraphs appear in
53
+ * all copies of this software.
54
+ *
55
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
56
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
57
+ * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
58
+ * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
59
+ * DAMAGE.
60
+ *
61
+ * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
62
+ * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
63
+ * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
64
+ * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
65
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
66
+ *
67
+ * Contributor(s):
68
+ * Chris Wilson <chris@chris-wilson.co.uk>
69
+ * Red Hat Author(s): Behdad Esfahbod
70
+ * Google Author(s): Behdad Esfahbod
71
+ */
72
+
73
+
74
+ --------------------------------------------------------------------------------
75
+ fontconfig/src/fcfoundry.h
76
+
77
+ /*
78
+ Copyright © 2002-2003 by Juliusz Chroboczek
79
+
80
+ Permission is hereby granted, free of charge, to any person obtaining a copy
81
+ of this software and associated documentation files (the "Software"), to deal
82
+ in the Software without restriction, including without limitation the rights
83
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
84
+ copies of the Software, and to permit persons to whom the Software is
85
+ furnished to do so, subject to the following conditions:
86
+
87
+ The above copyright notice and this permission notice shall be included in
88
+ all copies or substantial portions of the Software.
89
+
90
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
91
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
92
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
93
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
94
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
95
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
96
+ THE SOFTWARE.
97
+ */
98
+
99
+
100
+ --------------------------------------------------------------------------------
101
+ fontconfig/src/fcmd5.h
102
+
103
+ /*
104
+ * This code implements the MD5 message-digest algorithm.
105
+ * The algorithm is due to Ron Rivest. This code was
106
+ * written by Colin Plumb in 1993, no copyright is claimed.
107
+ * This code is in the public domain; do with it what you wish.
108
+ *
109
+ * Equivalent code is available from RSA Data Security, Inc.
110
+ * This code has been tested against that, and is equivalent,
111
+ * except that you don't need to include two pages of legalese
112
+ * with every copy.
113
+ *
114
+ * To compute the message digest of a chunk of bytes, declare an
115
+ * MD5Context structure, pass it to MD5Init, call MD5Update as
116
+ * needed on buffers full of bytes, and then call MD5Final, which
117
+ * will fill a supplied 16-byte array with the digest.
118
+ */
119
+
120
+
121
+ --------------------------------------------------------------------------------
122
+ fontconfig/src/fcmutex.h
123
+
124
+ /*
125
+ * Atomic int and pointer operations. Originally copied from HarfBuzz.
126
+ *
127
+ * Copyright © 2007 Chris Wilson
128
+ * Copyright © 2009,2010 Red Hat, Inc.
129
+ * Copyright © 2011,2012,2013 Google, Inc.
130
+ *
131
+ * Permission is hereby granted, without written agreement and without
132
+ * license or royalty fees, to use, copy, modify, and distribute this
133
+ * software and its documentation for any purpose, provided that the
134
+ * above copyright notice and the following two paragraphs appear in
135
+ * all copies of this software.
136
+ *
137
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
138
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
139
+ * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
140
+ * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
141
+ * DAMAGE.
142
+ *
143
+ * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
144
+ * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
145
+ * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
146
+ * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
147
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
148
+ *
149
+ * Contributor(s):
150
+ * Chris Wilson <chris@chris-wilson.co.uk>
151
+ * Red Hat Author(s): Behdad Esfahbod
152
+ * Google Author(s): Behdad Esfahbod
153
+ */
154
+
155
+
156
+ --------------------------------------------------------------------------------
157
+ fontconfig/src/ftglue.[ch]
158
+
159
+ /* ftglue.c: Glue code for compiling the OpenType code from
160
+ * FreeType 1 using only the public API of FreeType 2
161
+ *
162
+ * By David Turner, The FreeType Project (www.freetype.org)
163
+ *
164
+ * This code is explicitely put in the public domain
165
+ *
166
+ * ==========================================================================
167
+ *
168
+ * the OpenType parser codes was originally written as an extension to
169
+ * FreeType 1.x. As such, its source code was embedded within the library,
170
+ * and used many internal FreeType functions to deal with memory and
171
+ * stream i/o.
172
+ *
173
+ * When it was 'salvaged' for Pango and Qt, the code was "ported" to FreeType 2,
174
+ * which basically means that some macro tricks were performed in order to
175
+ * directly access FT2 _internal_ functions.
176
+ *
177
+ * these functions were never part of FT2 public API, and _did_ change between
178
+ * various releases. This created chaos for many users: when they upgraded the
179
+ * FreeType library on their system, they couldn't run Gnome anymore since
180
+ * Pango refused to link.
181
+ *
182
+ * Very fortunately, it's possible to completely avoid this problem because
183
+ * the FT_StreamRec and FT_MemoryRec structure types, which describe how
184
+ * memory and stream implementations interface with the rest of the font
185
+ * library, have always been part of the public API, and never changed.
186
+ *
187
+ * What we do thus is re-implement, within the OpenType parser, the few
188
+ * functions that depend on them. This only adds one or two kilobytes of
189
+ * code, and ensures that the parser can work with _any_ version
190
+ * of FreeType installed on your system. How sweet... !
191
+ *
192
+ * Note that we assume that Pango doesn't use any other internal functions
193
+ * from FreeType. It used to in old versions, but this should no longer
194
+ * be the case. (crossing my fingers).
195
+ *
196
+ * - David Turner
197
+ * - The FreeType Project (www.freetype.org)
198
+ *
199
+ * PS: This "glue" code is explicitely put in the public domain
200
+ */
@@ -0,0 +1,2 @@
1
+ lets_plot
2
+ lets_plot_kotlin_bridge