From c4242cf968b7b4facb2611dd2068cb7d93f9070c Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Mon, 15 Apr 2024 11:09:09 +0300 Subject: [PATCH] suitesparse-btf: new recipe --- recipes/suitesparse-btf/all/conandata.yml | 4 + recipes/suitesparse-btf/all/conanfile.py | 95 +++++++++++++++++++ .../all/test_package/CMakeLists.txt | 8 ++ .../all/test_package/conanfile.py | 26 +++++ .../all/test_package/test_package.c | 11 +++ recipes/suitesparse-btf/config.yml | 3 + 6 files changed, 147 insertions(+) create mode 100644 recipes/suitesparse-btf/all/conandata.yml create mode 100644 recipes/suitesparse-btf/all/conanfile.py create mode 100644 recipes/suitesparse-btf/all/test_package/CMakeLists.txt create mode 100644 recipes/suitesparse-btf/all/test_package/conanfile.py create mode 100644 recipes/suitesparse-btf/all/test_package/test_package.c create mode 100644 recipes/suitesparse-btf/config.yml diff --git a/recipes/suitesparse-btf/all/conandata.yml b/recipes/suitesparse-btf/all/conandata.yml new file mode 100644 index 0000000000000..f05e94bd05750 --- /dev/null +++ b/recipes/suitesparse-btf/all/conandata.yml @@ -0,0 +1,4 @@ +sources: + "2.3.2": + url: "https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/refs/tags/v7.7.0.tar.gz" + sha256: "529b067f5d80981f45ddf6766627b8fc5af619822f068f342aab776e683df4f3" diff --git a/recipes/suitesparse-btf/all/conanfile.py b/recipes/suitesparse-btf/all/conanfile.py new file mode 100644 index 0000000000000..9bd78c52083fb --- /dev/null +++ b/recipes/suitesparse-btf/all/conanfile.py @@ -0,0 +1,95 @@ +import os + +from conan import ConanFile +from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout +from conan.tools.env import VirtualBuildEnv +from conan.tools.files import get, rm, rmdir, copy + +required_conan_version = ">=1.53.0" + + +class SuiteSparseBtfConan(ConanFile): + name = "suitesparse-btf" + description = "BTF: Software package for permuting a matrix into block upper triangular form in SuiteSparse" + license = "LGPL-2.1-or-later" + url = "https://github.com/conan-io/conan-center-index" + homepage = "https://people.engr.tamu.edu/davis/suitesparse.html" + topics = ("mathematics", "sparse-matrix", "linear-algebra", "matrix-permutation") + + package_type = "library" + settings = "os", "arch", "compiler", "build_type" + options = { + "shared": [True, False], + "fPIC": [True, False], + } + default_options = { + "shared": False, + "fPIC": True, + } + + 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): + cmake_layout(self, src_folder="src") + + def requirements(self): + # OpenBLAS and OpenMP are provided via suitesparse-config + self.requires("suitesparse-config/7.7.0", transitive_headers=True, transitive_libs=True) + + def build_requirements(self): + self.tool_requires("cmake/[>=3.22 <4]") + + def source(self): + get(self, **self.conan_data["sources"][self.version], strip_root=True) + + def generate(self): + venv = VirtualBuildEnv(self) + venv.generate() + + tc = CMakeToolchain(self) + tc.variables["BUILD_SHARED_LIBS"] = self.options.shared + tc.variables["BUILD_STATIC_LIBS"] = not self.options.shared + tc.variables["SUITESPARSE_USE_OPENMP"] = True + tc.variables["SUITESPARSE_USE_CUDA"] = False + tc.variables["SUITESPARSE_DEMOS"] = False + tc.variables["SUITESPARSE_USE_FORTRAN"] = False # Fortran sources are translated to C instead + tc.generate() + + deps = CMakeDeps(self) + deps.generate() + + def build(self): + cmake = CMake(self) + cmake.configure(build_script_folder=os.path.join(self.source_folder, "BTF")) + cmake.build() + + def package(self): + copy(self, "License.txt", os.path.join(self.source_folder, "BTF", "Doc"), os.path.join(self.package_folder, "licenses")) + copy(self, "lesser.txt", os.path.join(self.source_folder, "BTF", "Doc"), os.path.join(self.package_folder, "licenses")) + cmake = CMake(self) + cmake.install() + rmdir(self, os.path.join(self.package_folder, "lib", "pkgconfig")) + rmdir(self, os.path.join(self.package_folder, "lib", "cmake")) + rmdir(self, os.path.join(self.package_folder, "share")) + rm(self, "*.pdb", self.package_folder, recursive=True) + + def package_info(self): + self.cpp_info.set_property("cmake_file_name", "BTF") + self.cpp_info.set_property("cmake_target_name", "SuiteSparse::BTF") + if not self.options.shared: + self.cpp_info.set_property("cmake_target_aliases", ["SuiteSparse::BTF_static"]) + self.cpp_info.set_property("pkg_config_name", "BTF") + + self.cpp_info.libs = ["btf"] + self.cpp_info.includedirs.append(os.path.join("include", "suitesparse")) + + if self.settings.os in ["Linux", "FreeBSD"]: + self.cpp_info.system_libs.append("m") diff --git a/recipes/suitesparse-btf/all/test_package/CMakeLists.txt b/recipes/suitesparse-btf/all/test_package/CMakeLists.txt new file mode 100644 index 0000000000000..1aa981ef1600c --- /dev/null +++ b/recipes/suitesparse-btf/all/test_package/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.15) +project(test_package LANGUAGES C) + +find_package(BTF REQUIRED CONFIG) + +add_executable(${PROJECT_NAME} test_package.c) +target_link_libraries(${PROJECT_NAME} PRIVATE SuiteSparse::BTF) +target_compile_features(${PROJECT_NAME} PRIVATE c_std_11) diff --git a/recipes/suitesparse-btf/all/test_package/conanfile.py b/recipes/suitesparse-btf/all/test_package/conanfile.py new file mode 100644 index 0000000000000..ef5d7042163ec --- /dev/null +++ b/recipes/suitesparse-btf/all/test_package/conanfile.py @@ -0,0 +1,26 @@ +from conan import ConanFile +from conan.tools.build import can_run +from conan.tools.cmake import cmake_layout, CMake +import os + + +class TestPackageConan(ConanFile): + settings = "os", "arch", "compiler", "build_type" + generators = "CMakeDeps", "CMakeToolchain", "VirtualRunEnv" + test_type = "explicit" + + def requirements(self): + self.requires(self.tested_reference_str) + + def layout(self): + cmake_layout(self) + + def build(self): + cmake = CMake(self) + cmake.configure() + cmake.build() + + def test(self): + if can_run(self): + bin_path = os.path.join(self.cpp.build.bindir, "test_package") + self.run(bin_path, env="conanrun") diff --git a/recipes/suitesparse-btf/all/test_package/test_package.c b/recipes/suitesparse-btf/all/test_package/test_package.c new file mode 100644 index 0000000000000..f2cd44ad1792c --- /dev/null +++ b/recipes/suitesparse-btf/all/test_package/test_package.c @@ -0,0 +1,11 @@ +#include + +#define N 10 +#define NZ 10 + +int main() +{ + int n, Ap [N+1], Ai [NZ], P [N], Q [N], R [N+1], nfound, Work [5*N], ncomp ; + double maxwork, work ; + ncomp = btf_order (N, Ap, Ai, maxwork, &work, P, Q, R, &nfound, Work) ; +} diff --git a/recipes/suitesparse-btf/config.yml b/recipes/suitesparse-btf/config.yml new file mode 100644 index 0000000000000..aee8de619ec30 --- /dev/null +++ b/recipes/suitesparse-btf/config.yml @@ -0,0 +1,3 @@ +versions: + "2.3.2": + folder: all