diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-12-25 02:32:43 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-12-25 02:32:43 +0000 |
commit | 88130dfcfb1b41513aff5d62e4c86d2ac7526dd5 (patch) | |
tree | 4a5f2bc5d3d9a6ab917489450bd3a7fbe7dc7831 /app-shells/bash-completion | |
parent | QA: Fix do* functions, bug 297944 (diff) | |
download | gentoo-2-88130dfcfb1b41513aff5d62e4c86d2ac7526dd5.tar.gz gentoo-2-88130dfcfb1b41513aff5d62e4c86d2ac7526dd5.tar.bz2 gentoo-2-88130dfcfb1b41513aff5d62e4c86d2ac7526dd5.zip |
Fix rsync ssh completion, bug 297818
(Portage version: 2.1.7.15/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'app-shells/bash-completion')
-rw-r--r-- | app-shells/bash-completion/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/bash-completion/bash-completion-1.1-r5.ebuild (renamed from app-shells/bash-completion/bash-completion-1.1-r4.ebuild) | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/app-shells/bash-completion/ChangeLog b/app-shells/bash-completion/ChangeLog index d6eaeef50066..6c7e60dd8d23 100644 --- a/app-shells/bash-completion/ChangeLog +++ b/app-shells/bash-completion/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/bash-completion # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.204 2009/12/15 18:51:59 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.205 2009/12/25 02:32:43 darkside Exp $ + +*bash-completion-1.1-r5 (25 Dec 2009) + + 25 Dec 2009; Jeremy Olexa <darkside@gentoo.org> + -bash-completion-1.1-r4.ebuild, +bash-completion-1.1-r5.ebuild: + Fix rsync ssh completion, bug 297818 15 Dec 2009; Raúl Porcel <armin76@gentoo.org> bash-completion-1.1-r4.ebuild: diff --git a/app-shells/bash-completion/bash-completion-1.1-r4.ebuild b/app-shells/bash-completion/bash-completion-1.1-r5.ebuild index b0589aca279e..15b95be873c2 100644 --- a/app-shells/bash-completion/bash-completion-1.1-r4.ebuild +++ b/app-shells/bash-completion/bash-completion-1.1-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.1-r4.ebuild,v 1.6 2009/12/15 18:51:59 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.1-r5.ebuild,v 1.1 2009/12/25 02:32:43 darkside Exp $ EAPI="2" inherit prefix @@ -25,6 +25,8 @@ src_prepare() { eprefixify "${T}/bash-completion.sh" # On the roadmap to change in next release, "2.0" sed -i -e 's/declare -r bash4/export bash4/' bash_completion || die + # Fix rsync ssh remote path completion bug 297818, committed upstream. + sed -i -e 's/cur=`_get_cword`/cur=`_get_cword ":"`/' contrib/rsync || die } src_install() { |