summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-flake8
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-01-16 18:13:37 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-16 20:00:31 -0800
commitc0aaa8fcea6a9524c7fe0de08c7b373f2aba62d6 (patch)
treedea5ec2c5bb0f52ff7ed81ee3cfa593bf004d8ad /var/spack/repos/builtin/packages/py-flake8
parent1f49493feed526f715aec0fef0ffe83c56aab117 (diff)
downloadspack-c0aaa8fcea6a9524c7fe0de08c7b373f2aba62d6.tar.gz
spack-c0aaa8fcea6a9524c7fe0de08c7b373f2aba62d6.tar.bz2
spack-c0aaa8fcea6a9524c7fe0de08c7b373f2aba62d6.tar.xz
spack-c0aaa8fcea6a9524c7fe0de08c7b373f2aba62d6.zip
Add PythonPackage base class
- Add a PythonPackage class with build system support. - Support build phases in PythonPackage - Add a custom sanity check for PythonPackages - Get rid of nolink dependencies in python packages - Update spack create to use new PythonPackage class - Port most of Python packages to new PythonPackage class - Conducted a massive install and activate of Python packages. - Fixed bugs introduced by install and activate. - Update API docs on PythonPackage
Diffstat (limited to 'var/spack/repos/builtin/packages/py-flake8')
-rw-r--r--var/spack/repos/builtin/packages/py-flake8/package.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/py-flake8/package.py b/var/spack/repos/builtin/packages/py-flake8/package.py
index 4515f68e0a..17d7cea343 100644
--- a/var/spack/repos/builtin/packages/py-flake8/package.py
+++ b/var/spack/repos/builtin/packages/py-flake8/package.py
@@ -25,7 +25,7 @@
from spack import *
-class PyFlake8(Package):
+class PyFlake8(PythonPackage):
"""Flake8 is a wrapper around PyFlakes, pep8 and Ned Batchelder's
McCabe script."""
@@ -43,7 +43,7 @@ class PyFlake8(Package):
depends_on('py-setuptools', type=('build', 'run'))
# pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2, < 1.3.0
- depends_on('py-pyflakes@0.8.1:1.1.0,1.2.3:1.2.3', when='@3.0.4', type=('build', 'run')) # noqa
+ depends_on('py-pyflakes@0.8.1:1.1.0,1.2.3:1.2.3', when='@3.0.4', type=('build', 'run'))
# pyflakes >= 0.8.1, < 1.1
depends_on('py-pyflakes@0.8.1:1.0.0', when='@2.5.4', type=('build', 'run'))
@@ -57,11 +57,12 @@ class PyFlake8(Package):
# mccabe >= 0.2.1, < 0.5
depends_on('py-mccabe@0.2.1:0.4.0', when='@2.5.4', type=('build', 'run'))
- depends_on('py-configparser', when='^python@:3.3.999', type=('build', 'run'))
- depends_on('py-enum34', when='^python@:3.1.999', type=('build', 'run'))
+ # These dependencies breaks concretization
+ # See https://github.com/LLNL/spack/issues/2793
+ # depends_on('py-configparser', when='^python@:3.3.999', type=('build', 'run')) # noqa
+ # depends_on('py-enum34', when='^python@:3.1.999', type=('build', 'run'))
+ depends_on('py-configparser', type=('build', 'run'))
+ depends_on('py-enum34', type=('build', 'run'))
# TODO: Add test dependencies
# depends_on('py-nose', type='test')
-
- def install(self, spec, prefix):
- setup_py('install', '--prefix={0}'.format(prefix))