summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-gdbgui/package.py
blob: 80e17a45a11a15620865e32ed72cc2c30277ee1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2013-2022 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.package 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", type=("build", "run"))
    depends_on("py-flask-compress@1.4.0:1", type=("build", "run"))
    depends_on("py-flask-socketio@2.9.3:2", type=("build", "run"))
    depends_on("py-gevent@1.2.2:1", type=("build", "run"))
    depends_on("py-pygdbmi@0.9.0.0:0", type=("build", "run"), when="@0.13.1.1:")
    depends_on("py-pygdbmi@0.8.2.0:0.8", type=("build", "run"), when="@:0.13.0.0")
    depends_on("py-pygments@2.2.0:2", type=("build", "run"))
    depends_on("gdb", type="run")