diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-03-15 20:36:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-15 20:36:24 -0500 |
commit | 72890f4840563c0ec31037e55abd1f0796026cfe (patch) | |
tree | 45ac4cf6c6c18c1ce8884dd09e30c1f13d4d5833 | |
parent | caf209bdd7b66984b917f56a6ef85a0b5b018ecb (diff) | |
download | spack-72890f4840563c0ec31037e55abd1f0796026cfe.tar.gz spack-72890f4840563c0ec31037e55abd1f0796026cfe.tar.bz2 spack-72890f4840563c0ec31037e55abd1f0796026cfe.tar.xz spack-72890f4840563c0ec31037e55abd1f0796026cfe.zip |
Add latest version of readline (#3452)
-rw-r--r-- | var/spack/repos/builtin/packages/readline/package.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/var/spack/repos/builtin/packages/readline/package.py b/var/spack/repos/builtin/packages/readline/package.py index 631a49183f..25d26f5d4f 100644 --- a/var/spack/repos/builtin/packages/readline/package.py +++ b/var/spack/repos/builtin/packages/readline/package.py @@ -27,18 +27,19 @@ from spack import * class Readline(AutotoolsPackage): """The GNU Readline library provides a set of functions for use by - applications that allow users to edit command lines as they - are typed in. Both Emacs and vi editing modes are - available. The Readline library includes additional functions - to maintain a list of previously-entered command lines, to - recall and perhaps reedit those lines, and perform csh-like - history expansion on previous commands.""" + applications that allow users to edit command lines as they are typed in. + Both Emacs and vi editing modes are available. The Readline library + includes additional functions to maintain a list of previously-entered + command lines, to recall and perhaps reedit those lines, and perform + csh-like history expansion on previous commands.""" + homepage = "http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html" - url = "https://ftp.gnu.org/gnu/readline/readline-6.3.tar.gz" + url = "https://ftp.gnu.org/gnu/readline/readline-7.0.tar.gz" + version('7.0', '205b03a87fc83dab653b628c59b9fc91') version('6.3', '33c8fb279e981274f485fd91da77e94a') - depends_on("ncurses") + depends_on('ncurses') def build(self, spec, prefix): - make("SHLIB_LIBS=-lncurses") + make('SHLIB_LIBS=-lncurses') |