summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Berger <richard.berger@outlook.com>2024-09-22 08:52:23 -0600
committerGitHub <noreply@github.com>2024-09-22 16:52:23 +0200
commit98b149d711cef22c347190b2447620d4dc5fc16f (patch)
tree4ff5a480114e68b9478afbca89468a1f856901bf
parenta608f83bfc8bb79c7116f8bd81a08e785d3c2728 (diff)
downloadspack-98b149d711cef22c347190b2447620d4dc5fc16f.tar.gz
spack-98b149d711cef22c347190b2447620d4dc5fc16f.tar.bz2
spack-98b149d711cef22c347190b2447620d4dc5fc16f.tar.xz
spack-98b149d711cef22c347190b2447620d4dc5fc16f.zip
py-sphinx-fortran: new package (#46401)
-rw-r--r--var/spack/repos/builtin/packages/py-sphinx-fortran/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinx-fortran/package.py b/var/spack/repos/builtin/packages/py-sphinx-fortran/package.py
new file mode 100644
index 0000000000..dc67326bb2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sphinx-fortran/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2024 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 PySphinxFortran(PythonPackage):
+ """Fortran domain and autodoc extensions to Sphinx"""
+
+ homepage = "https://sphinx-fortran.readthedocs.io"
+ pypi = "sphinx-fortran/sphinx-fortran-1.1.1.tar.gz"
+ git = "https://github.com/VACUMM/sphinx-fortran.git"
+
+ maintainers("rbberger")
+
+ license("CeCILL-2.1")
+
+ version("master", branch="master")
+ version("1.1.1", sha256="e912e6b292e80768ad3cf580a560a4752c2c077eda4a1bbfc3a4ca0f11fb8ee1")
+
+ depends_on("py-sphinx@1:")
+ depends_on("py-numpy@1:")
+ depends_on("py-six")
+ depends_on("py-future")