summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-12-27 04:58:34 -0600
committerGitHub <noreply@github.com>2020-12-27 11:58:34 +0100
commitfa56b9b1e2e9dca58261fb0342083ea19756c1af (patch)
tree9a9c395b6345e55a7810f4d70435de3bf6f4316c /var
parent0ed654aa7019859016ba23856d0f6cfb08a2d03c (diff)
downloadspack-fa56b9b1e2e9dca58261fb0342083ea19756c1af.tar.gz
spack-fa56b9b1e2e9dca58261fb0342083ea19756c1af.tar.bz2
spack-fa56b9b1e2e9dca58261fb0342083ea19756c1af.tar.xz
spack-fa56b9b1e2e9dca58261fb0342083ea19756c1af.zip
py-sphinxcontrib-*: fix recursive imports (#20556)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py4
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py4
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py4
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-jsmath/package.py4
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py4
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-serializinghtml/package.py4
6 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py
index 970a8c253a..9d6af67f0e 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py
@@ -13,6 +13,10 @@ class PySphinxcontribApplehelp(PythonPackage):
homepage = "http://sphinx-doc.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-1.0.1.tar.gz"
+ # Sphinx requires sphinxcontrib-applehelp at build-time, but
+ # sphinxcontrib-applehelp requires sphinx at run-time
+ import_modules = []
+
version('1.0.1', sha256='edaa0ab2b2bc74403149cb0209d6775c96de797dfd5b5e2a71981309efab3897')
depends_on('python@3.5:', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py
index cc7cec387b..9c51234485 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py
@@ -13,6 +13,10 @@ class PySphinxcontribDevhelp(PythonPackage):
homepage = "http://sphinx-doc.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib-devhelp-1.0.1.tar.gz"
+ # Sphinx requires sphinxcontrib-devhelp at build-time, but
+ # sphinxcontrib-devhelp requires sphinx at run-time
+ import_modules = []
+
version('1.0.1', sha256='6c64b077937330a9128a4da74586e8c2130262f014689b4b89e2d08ee7294a34')
depends_on('python@3.5:', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py
index d368247ca7..625e596998 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py
@@ -13,6 +13,10 @@ class PySphinxcontribHtmlhelp(PythonPackage):
homepage = "http://sphinx-doc.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib-htmlhelp-1.0.2.tar.gz"
+ # Sphinx requires sphinxcontrib-htmlhelp at build-time, but
+ # sphinxcontrib-htmlhelp requires sphinx at run-time
+ import_modules = []
+
version('1.0.2', sha256='4670f99f8951bd78cd4ad2ab962f798f5618b17675c35c5ac3b2132a14ea8422')
depends_on('python@3.5:', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-jsmath/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-jsmath/package.py
index b471284728..162df9b122 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-jsmath/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-jsmath/package.py
@@ -12,6 +12,10 @@ class PySphinxcontribJsmath(PythonPackage):
homepage = "http://sphinx-doc.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-jsmath/sphinxcontrib-jsmath-1.0.1.tar.gz"
+ # Sphinx requires sphinxcontrib-jsmath at build-time, but
+ # sphinxcontrib-jsmath requires sphinx at run-time
+ import_modules = []
+
version('1.0.1', sha256='a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8')
depends_on('python@3.5:', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py
index b0b654e48f..f79c020fc0 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py
@@ -13,6 +13,10 @@ class PySphinxcontribQthelp(PythonPackage):
homepage = "http://sphinx-doc.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-qthelp/sphinxcontrib-qthelp-1.0.2.tar.gz"
+ # Sphinx requires sphinxcontrib-qthelp at build-time, but
+ # sphinxcontrib-qthelp requires sphinx at run-time
+ import_modules = []
+
version('1.0.2', sha256='79465ce11ae5694ff165becda529a600c754f4bc459778778c7017374d4d406f')
depends_on('python@3.5:', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-serializinghtml/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-serializinghtml/package.py
index 59c214a8eb..ec07172bda 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-serializinghtml/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-serializinghtml/package.py
@@ -13,6 +13,10 @@ class PySphinxcontribSerializinghtml(PythonPackage):
homepage = "http://sphinx-doc.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib-serializinghtml-1.1.3.tar.gz"
+ # Sphinx requires sphinxcontrib-serializinghtml at build-time, but
+ # sphinxcontrib-serializinghtml requires sphinx at run-time
+ import_modules = []
+
version('1.1.3', sha256='c0efb33f8052c04fd7a26c0a07f1678e8512e0faec19f4aa8f2473a8b81d5227')
depends_on('python@3.5:', type=('build', 'run'))