
- [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
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
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 PyGdbgui(PythonPackage):
|
|
"""gdbgui is a modern, free, browser-based frontend to gdb"""
|
|
|
|
homepage = "https://gdbgui.com"
|
|
pypi = "gdbgui/gdbgui-0.11.2.1.tar.gz"
|
|
|
|
version('0.13.2.0', sha256='80e347a08b8cc630ab9f68482a1ed92c844fbfde46dc21fd39f3e6ef14b72e54')
|
|
version('0.11.2.1', sha256='280945a37414c31a798f68f70c1bffbedd12dfb0ce77418357e7d42b667491c7')
|
|
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('py-flask@0.12.2:0.99.0', type=('build', 'run'))
|
|
depends_on('py-flask-compress@1.4.0:1.99.0', type=('build', 'run'))
|
|
depends_on('py-flask-socketio@2.9.3:2.99.0', type=('build', 'run'))
|
|
depends_on('py-gevent@1.2.2:1.99.0', type=('build', 'run'))
|
|
depends_on('py-pygdbmi@0.9.0.0:0.99.0.0', type=('build', 'run'), when='@0.13.1.1:')
|
|
depends_on('py-pygdbmi@0.8.2.0:0.8.99.0', type=('build', 'run'), when='@:0.13.0.0')
|
|
depends_on('py-pygments@2.2.0:2.99.0', type=('build', 'run'))
|
|
depends_on('gdb', type='run')
|