diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-06-04 01:54:26 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-06-04 01:54:26 +0000 |
commit | 0309723a5ad54352b37ece0ca58e4e01eb833f49 (patch) | |
tree | 9146bb1d57dbff7e916e9379fd34c7ed92d376a6 /app-shells | |
parent | Version bump. Replace SHAREDIR as it does not mean /usr/share. (diff) | |
download | gentoo-2-0309723a5ad54352b37ece0ca58e4e01eb833f49.tar.gz gentoo-2-0309723a5ad54352b37ece0ca58e4e01eb833f49.tar.bz2 gentoo-2-0309723a5ad54352b37ece0ca58e4e01eb833f49.zip |
Remove more files already owned by >=sys-apps/util-linux-2.23 (bug #395091).
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash-completion/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/bash-completion/bash-completion-2.1.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/app-shells/bash-completion/ChangeLog b/app-shells/bash-completion/ChangeLog index ee5bf45182af..49b4d840edc7 100644 --- a/app-shells/bash-completion/ChangeLog +++ b/app-shells/bash-completion/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash-completion # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.248 2013/06/03 22:26:45 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.249 2013/06/04 01:54:26 jer Exp $ + + 04 Jun 2013; Jeroen Roovers <jer@gentoo.org> bash-completion-2.1.ebuild: + Remove more files already owned by >=sys-apps/util-linux-2.23 (bug #395091). *bash-completion-2.1 (03 Jun 2013) diff --git a/app-shells/bash-completion/bash-completion-2.1.ebuild b/app-shells/bash-completion/bash-completion-2.1.ebuild index 13cfe47fd3b6..a7b8c8a2ef01 100644 --- a/app-shells/bash-completion/bash-completion-2.1.ebuild +++ b/app-shells/bash-completion/bash-completion-2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-2.1.ebuild,v 1.1 2013/06/03 22:26:45 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-2.1.ebuild,v 1.2 2013/06/04 01:54:26 jer Exp $ EAPI=5 inherit prefix @@ -26,7 +26,10 @@ src_prepare() { find completions -name 'Makefile*' -exec rm -f {} + # Part of >=sys-apps/util-linux-2.23 wrt #468544 - rm -f completions/rtcwake + local file + for file in cal dmesg eject hexdump hwclock ionice look renice rtcwake; do + rm -f completions/${file} + done # app-editors/vim-core: rm -f completions/xxd |