diff options
author | gls <gls@pkgsrc.org> | 2012-02-19 13:03:11 +0000 |
---|---|---|
committer | gls <gls@pkgsrc.org> | 2012-02-19 13:03:11 +0000 |
commit | 671520797e61154844684e5cc2e41e88e0100324 (patch) | |
tree | e5c3c4ca05b44168f0cbda8507e88c9ef3cac985 /shells | |
parent | 5d425f15f72270e909f8407a51a4ef8007fcb4f7 (diff) | |
download | pkgsrc-671520797e61154844684e5cc2e41e88e0100324.tar.gz |
Update shells/lshell to 0.9.14
Upstream changes:
=== v0.9.14 27/10/2010 ===
* Corrected get_aliases function, as it was looping when aliases were
"recursive" (e.g. 'ls':'ls --color=auto')
* Added lsudo built-in command to list allowed sudo commands.
* Corrected completion function when 2 strings collided (e.g. ls and lsudo)
* Corrected the README's installation part (adding --prefix).
* Added possibility to log via syslog.
* Corrected warning counter (was counting minus 1).
* Added the possibility to disable the counter, and just warn the user
(withouht kicking him).
* Added possibility to configure prompt. Thank you bapt for the patch.
* Added possibility to set environment variables to users. Thank you bapt
for the patch.
* Added the 'history' built-in function.
=== v0.9.13 02/09/2010 ===
* Switched from deprecated popen2 to subprocess to be python2.6 compatible.
Thank you Greg Orlowski for the patch.
* Added missing builin commands when 'allowed' list was set to 'all'. For
example, the "cd" command was then missing.
* Added the "export" builtin function to export shell variables. Thank you
Chris for reporting this issue.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/lshell/Makefile | 9 | ||||
-rw-r--r-- | shells/lshell/distinfo | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/shells/lshell/Makefile b/shells/lshell/Makefile index 3886f983eec..8ffa4550655 100644 --- a/shells/lshell/Makefile +++ b/shells/lshell/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2010/06/01 21:12:17 gls Exp $ +# $NetBSD: Makefile,v 1.7 2012/02/19 13:03:11 gls Exp $ # -DISTNAME= lshell-0.9.12 +DISTNAME= lshell-0.9.14 CATEGORIES= shells python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lshell/} @@ -21,6 +21,11 @@ PYDISTUTILSPKG= yes EGDIR= share/examples/lshell +REPLACE_INTERPRETER+= python +REPLACE.python.old= /usr/bin/env python +REPLACE.python.new= ${PYTHONBIN} +REPLACE_FILES.python= lshellmodule/lshell.py + SUBST_CLASSES+= setup SUBST_STAGE.setup= post-patch SUBST_FILES.setup= setup.py diff --git a/shells/lshell/distinfo b/shells/lshell/distinfo index c058c818c43..7bb5f783066 100644 --- a/shells/lshell/distinfo +++ b/shells/lshell/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2010/06/01 21:12:17 gls Exp $ +$NetBSD: distinfo,v 1.5 2012/02/19 13:03:11 gls Exp $ -SHA1 (lshell-0.9.12.tar.gz) = ed9cbf75aa56e3f60c40ebfd2521b115ccfdf478 -RMD160 (lshell-0.9.12.tar.gz) = 497239188c325ae99f792d5deb14ec49519387d7 -Size (lshell-0.9.12.tar.gz) = 37036 bytes +SHA1 (lshell-0.9.14.tar.gz) = 41083102b6ef7c8a141fbfe371371e86660160f8 +RMD160 (lshell-0.9.14.tar.gz) = 1dec222004d6fbeb7b8c49e02496caa8f95a0bae +Size (lshell-0.9.14.tar.gz) = 38763 bytes |