summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com>2023-08-27 20:46:21 +0100
committerGitHub <noreply@github.com>2023-08-27 14:46:21 -0500
commita72e5e762ed3cea7464773b3ae985025af0a75b7 (patch)
treea1d0fc8dc889045169a519ea75227ad9e3d6ba6e
parent0eb22ef7703eee8504a6d68060addf905f9fbcf9 (diff)
downloadspack-a72e5e762ed3cea7464773b3ae985025af0a75b7.tar.gz
spack-a72e5e762ed3cea7464773b3ae985025af0a75b7.tar.bz2
spack-a72e5e762ed3cea7464773b3ae985025af0a75b7.tar.xz
spack-a72e5e762ed3cea7464773b3ae985025af0a75b7.zip
py-igraph: new package with version 0.10.6 (#39179)
-rw-r--r--var/spack/repos/builtin/packages/igraph/package.py37
-rw-r--r--var/spack/repos/builtin/packages/py-igraph/package.py28
2 files changed, 64 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/igraph/package.py b/var/spack/repos/builtin/packages/igraph/package.py
index 5ee88ce026..62108600da 100644
--- a/var/spack/repos/builtin/packages/igraph/package.py
+++ b/var/spack/repos/builtin/packages/igraph/package.py
@@ -6,12 +6,47 @@
from spack.package import *
-class Igraph(AutotoolsPackage):
+class Igraph(CMakePackage, AutotoolsPackage):
"""igraph is a library for creating and manipulating graphs."""
homepage = "https://igraph.org/"
url = "https://github.com/igraph/igraph/releases/download/0.7.1/igraph-0.7.1.tar.gz"
+ version("0.10.6", sha256="99bf91ee90febeeb9a201f3e0c1d323c09214f0b5f37a4290dc3b63f52839d6d")
version("0.7.1", sha256="d978030e27369bf698f3816ab70aa9141e9baf81c56cc4f55efbe5489b46b0df")
+ variant("shared", default=False, description="Enable shared build")
+
+ build_system(
+ conditional("cmake", when="@0.9:"), conditional("autotools", when="@:0.8"), default="cmake"
+ )
+
+ with when("build_system=cmake"):
+ depends_on("arpack-ng")
+ depends_on("blas")
+ depends_on("glpk+gmp@4.57:")
+ depends_on("gmp")
+ depends_on("lapack")
+
depends_on("libxml2")
+
+ def cmake_args(self):
+ args = [
+ "-DIGRAPH_ENABLE_LTO=AUTO",
+ "-DIGRAPH_GLPK_SUPPORT=ON",
+ "-DIGRAPH_GRAPHML_SUPPORT=ON",
+ "-DIGRAPH_USE_INTERNAL_ARPACK=OFF",
+ "-DIGRAPH_USE_INTERNAL_BLAS=OFF",
+ "-DIGRAPH_USE_INTERNAL_GLPK=OFF",
+ "-DIGRAPH_USE_INTERNAL_GMP=OFF",
+ "-DIGRAPH_USE_INTERNAL_LAPACK=OFF",
+ "-DIGRAPH_USE_INTERNAL_PLFIT=ON",
+ "-DBLA_VENDOR=OpenBLAS",
+ ]
+
+ if "+shared" in self.spec:
+ args.append("-DBUILD_SHARED_LIBS=ON")
+ else:
+ args.append("-DBUILD_SHARED_LIBS=OFF")
+
+ return args
diff --git a/var/spack/repos/builtin/packages/py-igraph/package.py b/var/spack/repos/builtin/packages/py-igraph/package.py
new file mode 100644
index 0000000000..c995834236
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-igraph/package.py
@@ -0,0 +1,28 @@
+# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class PyIgraph(PythonPackage):
+ """Python interface to the igraph high performance graph library,
+ primarily aimed at complex network research and analysis."""
+
+ homepage = "https://github.com/igraph/python-igraph"
+ pypi = "igraph/igraph-0.10.6.tar.gz"
+
+ version("0.10.6", sha256="76f7aad294514412f835366a7d9a9c1e7a34c3e6ef0a6c3a1a835234323228e8")
+
+ variant("matplotlib", default=False, description="Enable plotting with Matplotlib")
+
+ depends_on("cmake", type="build")
+ depends_on("igraph+shared@0.10.6", when="@0.10.6")
+ depends_on("pkgconfig", type="build")
+ depends_on("py-setuptools", type="build")
+ depends_on("py-texttable@1.6.2:", type=("build", "run"))
+ depends_on("py-matplotlib@3.5", type="run", when="+matplotlib")
+
+ def setup_build_environment(self, env):
+ env.set("IGRAPH_USE_PKG_CONFIG", "1")