summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/readline/package.py19
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')