summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSeth R. Johnson <johnsonsr@ornl.gov>2022-06-12 19:06:39 -0400
committerGitHub <noreply@github.com>2022-06-12 18:06:39 -0500
commit516587a1da6266f517a83b73550728f204b242a8 (patch)
treea1bcaf7662cf722113fac727fb3db9d1dacc6e72 /var
parentdc36fd87bbbabfb06f0ea85bee656bad9705087a (diff)
downloadspack-516587a1da6266f517a83b73550728f204b242a8.tar.gz
spack-516587a1da6266f517a83b73550728f204b242a8.tar.bz2
spack-516587a1da6266f517a83b73550728f204b242a8.tar.xz
spack-516587a1da6266f517a83b73550728f204b242a8.zip
py-breathe: new version 4.33.1 and fix dependencies (#31098)
* py-breathe: new version 4.33.1 and fix dependencies * remove unused dependencies
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-breathe/package.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-breathe/package.py b/var/spack/repos/builtin/packages/py-breathe/package.py
index b5db224e70..40e08cc724 100644
--- a/var/spack/repos/builtin/packages/py-breathe/package.py
+++ b/var/spack/repos/builtin/packages/py-breathe/package.py
@@ -13,6 +13,7 @@ class PyBreathe(PythonPackage):
homepage = "https://github.com/michaeljones/breathe"
url = "https://github.com/michaeljones/breathe/archive/v4.11.1.tar.gz"
+ version('4.33.1', sha256='acda75b216b227ec09ffd74378a6c7ed8f023df4539693c6e20574d1df52e75b')
version('4.21.0', sha256='7f97756a1b7f7998377b1153a976bf0d2879bb3ca1cb7bc846f455d37ca87ead')
version('4.11.1', sha256='84723eefc7cc05da6895e2dd6e7c72926c5fd88a67de57edce42d99c058c7e06')
version('4.11.0', sha256='8c9f900560529ca2f589f26759be94c2accad14fd83fee34d353cf6f446e09f6')
@@ -26,7 +27,16 @@ class PyBreathe(PythonPackage):
version('4.7.0', sha256='5629c67f5adb41f39375d36c5f0d60d34b1230be268125e535205d77f69211e4')
depends_on('py-setuptools', type='build')
- depends_on('py-sphinx @1.4:', type=('build', 'run'))
- depends_on('py-docutils @0.5:', type=('build', 'run'))
- depends_on('py-six@1.4:', type=('build', 'run'))
- depends_on('doxygen @1.8.4:')
+
+ depends_on('python@3.5:', type=('build', 'run'), when='@4.21:4.32')
+ depends_on('python@3.6:', type=('build', 'run'), when='@4.33:')
+ depends_on('py-docutils@0.5:', type=('build', 'run'), when='@:4.20')
+ depends_on('py-docutils@0.12:', type=('build', 'run'), when='@4.21:')
+ depends_on('py-pygments@1.6:', type=('build', 'run'), when='@4.21:')
+ depends_on('py-six@1.4:', type=('build', 'run'), when='@:4.20')
+ depends_on('py-six@1.9:', type=('build', 'run'), when='@4.21:4.32')
+ depends_on('py-sphinx', type=('build', 'run'))
+ depends_on('py-sphinx@3:3.2', type=('build', 'run'), when='@4.21:4.32')
+ depends_on('py-sphinx@3:4', type=('build', 'run'), when='@4.33:')
+
+ depends_on('doxygen@1.8.4:', type='run')