conanfile.py 27 KB

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