conandata.yml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. ---
  2. # Usage: defaults to None
  3. # If you're on a release branch create an entry for that **version** e.q.: `5.1.0` update the requirements (use pinned versions, not latest)
  4. # also create a beta entry for that **version** e.q.: `5.1.0-beta`, update the requirements (use the <dep_name>/(latest)@ultimaker/stable)
  5. #
  6. # If you're working on a feature/bugfix branch from a release branch, create an entry for that **channel**, update the requirements (use
  7. # the <dep_name>/(latest)@ultimaker/stable)
  8. #
  9. # If you're working on a feature/bugfix branch from a main branch, it is optional to create an entry for that **channel**, update the
  10. # requirements (use the <dep_name>/(latest)@ultimaker/testing)
  11. #
  12. # Subject to change in the future!
  13. "None":
  14. requirements:
  15. - "arcus/(latest)@ultimaker/testing"
  16. - "curaengine/(latest)@ultimaker/testing"
  17. - "savitar/(latest)@ultimaker/testing"
  18. - "pynest2d/(latest)@ultimaker/testing"
  19. - "uranium/(latest)@ultimaker/testing"
  20. - "fdm_materials/(latest)@ultimaker/testing"
  21. - "cura_binary_data/(latest)@ultimaker/testing"
  22. - "cpython/3.10.4"
  23. runinfo:
  24. entrypoint: "cura_app.py"
  25. pyinstaller:
  26. datas:
  27. cura_plugins:
  28. package: "cura"
  29. src: "plugins"
  30. dst: "share/cura/plugins"
  31. cura_resources:
  32. package: "cura"
  33. src: "resources"
  34. dst: "share/cura/resources"
  35. uranium_plugins:
  36. package: "uranium"
  37. src: "plugins"
  38. dst: "share/uranium/plugins"
  39. uranium_resources:
  40. package: "uranium"
  41. src: "resources"
  42. dst: "share/uranium/resources"
  43. uranium_um_qt_qml_um:
  44. package: "uranium"
  45. src: "site-packages/UM/Qt/qml/UM"
  46. dst: "PyQt6/Qt6/qml/UM"
  47. cura_binary_data:
  48. package: "cura_binary_data"
  49. src: "resources/cura/resources"
  50. dst: "share/cura/resources"
  51. uranium_binary_data:
  52. package: "cura_binary_data"
  53. src: "resources/uranium/resources"
  54. dst: "share/uranium/resources"
  55. windows_binary_data:
  56. package: "cura_binary_data"
  57. src: "windows"
  58. dst: "share/windows"
  59. fdm_materials:
  60. package: "fdm_materials"
  61. src: "materials"
  62. dst: "share/cura/resources/materials"
  63. tcl:
  64. package: "tcl"
  65. src: "lib/tcl8.6"
  66. dst: "tcl"
  67. tk:
  68. package: "tk"
  69. src: "lib/tk8.6"
  70. dst: "tk"
  71. binaries:
  72. curaengine:
  73. package: "curaengine"
  74. src: "bin"
  75. dst: "."
  76. binary: "CuraEngine"
  77. hiddenimports:
  78. - "pySavitar"
  79. - "pyArcus"
  80. - "pynest2d"
  81. - "PyQt6"
  82. - "PyQt6.QtNetwork"
  83. - "PyQt6.sip"
  84. - "logging.handlers"
  85. - "zeroconf"
  86. - "fcntl"
  87. - "stl"
  88. - "serial"
  89. collect_all:
  90. - "cura"
  91. - "UM"
  92. - "serial"
  93. - "Charon"
  94. - "sqlite3"
  95. - "trimesh"
  96. - "win32ctypes"
  97. - "PyQt6"
  98. - "PyQt6.QtNetwork"
  99. - "PyQt6.sip"
  100. - "stl"
  101. icon:
  102. Windows: "./icons/Cura.ico"
  103. Macos: "./icons/cura.icns"
  104. Linux: "./icons/cura-128.png"
  105. "5.1.0":
  106. requirements:
  107. - "arcus/5.1.0"
  108. - "curaengine/5.1.0"
  109. - "savitar/5.1.0"
  110. - "pynest2d/5.1.0"
  111. - "uranium/5.1.0"
  112. - "fdm_materials/5.1.0"
  113. - "cura_binary_data/5.1.0"
  114. - "cpython/3.10.4"
  115. runinfo:
  116. entrypoint: "cura_app.py"
  117. pyinstaller:
  118. datas:
  119. cura_plugins:
  120. package: "cura"
  121. src: "plugins"
  122. dst: "share/cura/plugins"
  123. cura_resources:
  124. package: "cura"
  125. src: "resources"
  126. dst: "share/cura/resources"
  127. uranium_plugins:
  128. package: "uranium"
  129. src: "plugins"
  130. dst: "share/uranium/plugins"
  131. uranium_resources:
  132. package: "uranium"
  133. src: "resources"
  134. dst: "share/uranium/resources"
  135. uranium_um_qt_qml_um:
  136. package: "uranium"
  137. src: "site-packages/UM/Qt/qml/UM"
  138. dst: "PyQt6/Qt6/qml/UM"
  139. cura_binary_data:
  140. package: "cura_binary_data"
  141. src: "resources/cura/resources"
  142. dst: "share/cura/resources"
  143. uranium_binary_data:
  144. package: "cura_binary_data"
  145. src: "resources/uranium/resources"
  146. dst: "share/uranium/resources"
  147. windows_binary_data:
  148. package: "cura_binary_data"
  149. src: "windows"
  150. dst: "share/windows"
  151. fdm_materials:
  152. package: "fdm_materials"
  153. src: "materials"
  154. dst: "share/cura/resources/materials"
  155. tcl:
  156. package: "tcl"
  157. src: "lib/tcl8.6"
  158. dst: "tcl"
  159. tk:
  160. package: "tk"
  161. src: "lib/tk8.6"
  162. dst: "tk"
  163. binaries:
  164. curaengine:
  165. package: "curaengine"
  166. src: "bin"
  167. dst: "."
  168. binary: "CuraEngine"
  169. hiddenimports:
  170. - "pySavitar"
  171. - "pyArcus"
  172. - "pynest2d"
  173. - "PyQt6"
  174. - "PyQt6.QtNetwork"
  175. - "PyQt6.sip"
  176. - "logging.handlers"
  177. - "zeroconf"
  178. - "fcntl"
  179. - "stl"
  180. - "serial"
  181. collect_all:
  182. - "cura"
  183. - "UM"
  184. - "serial"
  185. - "Charon"
  186. - "sqlite3"
  187. - "trimesh"
  188. - "win32ctypes"
  189. - "PyQt6"
  190. - "PyQt6.QtNetwork"
  191. - "PyQt6.sip"
  192. - "stl"
  193. icon:
  194. Windows: "./icons/Cura.ico"
  195. Macos: "./icons/cura.icns"
  196. Linux: "./icons/cura-128.png"