Cscope: fix linking and update to v15.9 (#15358)

* explicitly link against libtinfo

* Update to v15.9

* fixed indentation

* fixed url definition

* added url vor current version again

* fixed indentation

* moving url_version to the bottom
This commit is contained in:
Mathias Anselmann 2020-03-06 15:47:35 +01:00 committed by GitHub
parent 83778f009e
commit 8687ace8f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,9 @@ class Cscope(AutotoolsPackage):
"""Cscope is a developer's tool for browsing source code.""" """Cscope is a developer's tool for browsing source code."""
homepage = "http://cscope.sourceforge.net/" homepage = "http://cscope.sourceforge.net/"
url = "http://downloads.sourceforge.net/project/cscope/cscope/15.8b/cscope-15.8b.tar.gz" url = "https://sourceforge.net/projects/cscope/files/cscope/v15.9/cscope-15.9.tar.gz"
version('15.9', sha256='c5505ae075a871a9cd8d9801859b0ff1c09782075df281c72c23e72115d9f159')
version('15.8b', sha256='4889d091f05aa0845384b1e4965aa31d2b20911fb2c001b2cdcffbcb7212d3af') version('15.8b', sha256='4889d091f05aa0845384b1e4965aa31d2b20911fb2c001b2cdcffbcb7212d3af')
depends_on('ncurses') depends_on('ncurses')
@ -20,4 +21,11 @@ class Cscope(AutotoolsPackage):
depends_on('bison', type='build') depends_on('bison', type='build')
depends_on('pkgconfig', type='build') depends_on('pkgconfig', type='build')
build_targets = ['CURSES_LIBS=-lncursesw'] build_targets = ['CURSES_LIBS=-lncursesw -ltinfo']
def url_for_version(self, version):
url = "https://sourceforge.net/projects/cscope/files/cscope/{0}{1}/cscope-{1}.tar.gz"
if version >= Version('15.9'):
return url.format('v', version)
else:
return url.format('', version)