conanfile.py 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. import os
  2. from pathlib import Path
  3. from jinja2 import Template
  4. from conan import ConanFile
  5. from conan.tools.files import copy, rmdir, save, mkdir, rm
  6. from conan.tools.microsoft import unix_path
  7. from conan.tools.env import VirtualRunEnv, Environment, VirtualBuildEnv
  8. from conan.tools.scm import Version
  9. from conan.errors import ConanInvalidConfiguration, ConanException
  10. required_conan_version = ">=1.58.0 <2.0.0"
  11. class CuraConan(ConanFile):
  12. name = "cura"
  13. license = "LGPL-3.0"
  14. author = "UltiMaker"
  15. url = "https://github.com/Ultimaker/cura"
  16. description = "3D printer / slicing GUI built on top of the Uranium framework"
  17. topics = ("conan", "python", "pyqt6", "qt", "qml", "3d-printing", "slicer")
  18. build_policy = "missing"
  19. exports = "LICENSE*", "*.jinja"
  20. settings = "os", "compiler", "build_type", "arch"
  21. # FIXME: Remove specific branch once merged to main
  22. python_requires = "translationextractor/[>=2.1.1]@ultimaker/stable"
  23. options = {
  24. "enterprise": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string
  25. "staging": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string
  26. "devtools": [True, False], # FIXME: Split this up in testing and (development / build (pyinstaller) / system installer) tools
  27. "cloud_api_version": "ANY",
  28. "display_name": "ANY", # TODO: should this be an option??
  29. "cura_debug_mode": [True, False], # FIXME: Use profiles
  30. "internal": [True, False],
  31. "enable_i18n": [True, False],
  32. }
  33. default_options = {
  34. "enterprise": "False",
  35. "staging": "False",
  36. "devtools": False,
  37. "cloud_api_version": "1",
  38. "display_name": "UltiMaker Cura",
  39. "cura_debug_mode": False, # Not yet implemented
  40. "internal": False,
  41. "enable_i18n": False,
  42. }
  43. def set_version(self):
  44. if not self.version:
  45. self.version = "5.6.0-beta.1"
  46. @property
  47. def _pycharm_targets(self):
  48. return self.conan_data["pycharm_targets"]
  49. # FIXME: These env vars should be defined in the runenv.
  50. _cura_env = None
  51. @property
  52. def _cura_run_env(self):
  53. if self._cura_env:
  54. return self._cura_env
  55. self._cura_env = Environment()
  56. self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml")))
  57. self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins")))
  58. if not self.in_local_cache:
  59. self._cura_env.define( "CURA_DATA_ROOT", str(self._share_dir.joinpath("cura")))
  60. if self.settings.os == "Linux":
  61. self._cura_env.define("QT_QPA_FONTDIR", "/usr/share/fonts")
  62. self._cura_env.define("QT_QPA_PLATFORMTHEME", "xdgdesktopportal")
  63. self._cura_env.define("QT_XKB_CONFIG_ROOT", "/usr/share/X11/xkb")
  64. return self._cura_env
  65. @property
  66. def _enterprise(self):
  67. return self.options.enterprise in ["True", 'true']
  68. @property
  69. def _app_name(self):
  70. if self._enterprise:
  71. return str(self.options.display_name) + " Enterprise"
  72. return str(self.options.display_name)
  73. @property
  74. def _urls(self):
  75. if self.options.staging in ["True", 'true']:
  76. return "staging"
  77. return "default"
  78. @property
  79. def requirements_txts(self):
  80. if self.options.devtools:
  81. return ["requirements.txt", "requirements-ultimaker.txt", "requirements-dev.txt"]
  82. return ["requirements.txt", "requirements-ultimaker.txt"]
  83. @property
  84. def _base_dir(self):
  85. if self.install_folder is None:
  86. if self.build_folder is not None:
  87. return Path(self.build_folder)
  88. return Path(os.getcwd(), "venv")
  89. if self.in_local_cache:
  90. return Path(self.install_folder)
  91. else:
  92. return Path(self.source_folder, "venv")
  93. @property
  94. def _share_dir(self):
  95. return self._base_dir.joinpath("share")
  96. @property
  97. def _script_dir(self):
  98. if self.settings.os == "Windows":
  99. return self._base_dir.joinpath("Scripts")
  100. return self._base_dir.joinpath("bin")
  101. @property
  102. def _site_packages(self):
  103. if self.settings.os == "Windows":
  104. return self._base_dir.joinpath("Lib", "site-packages")
  105. py_version = Version(self.deps_cpp_info["cpython"].version)
  106. return self._base_dir.joinpath("lib", f"python{py_version.major}.{py_version.minor}", "site-packages")
  107. @property
  108. def _py_interp(self):
  109. py_interp = self._script_dir.joinpath(Path(self.deps_user_info["cpython"].python).name)
  110. if self.settings.os == "Windows":
  111. py_interp = Path(*[f'"{p}"' if " " in p else p for p in py_interp.parts])
  112. return py_interp
  113. @property
  114. def _pyinstaller_spec_arch(self):
  115. if self.settings.os == "Macos":
  116. if self.settings.arch == "armv8":
  117. return "'arm64'"
  118. return "'x86_64'"
  119. return "None"
  120. def _conan_installs(self):
  121. conan_installs = {}
  122. # list of conan installs
  123. for dependency in self.dependencies.host.values():
  124. conan_installs[dependency.ref.name] = {
  125. "version": dependency.ref.version,
  126. "revision": dependency.ref.revision
  127. }
  128. return conan_installs
  129. def _python_installs(self):
  130. python_installs = {}
  131. # list of python installs
  132. python_ins_cmd = f"python -c \"import pkg_resources; print(';'.join([(s.key+','+ s.version) for s in pkg_resources.working_set]))\""
  133. from six import StringIO
  134. buffer = StringIO()
  135. self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer)
  136. packages = str(buffer.getvalue()).split("-----------------\n")
  137. packages = packages[1].strip('\r\n').split(";")
  138. for package in packages:
  139. name, version = package.split(",")
  140. python_installs[name] = {"version": version}
  141. return python_installs
  142. def _generate_cura_version(self, location):
  143. with open(os.path.join(self.recipe_folder, "CuraVersion.py.jinja"), "r") as f:
  144. cura_version_py = Template(f.read())
  145. # If you want a specific Cura version to show up on the splash screen add the user configuration `user.cura:version=VERSION`
  146. # the global.conf, profile, package_info (of dependency) or via the cmd line `-c user.cura:version=VERSION`
  147. cura_version = Version(self.conf.get("user.cura:version", default = self.version, check_type = str))
  148. pre_tag = f"-{cura_version.pre}" if cura_version.pre else ""
  149. build_tag = f"+{cura_version.build}" if cura_version.build else ""
  150. internal_tag = f"+internal" if self.options.internal else ""
  151. cura_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}{pre_tag}{build_tag}{internal_tag}"
  152. with open(os.path.join(location, "CuraVersion.py"), "w") as f:
  153. f.write(cura_version_py.render(
  154. cura_app_name = self.name,
  155. cura_app_display_name = self._app_name,
  156. cura_version = cura_version,
  157. cura_build_type = "Enterprise" if self._enterprise else "",
  158. cura_debug_mode = self.options.cura_debug_mode,
  159. cura_cloud_api_root = self.conan_data["urls"][self._urls]["cloud_api_root"],
  160. cura_cloud_api_version = self.options.cloud_api_version,
  161. cura_cloud_account_api_root = self.conan_data["urls"][self._urls]["cloud_account_api_root"],
  162. cura_marketplace_root = self.conan_data["urls"][self._urls]["marketplace_root"],
  163. cura_digital_factory_url = self.conan_data["urls"][self._urls]["digital_factory_url"],
  164. cura_latest_url=self.conan_data["urls"][self._urls]["cura_latest_url"],
  165. conan_installs=self._conan_installs(),
  166. python_installs=self._python_installs(),
  167. ))
  168. def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file):
  169. pyinstaller_metadata = self.conan_data["pyinstaller"]
  170. datas = []
  171. for data in pyinstaller_metadata["datas"].values():
  172. if not self.options.internal and data.get("internal", False):
  173. continue
  174. if "package" in data: # get the paths from conan package
  175. if data["package"] == self.name:
  176. if self.in_local_cache:
  177. src_path = os.path.join(self.package_folder, data["src"])
  178. else:
  179. src_path = os.path.join(self.source_folder, data["src"])
  180. else:
  181. src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"])
  182. elif "root" in data: # get the paths relative from the install folder
  183. src_path = os.path.join(self.install_folder, data["root"], data["src"])
  184. else:
  185. continue
  186. if Path(src_path).exists():
  187. datas.append((str(src_path), data["dst"]))
  188. binaries = []
  189. for binary in pyinstaller_metadata["binaries"].values():
  190. if "package" in binary: # get the paths from conan package
  191. src_path = os.path.join(self.deps_cpp_info[binary["package"]].rootpath, binary["src"])
  192. elif "root" in binary: # get the paths relative from the sourcefolder
  193. src_path = str(self.source_path.joinpath(binary["root"], binary["src"]))
  194. if self.settings.os == "Windows":
  195. src_path = src_path.replace("\\", "\\\\")
  196. else:
  197. continue
  198. if not Path(src_path).exists():
  199. self.output.warning(f"Source path for binary {binary['binary']} does not exist")
  200. continue
  201. for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"):
  202. binaries.append((str(bin), binary["dst"]))
  203. for bin in Path(src_path).glob(binary["binary"]):
  204. binaries.append((str(bin), binary["dst"]))
  205. # Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller
  206. for _, dependency in self.dependencies.host.items():
  207. for bin_paths in dependency.cpp_info.bindirs:
  208. binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")])
  209. for lib_paths in dependency.cpp_info.libdirs:
  210. binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.so*")])
  211. binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.dylib*")])
  212. # Copy dynamic libs from lib path
  213. binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib*")])
  214. binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.so*")])
  215. # Collect all dll's from PyQt6 and place them in the root
  216. binaries.extend([(f"{p}", ".") for p in Path(self._site_packages, "PyQt6", "Qt6").glob("**/*.dll")])
  217. with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f:
  218. pyinstaller = Template(f.read())
  219. version = self.conf_info.get("user.cura:version", default = self.version, check_type = str)
  220. cura_version = Version(version)
  221. with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f:
  222. f.write(pyinstaller.render(
  223. name = str(self.options.display_name).replace(" ", "-"),
  224. display_name = self._app_name,
  225. entrypoint = entrypoint_location,
  226. datas = datas,
  227. binaries = binaries,
  228. venv_script_path = str(self._script_dir),
  229. hiddenimports = pyinstaller_metadata["hiddenimports"],
  230. collect_all = pyinstaller_metadata["collect_all"],
  231. icon = icon_path,
  232. entitlements_file = entitlements_file,
  233. osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None",
  234. upx = str(self.settings.os == "Windows"),
  235. strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now
  236. target_arch = self._pyinstaller_spec_arch,
  237. macos = self.settings.os == "Macos",
  238. version = f"'{version}'",
  239. short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'",
  240. ))
  241. def export_sources(self):
  242. copy(self, "*", os.path.join(self.recipe_folder, "plugins"), os.path.join(self.export_sources_folder, "plugins"))
  243. copy(self, "*", os.path.join(self.recipe_folder, "resources"), os.path.join(self.export_sources_folder, "resources"), excludes = "*.mo")
  244. copy(self, "*", os.path.join(self.recipe_folder, "tests"), os.path.join(self.export_sources_folder, "tests"))
  245. copy(self, "*", os.path.join(self.recipe_folder, "cura"), os.path.join(self.export_sources_folder, "cura"), excludes="CuraVersion.py")
  246. copy(self, "*", os.path.join(self.recipe_folder, "packaging"), os.path.join(self.export_sources_folder, "packaging"))
  247. copy(self, "*", os.path.join(self.recipe_folder, ".run_templates"), os.path.join(self.export_sources_folder, ".run_templates"))
  248. copy(self, "requirements.txt", self.recipe_folder, self.export_sources_folder)
  249. copy(self, "requirements-dev.txt", self.recipe_folder, self.export_sources_folder)
  250. copy(self, "requirements-ultimaker.txt", self.recipe_folder, self.export_sources_folder)
  251. copy(self, "cura_app.py", self.recipe_folder, self.export_sources_folder)
  252. def config_options(self):
  253. if self.settings.os == "Windows" and not self.conf.get("tools.microsoft.bash:path", check_type=str):
  254. del self.options.enable_i18n
  255. def configure(self):
  256. self.options["pyarcus"].shared = True
  257. self.options["pysavitar"].shared = True
  258. self.options["pynest2d"].shared = True
  259. self.options["dulcificum"].shared = self.settings.os != "Windows"
  260. self.options["cpython"].shared = True
  261. self.options["boost"].header_only = True
  262. if self.settings.os == "Linux":
  263. self.options["curaengine_grpc_definitions"].shared = True
  264. def validate(self):
  265. version = self.conf_info.get("user.cura:version", default = self.version, check_type = str)
  266. if version and Version(version) <= Version("4"):
  267. raise ConanInvalidConfiguration("Only versions 5+ are support")
  268. def requirements(self):
  269. self.requires("boost/1.82.0")
  270. self.requires("fmt/9.0.0")
  271. self.requires("curaengine_grpc_definitions/0.1.0")
  272. self.requires("zlib/1.2.13")
  273. self.requires("pyarcus/5.3.0")
  274. self.requires("dulcificum/(latest)@ultimaker/stable")
  275. self.requires("curaengine/(latest)@ultimaker/stable")
  276. self.requires("pysavitar/5.3.0")
  277. self.requires("pynest2d/5.3.0")
  278. self.requires("curaengine_plugin_gradual_flow/0.1.0")
  279. self.requires("uranium/(latest)@ultimaker/stable")
  280. self.requires("cura_binary_data/(latest)@ultimaker/stable")
  281. self.requires("cpython/3.10.4")
  282. if self.options.internal:
  283. self.requires("cura_private_data/(latest)@internal/testing")
  284. self.requires("fdm_materials/(latest)@internal/testing")
  285. else:
  286. self.requires("fdm_materials/(latest)@ultimaker/stable")
  287. def build_requirements(self):
  288. if self.options.get_safe("enable_i18n", False):
  289. self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True)
  290. def layout(self):
  291. self.folders.source = "."
  292. self.folders.build = "venv"
  293. self.folders.generators = os.path.join(self.folders.build, "conan")
  294. self.cpp.package.libdirs = [os.path.join("site-packages", "cura")]
  295. self.cpp.package.bindirs = ["bin"]
  296. self.cpp.package.resdirs = ["resources", "plugins", "packaging", "pip_requirements"] # pip_requirements should be the last item in the list
  297. def generate(self):
  298. copy(self, "cura_app.py", self.source_folder, str(self._script_dir))
  299. cura_run_envvars = self._cura_run_env.vars(self, scope = "run")
  300. ext = ".ps1" if self.settings.os == "Windows" else ".sh"
  301. cura_run_envvars.save_script(os.path.join(self.folders.generators, f"cura_run_environment{ext}"))
  302. vr = VirtualRunEnv(self)
  303. vr.generate()
  304. self._generate_cura_version(os.path.join(self.source_folder, "cura"))
  305. if not self.in_local_cache:
  306. # Copy CuraEngine.exe to bindirs of Virtual Python Environment
  307. curaengine = self.dependencies["curaengine"].cpp_info
  308. copy(self, "CuraEngine.exe", curaengine.bindirs[0], self.source_folder, keep_path = False)
  309. copy(self, "CuraEngine", curaengine.bindirs[0], self.source_folder, keep_path = False)
  310. # Copy the external plugins that we want to bundle with Cura
  311. rmdir(self,str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")))
  312. curaengine_plugin_gradual_flow = self.dependencies["curaengine_plugin_gradual_flow"].cpp_info
  313. copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True)
  314. copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False)
  315. copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False)
  316. # Copy resources of cura_binary_data
  317. cura_binary_data = self.dependencies["cura_binary_data"].cpp_info
  318. copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path = True)
  319. copy(self, "*", cura_binary_data.resdirs[1], str(self._share_dir.joinpath("uranium")), keep_path = True)
  320. if self.settings.os == "Windows":
  321. copy(self, "*", cura_binary_data.resdirs[2], str(self._share_dir.joinpath("windows")), keep_path = True)
  322. for dependency in self.dependencies.host.values():
  323. for bindir in dependency.cpp_info.bindirs:
  324. copy(self, "*.dll", bindir, str(self._site_packages), keep_path = False)
  325. for libdir in dependency.cpp_info.libdirs:
  326. copy(self, "*.pyd", libdir, str(self._site_packages), keep_path = False)
  327. copy(self, "*.pyi", libdir, str(self._site_packages), keep_path = False)
  328. copy(self, "*.dylib", libdir, str(self._base_dir.joinpath("lib")), keep_path = False)
  329. # Copy materials (flat)
  330. rmdir(self, os.path.join(self.source_folder, "resources", "materials"))
  331. fdm_materials = self.dependencies["fdm_materials"].cpp_info
  332. copy(self, "*", fdm_materials.resdirs[0], self.source_folder)
  333. # Copy internal resources
  334. if self.options.internal:
  335. cura_private_data = self.dependencies["cura_private_data"].cpp_info
  336. copy(self, "*", cura_private_data.resdirs[0], str(self._share_dir.joinpath("cura")))
  337. if self.options.devtools:
  338. entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements"))
  339. self._generate_pyinstaller_spec(location = self.generators_folder,
  340. entrypoint_location = "'{}'".format(os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"),
  341. icon_path = "'{}'".format(os.path.join(self.source_folder, "packaging", self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"),
  342. entitlements_file = entitlements_file if self.settings.os == "Macos" else "None")
  343. if self.options.get_safe("enable_i18n", False):
  344. # Update the po and pot files
  345. vb = VirtualBuildEnv(self)
  346. vb.generate()
  347. # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement
  348. cpp_info = self.dependencies["gettext"].cpp_info
  349. pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0])
  350. pot.generate()
  351. def build(self):
  352. if self.options.get_safe("enable_i18n", False):
  353. for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"):
  354. mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path))
  355. mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name)
  356. mkdir(self, str(unix_path(self, Path(mo_file).parent)))
  357. cpp_info = self.dependencies["gettext"].cpp_info
  358. self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True)
  359. def deploy(self):
  360. copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), os.path.join(self.install_folder, "packaging"), keep_path = True)
  361. # Copy resources of Cura (keep folder structure) needed by pyinstaller to determine the module structure
  362. copy(self, "*", os.path.join(self.package_folder, self.cpp_info.bindirs[0]), str(self._base_dir), keep_path = False)
  363. copy(self, "*", os.path.join(self.package_folder, self.cpp_info.libdirs[0]), str(self._site_packages.joinpath("cura")), keep_path = True)
  364. copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[0]), str(self._share_dir.joinpath("cura", "resources")), keep_path = True)
  365. copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[1]), str(self._share_dir.joinpath("cura", "plugins")), keep_path = True)
  366. # Copy resources of Uranium (keep folder structure)
  367. uranium = self.dependencies["uranium"].cpp_info
  368. copy(self, "*", uranium.resdirs[0], str(self._share_dir.joinpath("uranium", "resources")), keep_path = True)
  369. copy(self, "*", uranium.resdirs[1], str(self._share_dir.joinpath("uranium", "plugins")), keep_path = True)
  370. copy(self, "*", uranium.libdirs[0], str(self._site_packages.joinpath("UM")), keep_path = True)
  371. # Generate the GitHub Action version info Environment
  372. version = self.conf_info.get("user.cura:version", default = self.version, check_type = str)
  373. cura_version = Version(version)
  374. env_prefix = "Env:" if self.settings.os == "Windows" else ""
  375. activate_github_actions_version_env = Template(r"""echo "CURA_VERSION_MAJOR={{ cura_version_major }}" >> ${{ env_prefix }}GITHUB_ENV
  376. echo "CURA_VERSION_MINOR={{ cura_version_minor }}" >> ${{ env_prefix }}GITHUB_ENV
  377. echo "CURA_VERSION_PATCH={{ cura_version_patch }}" >> ${{ env_prefix }}GITHUB_ENV
  378. echo "CURA_VERSION_BUILD={{ cura_version_build }}" >> ${{ env_prefix }}GITHUB_ENV
  379. echo "CURA_VERSION_FULL={{ cura_version_full }}" >> ${{ env_prefix }}GITHUB_ENV
  380. echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV
  381. """).render(cura_version_major = cura_version.major,
  382. cura_version_minor = cura_version.minor,
  383. cura_version_patch = cura_version.patch,
  384. cura_version_build = cura_version.build if cura_version.build != "" else "0",
  385. cura_version_full = self.version,
  386. cura_app_name = self._app_name,
  387. env_prefix = env_prefix)
  388. ext = ".sh" if self.settings.os != "Windows" else ".ps1"
  389. save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env)
  390. self._generate_cura_version(os.path.join(self._site_packages, "cura"))
  391. entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements"))
  392. self._generate_pyinstaller_spec(location = self._base_dir,
  393. entrypoint_location = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.bindirs[0], self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"),
  394. icon_path = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.resdirs[2], self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"),
  395. entitlements_file = entitlements_file if self.settings.os == "Macos" else "None")
  396. def package(self):
  397. copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0]))
  398. copy(self, "*", src = os.path.join(self.source_folder, "cura"), dst = os.path.join(self.package_folder, self.cpp.package.libdirs[0]))
  399. copy(self, "*", src = os.path.join(self.source_folder, "resources"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[0]))
  400. copy(self, "*.mo", os.path.join(self.build_folder, "resources"), os.path.join(self.package_folder, "resources"))
  401. copy(self, "*", src = os.path.join(self.source_folder, "plugins"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[1]))
  402. copy(self, "requirement*.txt", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1]))
  403. copy(self, "*", src = os.path.join(self.source_folder, "packaging"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[2]))
  404. # Remove the CuraEngineGradualFlow plugin from the package
  405. rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[1], "CuraEngineGradualFlow"))
  406. rm(self, "bundled_*.json", os.path.join(self.package_folder, self.cpp.package.resdirs[0], "bundled_packages"), recursive = False)
  407. # Remove the fdm_materials from the package
  408. rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], "materials"))
  409. def package_info(self):
  410. self.user_info.pip_requirements = "requirements.txt"
  411. self.user_info.pip_requirements_git = "requirements-ultimaker.txt"
  412. self.user_info.pip_requirements_build = "requirements-dev.txt"
  413. if self.in_local_cache:
  414. self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "site-packages"))
  415. self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "plugins"))
  416. else:
  417. self.runenv_info.append_path("PYTHONPATH", self.source_folder)
  418. self.runenv_info.append_path("PYTHONPATH", os.path.join(self.source_folder, "plugins"))
  419. def package_id(self):
  420. self.info.clear()
  421. # The following options shouldn't be used to determine the hash, since these are only used to set the CuraVersion.py
  422. # which will als be generated by the deploy method during the `conan install cura/5.1.0@_/_`
  423. del self.info.options.enterprise
  424. del self.info.options.staging
  425. del self.info.options.devtools
  426. del self.info.options.cloud_api_version
  427. del self.info.options.display_name
  428. del self.info.options.cura_debug_mode
  429. # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different
  430. # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't
  431. # ideal but an acceptable solution for now.