diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-04-12 04:25:40 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-04-12 04:25:40 +0000 |
commit | eab15d20cda197ae4bd83cc6d29e008f89087385 (patch) | |
tree | b691c416b0233d6c2be64603e6e36edbc1c52870 /app-shells | |
parent | Version bump. (diff) | |
download | gentoo-2-eab15d20cda197ae4bd83cc6d29e008f89087385.tar.gz gentoo-2-eab15d20cda197ae4bd83cc6d29e008f89087385.tar.bz2 gentoo-2-eab15d20cda197ae4bd83cc6d29e008f89087385.zip |
Fix inconsistent file name change during upgrade path. Do not break existing setups. bug 265807
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash-completion/ChangeLog | 9 | ||||
-rw-r--r-- | app-shells/bash-completion/bash-completion-1.0-r2.ebuild (renamed from app-shells/bash-completion/bash-completion-1.0-r1.ebuild) | 5 |
2 files changed, 11 insertions, 3 deletions
diff --git a/app-shells/bash-completion/ChangeLog b/app-shells/bash-completion/ChangeLog index 1ffcc90ebc0a..a997b8a910d7 100644 --- a/app-shells/bash-completion/ChangeLog +++ b/app-shells/bash-completion/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-shells/bash-completion # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.168 2009/04/10 01:36:29 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.169 2009/04/12 04:25:40 darkside Exp $ + +*bash-completion-1.0-r2 (12 Apr 2009) + + 12 Apr 2009; Jeremy Olexa <darkside@gentoo.org> + -bash-completion-1.0-r1.ebuild, +bash-completion-1.0-r2.ebuild: + Fix inconsistent file name change during upgrade path. Do not break existing + setups. bug 265807 *bash-completion-0.20081219-r1 (10 Apr 2009) diff --git a/app-shells/bash-completion/bash-completion-1.0-r1.ebuild b/app-shells/bash-completion/bash-completion-1.0-r2.ebuild index 9bacde18af68..8173775737d0 100644 --- a/app-shells/bash-completion/bash-completion-1.0-r1.ebuild +++ b/app-shells/bash-completion/bash-completion-1.0-r2.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.0-r1.ebuild,v 1.2 2009/04/09 16:36:29 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.0-r2.ebuild,v 1.1 2009/04/12 04:25:40 darkside Exp $ EAPI="2" @@ -50,7 +50,8 @@ src_install() { bash_completion || die "failed to split bash_completion" dodir /etc/profile.d - cp bash_completion.sh "${D}/etc/profile.d/" || die "cp failed" + cp bash_completion.sh "${D}/etc/profile.d/bash-completion.sh" \ + || die "cp failed" dodoc AUTHORS CHANGES README TODO || die "dodocs failes" |