
- [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
23 lines
971 B
Python
23 lines
971 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 Beakerlib(MakefilePackage):
|
|
"""BeakerLib is a shell-level integration testing library, providing
|
|
convenience functions which simplify writing, running and analysis
|
|
of integration and blackbox tests."""
|
|
|
|
homepage = "https://github.com/beakerlib/beakerlib"
|
|
url = "https://github.com/beakerlib/beakerlib/archive/1.20.tar.gz"
|
|
|
|
version('1.20', sha256='81f39a0b67adff4c3f4c051ffd26bcf45e19068dee7e81e3b00ee4698587f4e9')
|
|
version('1.19', sha256='4dcaddf70a057ea5810c967cf5194d11850c8b5263ca25533e9e381067288460')
|
|
version('1.18.1', sha256='65e6f81f17fd87f9db783d0b7a7216387a337f4692d3d9e1c40ef427d977c3d5')
|
|
|
|
def install(self, spec, prefix):
|
|
make('DESTDIR={0}'.format(prefix), 'PKGDOCDIR=', 'install')
|