
- [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
22 lines
694 B
Python
22 lines
694 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 Oclgrind(CMakePackage):
|
|
"""An OpenCL device simulator and debugger."""
|
|
|
|
homepage = "https://github.com/jrprice/Oclgrind"
|
|
url = "https://github.com/jrprice/Oclgrind/archive/v19.10.tar.gz"
|
|
git = "https://github.com/jrprice/Oclgrind"
|
|
|
|
maintainers = ['matthiasdiener']
|
|
|
|
version('master', branch='master')
|
|
version('19.10', sha256='f9a8f22cb9f6d88670f2578c46ba0d728ba8eaee5c481c2811129dc157c43dc0')
|
|
|
|
depends_on("llvm +clang @5.0:")
|