Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/16 Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.team> Co-committed-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.team>
217 lines
9.2 KiB
Python
217 lines
9.2 KiB
Python
from conan import ConanFile
|
|
from conan.tools.apple import fix_apple_shared_install_name
|
|
from conan.tools.env import VirtualBuildEnv
|
|
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, replace_in_file, rm, rmdir, save
|
|
from conan.tools.gnu import Autotools, AutotoolsToolchain
|
|
from conan.tools.layout import basic_layout
|
|
from conan.tools.microsoft import is_msvc, is_msvc_static_runtime, MSBuild, MSBuildToolchain
|
|
from conan.tools.scm import Version
|
|
import os
|
|
import textwrap
|
|
|
|
required_conan_version = ">=1.54.0"
|
|
|
|
|
|
class XZUtilsConan(ConanFile):
|
|
name = "xz_utils"
|
|
description = (
|
|
"XZ Utils is free general-purpose data compression software with a high "
|
|
"compression ratio. XZ Utils were written for POSIX-like systems, but also "
|
|
"work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils."
|
|
)
|
|
url = "https://github.com/conan-io/conan-center-index"
|
|
homepage = "https://tukaani.org/xz"
|
|
topics = ("lzma", "xz", "compression")
|
|
license = "Unlicense", "LGPL-2.1-or-later", "GPL-2.0-or-later", "GPL-3.0-or-later"
|
|
package_type = "library"
|
|
settings = "os", "arch", "compiler", "build_type"
|
|
options = {
|
|
"shared": [True, False],
|
|
"fPIC": [True, False],
|
|
}
|
|
default_options = {
|
|
"shared": False,
|
|
"fPIC": True,
|
|
}
|
|
|
|
@property
|
|
def _settings_build(self):
|
|
return getattr(self, "settings_build", self.settings)
|
|
|
|
@property
|
|
def _effective_msbuild_type(self):
|
|
# treat "RelWithDebInfo" and "MinSizeRel" as "Release"
|
|
# there is no DebugMT configuration in upstream vcxproj, we patch Debug configuration afterwards
|
|
return "{}{}".format(
|
|
"Debug" if self.settings.build_type == "Debug" else "Release",
|
|
"MT" if is_msvc_static_runtime(self) and self.settings.build_type != "Debug" else "",
|
|
)
|
|
|
|
@property
|
|
def _msbuild_target(self):
|
|
return "liblzma_dll" if self.options.shared else "liblzma"
|
|
|
|
@property
|
|
def _use_msbuild(self):
|
|
assume_clang_cl = (self.settings.os == "Windows"
|
|
and self.settings.compiler == "clang"
|
|
and self.settings.get_safe("compiler.runtime") is not None)
|
|
return is_msvc(self) or assume_clang_cl
|
|
|
|
def export_sources(self):
|
|
export_conandata_patches(self)
|
|
|
|
def config_options(self):
|
|
if self.settings.os == "Windows":
|
|
del self.options.fPIC
|
|
|
|
def configure(self):
|
|
if self.options.shared:
|
|
self.options.rm_safe("fPIC")
|
|
self.settings.rm_safe("compiler.cppstd")
|
|
self.settings.rm_safe("compiler.libcxx")
|
|
|
|
def layout(self):
|
|
basic_layout(self, src_folder="src")
|
|
|
|
def build_requirements(self):
|
|
if self._settings_build.os == "Windows" and not self._use_msbuild:
|
|
self.win_bash = True
|
|
if not self.conf.get("tools.microsoft.bash:path", check_type=str):
|
|
self.tool_requires("msys2/cci.latest")
|
|
|
|
def source(self):
|
|
get(self, **self.conan_data["sources"][self.version], strip_root=True)
|
|
|
|
def generate(self):
|
|
if self._use_msbuild:
|
|
tc = MSBuildToolchain(self)
|
|
tc.configuration = self._effective_msbuild_type
|
|
tc.generate()
|
|
else:
|
|
env = VirtualBuildEnv(self)
|
|
env.generate()
|
|
tc = AutotoolsToolchain(self)
|
|
tc.configure_args.append("--disable-doc")
|
|
if self.settings.build_type == "Debug":
|
|
tc.configure_args.append("--enable-debug")
|
|
tc.generate()
|
|
|
|
@property
|
|
def _msvc_sln_folder(self):
|
|
if (str(self.settings.compiler) == "Visual Studio" and Version(self.settings.compiler) >= "15") or \
|
|
(str(self.settings.compiler) == "msvc" and Version(self.settings.compiler) >= "191"):
|
|
return "vs2017"
|
|
return "vs2013"
|
|
|
|
def _build_msvc(self):
|
|
build_script_folder = os.path.join(self.source_folder, "windows", self._msvc_sln_folder)
|
|
|
|
#==============================
|
|
# TODO: to remove once https://github.com/conan-io/conan/pull/12817 available in conan client.
|
|
vcxproj_files = [
|
|
os.path.join(build_script_folder, "liblzma.vcxproj"),
|
|
os.path.join(build_script_folder, "liblzma_dll.vcxproj"),
|
|
]
|
|
if (str(self.settings.compiler) == "Visual Studio" and Version(self.settings.compiler) >= "15") or \
|
|
(str(self.settings.compiler) == "msvc" and Version(self.settings.compiler) >= "191"):
|
|
old_toolset = "v141"
|
|
else:
|
|
old_toolset = "v120"
|
|
new_toolset = MSBuildToolchain(self).toolset
|
|
conantoolchain_props = os.path.join(self.generators_folder, MSBuildToolchain.filename)
|
|
for vcxproj_file in vcxproj_files:
|
|
replace_in_file(
|
|
self, vcxproj_file,
|
|
f"<PlatformToolset>{old_toolset}</PlatformToolset>",
|
|
f"<PlatformToolset>{new_toolset}</PlatformToolset>",
|
|
)
|
|
replace_in_file(
|
|
self, vcxproj_file,
|
|
"<Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.targets\" />",
|
|
f"<Import Project=\"{conantoolchain_props}\" /><Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.targets\" />",
|
|
)
|
|
|
|
if self.settings.arch == "armv8":
|
|
replace_in_file(self, vcxproj_file, "x64", "ARM64")
|
|
|
|
solution_file = os.path.join(build_script_folder, "xz_win.sln")
|
|
if self.settings.arch == "armv8":
|
|
replace_in_file(self, solution_file, "x64", "ARM64")
|
|
|
|
#==============================
|
|
|
|
msbuild = MSBuild(self)
|
|
msbuild.build_type = self._effective_msbuild_type
|
|
msbuild.platform = "Win32" if self.settings.arch == "x86" else msbuild.platform
|
|
msbuild.build(os.path.join(build_script_folder, solution_file), targets=[self._msbuild_target])
|
|
|
|
def build(self):
|
|
apply_conandata_patches(self)
|
|
if self._use_msbuild:
|
|
self._build_msvc()
|
|
else:
|
|
autotools = Autotools(self)
|
|
autotools.configure()
|
|
autotools.make()
|
|
|
|
def package(self):
|
|
copy(self, "COPYING", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"))
|
|
if self._use_msbuild:
|
|
inc_dir = os.path.join(self.source_folder, "src", "liblzma", "api")
|
|
copy(self, "*.h", src=inc_dir, dst=os.path.join(self.package_folder, "include"))
|
|
output_dir = os.path.join(self.source_folder, "windows")
|
|
copy(self, "*.lib", src=output_dir, dst=os.path.join(self.package_folder, "lib"), keep_path=False)
|
|
copy(self, "*.dll", src=output_dir, dst=os.path.join(self.package_folder, "bin"), keep_path=False)
|
|
rename(self, os.path.join(self.package_folder, "lib", "liblzma.lib"),
|
|
os.path.join(self.package_folder, "lib", "lzma.lib"))
|
|
else:
|
|
autotools = Autotools(self)
|
|
autotools.install()
|
|
rmdir(self, os.path.join(self.package_folder, "lib", "pkgconfig"))
|
|
rmdir(self, os.path.join(self.package_folder, "share"))
|
|
rm(self, "*.la", os.path.join(self.package_folder, "lib"))
|
|
fix_apple_shared_install_name(self)
|
|
|
|
self._create_cmake_module_variables(
|
|
os.path.join(self.package_folder, self._module_file_rel_path),
|
|
)
|
|
|
|
def _create_cmake_module_variables(self, module_file):
|
|
# TODO: also add LIBLZMA_HAS_AUTO_DECODER, LIBLZMA_HAS_EASY_ENCODER & LIBLZMA_HAS_LZMA_PRESET
|
|
content = textwrap.dedent(f"""\
|
|
set(LIBLZMA_FOUND TRUE)
|
|
if(DEFINED LibLZMA_INCLUDE_DIRS)
|
|
set(LIBLZMA_INCLUDE_DIRS ${{LibLZMA_INCLUDE_DIRS}})
|
|
endif()
|
|
if(DEFINED LibLZMA_LIBRARIES)
|
|
set(LIBLZMA_LIBRARIES ${{LibLZMA_LIBRARIES}})
|
|
endif()
|
|
set(LIBLZMA_VERSION_MAJOR {Version(self.version).major})
|
|
set(LIBLZMA_VERSION_MINOR {Version(self.version).minor})
|
|
set(LIBLZMA_VERSION_PATCH {Version(self.version).patch})
|
|
set(LIBLZMA_VERSION_STRING "{self.version}")
|
|
""")
|
|
save(self, module_file, content)
|
|
|
|
@property
|
|
def _module_file_rel_path(self):
|
|
return os.path.join("lib", "cmake", f"conan-official-{self.name}-variables.cmake")
|
|
|
|
def package_info(self):
|
|
self.cpp_info.set_property("cmake_find_mode", "both")
|
|
self.cpp_info.set_property("cmake_file_name", "LibLZMA")
|
|
self.cpp_info.set_property("cmake_target_name", "LibLZMA::LibLZMA")
|
|
self.cpp_info.set_property("cmake_build_modules", [self._module_file_rel_path])
|
|
self.cpp_info.set_property("pkg_config_name", "liblzma")
|
|
self.cpp_info.libs = ["lzma"]
|
|
if not self.options.shared:
|
|
self.cpp_info.defines.append("LZMA_API_STATIC")
|
|
if self.settings.os in ["Linux", "FreeBSD"]:
|
|
self.cpp_info.system_libs.append("pthread")
|
|
|
|
# TODO: to remove in conan v2 once cmake_find_package* & pkg_config generators removed
|
|
self.cpp_info.names["cmake_find_package"] = "LibLZMA"
|
|
self.cpp_info.names["cmake_find_package_multi"] = "LibLZMA"
|
|
self.cpp_info.build_modules["cmake_find_package"] = [self._module_file_rel_path]
|