
Add a new check to `spack audit` to scan and verify that version constraints may be satisfied Modifications: - [x] Add a new check to `spack audit` to scan and verify that version constraints may be satisfied by some version declared in the built-in repository - [x] Fix issues found by CI Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
25 lines
970 B
Python
25 lines
970 B
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 PyFtfy(PythonPackage):
|
|
"""Fixes Unicode that's broken in various ways."""
|
|
|
|
homepage = "https://ftfy.readthedocs.io"
|
|
pypi = "ftfy/ftfy-5.8.tar.gz"
|
|
|
|
version('6.0.3', sha256='ba71121a9c8d7790d3e833c6c1021143f3e5c4118293ec3afb5d43ed9ca8e72b')
|
|
version('5.8', sha256='51c7767f8c4b47d291fcef30b9625fb5341c06a31e6a3b627039c706c42f3720')
|
|
version('4.4.3', sha256='3c0066db64a98436e751e56414f03f1cdea54f29364c0632c141c36cca6a5d94')
|
|
|
|
depends_on('python@3.6:', type=('build', 'run'), when='@6:')
|
|
depends_on('python@3.5:', type=('build', 'run'), when='@5:')
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-html5lib', when='@:4', type=('build', 'run'))
|
|
depends_on('py-wcwidth', type=('build', 'run'))
|