Updated Versions (#27268)
- Added 7.1 release - Added master git branch
This commit is contained in:
parent
f02dec2bbb
commit
1fc753af66
@ -9,18 +9,30 @@
|
|||||||
class Cgdb(AutotoolsPackage):
|
class Cgdb(AutotoolsPackage):
|
||||||
"""A curses front-end to GDB"""
|
"""A curses front-end to GDB"""
|
||||||
|
|
||||||
homepage = "https://cgdb.github.io"
|
homepage = 'https://cgdb.github.io'
|
||||||
url = "https://cgdb.me/files/cgdb-0.7.0.tar.gz"
|
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')
|
version('0.7.0', sha256='bf7a9264668db3f9342591b08b2cc3bbb08e235ba2372877b4650b70c6fb5423')
|
||||||
|
|
||||||
# Required dependency
|
# Required dependency
|
||||||
depends_on('ncurses')
|
depends_on('ncurses')
|
||||||
depends_on('readline')
|
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('flex', type='build')
|
||||||
depends_on('bison', type='build')
|
depends_on('bison', type='build')
|
||||||
depends_on('texinfo', type='build')
|
depends_on('texinfo', type='build')
|
||||||
|
|
||||||
|
@when('@master')
|
||||||
|
def autoreconf(self, spec, prefix):
|
||||||
|
sh = which('sh')
|
||||||
|
sh('autogen.sh')
|
||||||
|
|
||||||
def configure_args(self):
|
def configure_args(self):
|
||||||
spec = self.spec
|
spec = self.spec
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user