Updated Versions (#27268)

- Added 7.1 release
- Added master git branch
This commit is contained in:
Ben Bergen 2021-11-07 19:41:49 -07:00 committed by GitHub
parent f02dec2bbb
commit 1fc753af66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,18 +9,30 @@
class Cgdb(AutotoolsPackage):
"""A curses front-end to GDB"""
homepage = "https://cgdb.github.io"
url = "https://cgdb.me/files/cgdb-0.7.0.tar.gz"
homepage = 'https://cgdb.github.io'
url = 'https://cgdb.me/files/cgdb-0.7.1.tar.gz'
git = 'https://github.com/cgdb/cgdb.git'
version('master', branch='master', submodule=False, preferred=False)
version('0.7.1', sha256='bb723be58ec68cb59a598b8e24a31d10ef31e0e9c277a4de07b2f457fe7de198')
version('0.7.0', sha256='bf7a9264668db3f9342591b08b2cc3bbb08e235ba2372877b4650b70c6fb5423')
# Required dependency
depends_on('ncurses')
depends_on('readline')
depends_on('autoconf', type='build', when='@master')
depends_on('automake', type='build', when='@master')
depends_on('libtool', type='build', when='@master')
depends_on('m4', type='build', when='@master')
depends_on('flex', type='build')
depends_on('bison', type='build')
depends_on('texinfo', type='build')
@when('@master')
def autoreconf(self, spec, prefix):
sh = which('sh')
sh('autogen.sh')
def configure_args(self):
spec = self.spec