Files
ConanPackages/eastl/all/conanfile.py
Romain BOULLARD 534384356e
Some checks failed
Conan Packaging / conan-packages (map[location:all name:shaderc needs_pkg: version:2025.3]) (push) Failing after 59s
Conan Packaging / conan-packages (map[location:all name:eabase needs_pkg: version:01082025]) (push) Failing after 12s
Conan Packaging / conan-packages (map[location:all name:eastl needs_pkg:eabase version:3.27.01]) (push) Failing after 9s
Conan Packaging / conan-packages (map[location:all name:flatbuffers needs_pkg: version:25.12.19]) (push) Failing after 1m1s
Conan Packaging / conan-packages (map[location:all name:lodepng needs_pkg: version:cci.20250727]) (push) Failing after 15s
Conan Packaging / conan-packages (map[location:all name:meshoptimizer needs_pkg: version:1.0]) (push) Failing after 15s
Conan Packaging / conan-packages (map[location:all name:pixelmatch-cpp17 needs_pkg: version:1.0.3]) (push) Failing after 15s
Conan Packaging / conan-packages (map[location:all name:rapidhash needs_pkg: version:3.0]) (push) Failing after 12s
Conan Packaging / conan-packages (map[location:all name:mimalloc needs_pkg: version:3.1.5]) (push) Failing after 21s
Conan Packaging / conan-packages (map[location:all name:sqlite3 needs_pkg: version:3.51.0]) (push) Failing after 32s
Conan Packaging / conan-packages (map[location:all name:stduuid needs_pkg: version:1.2.3]) (push) Failing after 11s
Conan Packaging / conan-packages (map[location:all name:unordered_dense needs_pkg: version:4.8.1]) (push) Failing after 12s
Conan Packaging / conan-packages (map[location:all name:vulkan-memory-allocator needs_pkg: version:3.3.0]) (push) Failing after 13s
Conan Packaging / conan-packages (map[location:all name:vulkan-utility-libraries needs_pkg: version:1.4.313.0]) (push) Failing after 21s
Conan Packaging / conan-packages (map[location:all name:vulkan-validationlayers needs_pkg:vulkan-utility-libraries version:1.4.313.0]) (push) Failing after 8s
GiteaCI
Reviewed-on: #1
Co-authored-by: Romain BOULLARD <romain.boullard@protonmail.com>
Co-committed-by: Romain BOULLARD <romain.boullard@protonmail.com>
2026-01-25 23:10:00 +00:00

153 lines
4.9 KiB
Python

import os
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout
from conan.tools.files import (
apply_conandata_patches,
copy,
export_conandata_patches,
get,
replace_in_file,
rmdir,
)
from conan.tools.microsoft import is_msvc, check_min_vs
from conan.tools.scm import Version
required_conan_version = ">=1.52.0"
class EastlConan(ConanFile):
name = "eastl"
description = (
"EASTL stands for Electronic Arts Standard Template Library. "
"It is an extensive and robust implementation that has an "
"emphasis on high performance."
)
topics = ("eastl", "stl", "high-performance")
license = "BSD-3-Clause"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/electronicarts/EASTL"
package_type = "library"
settings = "os", "arch", "compiler", "build_type"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
}
@property
def _min_cppstd(self):
if Version(self.version) < "3.27.00":
return 14
else:
return 17
@property
def _compilers_minimum_version(self):
return {
"Visual Studio": "14",
"msvc": "190",
"gcc": "5" if Version(self.version) < "3.21.12" else "6",
"clang": "3.2",
"apple-clang": "4.3",
}
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")
def layout(self):
cmake_layout(self, src_folder="src")
def requirements(self):
if self.version >= "3.27.00":
self.requires(f"eabase/01082025@{self.user}/{self.channel}", transitive_headers=True)
elif self.version == "3.21.23":
self.requires("eabase/18082024", transitive_headers=True)
else:
self.requires("eabase/2.09.12", transitive_headers=True)
def validate(self):
if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not support."
)
if is_msvc(self) and check_min_vs(self, "193", raise_invalid=False) and Version(self.version) < "3.21.12":
raise ConanInvalidConfiguration(f"{self.ref} is not compatible with Visual Studio 2022, please use version >= 3.21.12")
def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
def generate(self):
tc = CMakeToolchain(self)
tc.variables["EASTL_BUILD_BENCHMARK"] = False
tc.variables["EASTL_BUILD_TESTS"] = False
tc.variables["CMAKE_CXX_STANDARD"] = self._min_cppstd
tc.generate()
CMakeDeps(self).generate()
def _patch_sources(self):
apply_conandata_patches(self)
replace_in_file(
self,
os.path.join(self.source_folder, "CMakeLists.txt"),
"include(CommonCppFlags)",
"",
)
def build(self):
self._patch_sources()
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
copy(
self,
"LICENSE",
src=self.source_folder,
dst=os.path.join(self.package_folder, "licenses"),
)
copy(
self,
"3RDPARTYLICENSES.TXT",
src=self.source_folder,
dst=os.path.join(self.package_folder, "licenses"),
)
cmake = CMake(self)
cmake.install()
rmdir(self, os.path.join(self.package_folder, "doc"))
def package_info(self):
self.cpp_info.libs = ["EASTL"]
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.system_libs.extend(["m", "pthread"])
if self.options.shared:
self.cpp_info.defines.append("EA_DLL")
self.cpp_info.set_property("cmake_file_name", "EASTL")
self.cpp_info.set_property("cmake_target_name", "EASTL::EASTL")
# TODO: to remove in conan v2 once cmake_find_package_* generators removed
self.cpp_info.filenames["cmake_find_package"] = "EASTL"
self.cpp_info.filenames["cmake_find_package_multi"] = "EASTL"
self.cpp_info.names["cmake_find_package"] = "EASTL"
self.cpp_info.names["cmake_find_package_multi"] = "EASTL"