diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-05-04 11:30:29 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-05-04 11:30:29 +0000 |
commit | 3032bcc03cd6eebcac6d08541800490b2325d525 (patch) | |
tree | 82437fd9484a9c2178014bab1b0ad2516ae00e67 /app-vim/gitv | |
parent | old (diff) | |
download | gentoo-2-3032bcc03cd6eebcac6d08541800490b2325d525.tar.gz gentoo-2-3032bcc03cd6eebcac6d08541800490b2325d525.tar.bz2 gentoo-2-3032bcc03cd6eebcac6d08541800490b2325d525.zip |
Revision bump and remove old. Remove .DS_Store files that should not be installed.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/gitv')
-rw-r--r-- | app-vim/gitv/ChangeLog | 9 | ||||
-rw-r--r-- | app-vim/gitv/gitv-1.0-r1.ebuild (renamed from app-vim/gitv/gitv-1.0.ebuild) | 7 |
2 files changed, 14 insertions, 2 deletions
diff --git a/app-vim/gitv/ChangeLog b/app-vim/gitv/ChangeLog index f02bccdead12..59948b919d3a 100644 --- a/app-vim/gitv/ChangeLog +++ b/app-vim/gitv/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-vim/gitv # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/gitv/ChangeLog,v 1.1 2011/05/04 08:23:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/gitv/ChangeLog,v 1.2 2011/05/04 11:30:29 radhermit Exp $ + +*gitv-1.0-r1 (04 May 2011) + + 04 May 2011; Tim Harder <radhermit@gentoo.org> -gitv-1.0.ebuild, + +gitv-1.0-r1.ebuild: + Revision bump and remove old. Remove .DS_Store files that should not be + installed. *gitv-1.0 (04 May 2011) diff --git a/app-vim/gitv/gitv-1.0.ebuild b/app-vim/gitv/gitv-1.0-r1.ebuild index 1bad2f264082..a282214357f0 100644 --- a/app-vim/gitv/gitv-1.0.ebuild +++ b/app-vim/gitv/gitv-1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/gitv/gitv-1.0.ebuild,v 1.1 2011/05/04 08:23:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/gitv/gitv-1.0-r1.ebuild,v 1.1 2011/05/04 11:30:29 radhermit Exp $ EAPI="4" VIM_PLUGIN_VIM_VERSION="7.2" @@ -19,3 +19,8 @@ VIM_PLUGIN_HELPFILES="gitv" DEPEND="app-arch/unzip" RDEPEND="dev-vcs/git app-vim/fugitive" + +src_prepare() { + # Remove .DS_Store files that should not be installed + find -type f -name '.*' -exec rm -f {} + || die +} |