
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
57 lines
3.3 KiB
Python
57 lines
3.3 KiB
Python
# Copyright 2013-2021 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 import *
|
|
|
|
|
|
class PySphinx(PythonPackage):
|
|
"""Sphinx Documentation Generator."""
|
|
|
|
homepage = "https://sphinx-doc.org/"
|
|
pypi = "Sphinx/Sphinx-3.2.0.tar.gz"
|
|
|
|
version('3.2.0', sha256='cf2d5bc3c6c930ab0a1fbef3ad8a82994b1bf4ae923f8098a05c7e5516f07177')
|
|
version('3.0.0', sha256='6a099e6faffdc3ceba99ca8c2d09982d43022245e409249375edf111caf79ed3')
|
|
version('2.2.0', sha256='0d586b0f8c2fc3cc6559c5e8fd6124628110514fda0e5d7c82e682d749d2e845')
|
|
version('1.8.4', sha256='c1c00fc4f6e8b101a0d037065043460dffc2d507257f2f11acaed71fd2b0c83c')
|
|
version('1.8.2', sha256='120732cbddb1b2364471c3d9f8bfd4b0c5b550862f99a65736c77f970b142aea')
|
|
version('1.7.4', sha256='e9b1a75a3eae05dded19c80eb17325be675e0698975baae976df603b6ed1eb10')
|
|
version('1.6.3', sha256='af8bdb8c714552b77d01d4536e3d6d2879d6cb9d25423d29163d5788e27046e6')
|
|
version('1.6.1', sha256='7581d82c3f206f0ac380edeeba890a2e2d2be011e5abe94684ceb0df4b6acc3f')
|
|
version('1.5.5', sha256='4064ea6c56feeb268838cb8fbbee507d0c3d5d92fa63a7df935a916b52c9e2f5')
|
|
version('1.4.5', sha256='c5df65d97a58365cbf4ea10212186a9a45d89c61ed2c071de6090cdf9ddb4028')
|
|
version('1.3.1', sha256='1a6e5130c2b42d2de301693c299f78cc4bd3501e78b610c08e45efc70e2b5114')
|
|
|
|
extends('python', ignore='bin/(pybabel|pygmentize)')
|
|
|
|
# See here for upstream list of dependencies:
|
|
# https://github.com/sphinx-doc/sphinx/blob/master/setup.py
|
|
# See http://www.sphinx-doc.org/en/stable/changes.html for when each
|
|
# dependency was added or removed.
|
|
depends_on('python@3.5:', when='@2:', type=('build', 'run'))
|
|
depends_on('python@2.7:2.8,3.4:', when='@:1', type=('build', 'run'))
|
|
|
|
depends_on('py-sphinxcontrib-websupport', when='@1.6:1.999', type=('build', 'run'))
|
|
depends_on('py-sphinxcontrib-applehelp', when='@2:', type=('build', 'run'))
|
|
depends_on('py-sphinxcontrib-devhelp', when='@2:', type=('build', 'run'))
|
|
depends_on('py-sphinxcontrib-jsmath', when='@2:', type=('build', 'run'))
|
|
depends_on('py-sphinxcontrib-htmlhelp', when='@2:', type=('build', 'run'))
|
|
depends_on('py-sphinxcontrib-serializinghtml', when='@2:', type=('build', 'run'))
|
|
depends_on('py-sphinxcontrib-qthelp', when='@2:', type=('build', 'run'))
|
|
depends_on('py-six@1.5:', when='@:1', type=('build', 'run'))
|
|
depends_on('py-jinja2@2.3:', type=('build', 'run'))
|
|
depends_on('py-pygments@2.0:', type=('build', 'run'))
|
|
depends_on('py-docutils@0.12:', type=('build', 'run'))
|
|
depends_on('py-snowballstemmer@1.1:', type=('build', 'run'))
|
|
depends_on('py-babel@1.3:1.999,2.1:', type=('build', 'run'))
|
|
depends_on('py-alabaster@0.7.0:0.7.999', type=('build', 'run'))
|
|
depends_on('py-imagesize', when='@1.4:', type=('build', 'run'))
|
|
depends_on('py-requests@2.5.0:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('py-sphinx-rtd-theme@0.1:', when='@:1.3', type=('build', 'run'))
|
|
depends_on('py-packaging', when='@1.7.4:', type=('build', 'run'))
|
|
depends_on('py-typing', when='@1.6.1', type=('build', 'run'))
|
|
depends_on('py-typing', when='@1.6.2:^python@2.7:3.4', type=('build', 'run'))
|