mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-15 20:53:16 +08:00
Use gettext tools in path (experimental)
This commit is contained in:
parent
09be772355
commit
0000ba334c
@ -25,7 +25,7 @@ class CuraConan(ConanFile):
|
|||||||
exports = "LICENSE*", "*.jinja"
|
exports = "LICENSE*", "*.jinja"
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
generators = "VirtualPythonEnv"
|
generators = "VirtualPythonEnv"
|
||||||
tool_requires = "gettext/0.21"
|
tool_requires = "gettext/0.22.5"
|
||||||
|
|
||||||
# FIXME: Remove specific branch once merged to main
|
# FIXME: Remove specific branch once merged to main
|
||||||
python_requires = "translationextractor/[>=2.2.0]@ultimaker/cura_11622"
|
python_requires = "translationextractor/[>=2.2.0]@ultimaker/cura_11622"
|
||||||
@ -348,9 +348,7 @@ class CuraConan(ConanFile):
|
|||||||
vb = VirtualBuildEnv(self)
|
vb = VirtualBuildEnv(self)
|
||||||
vb.generate()
|
vb.generate()
|
||||||
|
|
||||||
# # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement
|
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self)
|
||||||
cpp_info = self.dependencies["gettext"].cpp_info
|
|
||||||
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0])
|
|
||||||
pot.generate()
|
pot.generate()
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
@ -362,8 +360,7 @@ class CuraConan(ConanFile):
|
|||||||
mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_folder))
|
mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_folder))
|
||||||
mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name)
|
mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name)
|
||||||
mkdir(self, str(unix_path(self, Path(mo_file).parent)))
|
mkdir(self, str(unix_path(self, Path(mo_file).parent)))
|
||||||
cpp_info = self.dependencies["gettext"].cpp_info
|
self.run(f"msgfmt {po_file} -o {mo_file} -f", env="conanbuild")
|
||||||
self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True)
|
|
||||||
|
|
||||||
def deploy(self):
|
def deploy(self):
|
||||||
''' Note: this deploy step is actually used to prepare for building a Cura distribution with pyinstaller, which is not
|
''' Note: this deploy step is actually used to prepare for building a Cura distribution with pyinstaller, which is not
|
||||||
|
Loading…
x
Reference in New Issue
Block a user