Merge branch 'mplegendre-multi_pkgsrc_roots' into develop
- This moves var/spack/packages to var/spack/repos/builtin/packages. - Packages that did not exist in the source branch, or were changed in develop, were moved into var/spack/repos/builtin/packages as part of the integration. Conflicts: lib/spack/spack/test/unit_install.py var/spack/repos/builtin/packages/clang/package.py
This commit is contained in:
15
var/spack/repos/builtin/packages/py-blessings/package.py
Normal file
15
var/spack/repos/builtin/packages/py-blessings/package.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from spack import *
|
||||
|
||||
class PyBlessings(Package):
|
||||
"""A nicer, kinder way to write to the terminal """
|
||||
homepage = "https://github.com/erikrose/blessings"
|
||||
url = "https://pypi.python.org/packages/source/b/blessings/blessings-1.6.tar.gz"
|
||||
|
||||
version('1.6', '4f552a8ebcd4982693c92571beb99394')
|
||||
|
||||
depends_on('py-setuptools')
|
||||
|
||||
extends("python")
|
||||
|
||||
def install(self, spec, prefix):
|
||||
python('setup.py', 'install', '--prefix=%s' % prefix)
|
Reference in New Issue
Block a user