diff options
author | 2015-02-09 01:08:25 +0000 | |
---|---|---|
committer | 2015-02-09 01:08:25 +0000 | |
commit | 085d73b23995bf0042897003c4e36ac823e44d69 (patch) | |
tree | 9f1af0ca9bbc61b7bc16a28ac2b6f47d4bc25734 /app-vim | |
parent | Run tests and don't install test file (bug #535790). (diff) | |
download | gentoo-2-085d73b23995bf0042897003c4e36ac823e44d69.tar.gz gentoo-2-085d73b23995bf0042897003c4e36ac823e44d69.tar.bz2 gentoo-2-085d73b23995bf0042897003c4e36ac823e44d69.zip |
Fix test file removal.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/vimcalc/ChangeLog | 5 | ||||
-rw-r--r-- | app-vim/vimcalc/vimcalc-1.3-r2.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-vim/vimcalc/ChangeLog b/app-vim/vimcalc/ChangeLog index a42f071149c3..964c958e3a4f 100644 --- a/app-vim/vimcalc/ChangeLog +++ b/app-vim/vimcalc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-vim/vimcalc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.6 2015/02/09 01:05:45 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.7 2015/02/09 01:08:25 radhermit Exp $ + + 09 Feb 2015; Tim Harder <radhermit@gentoo.org> vimcalc-1.3-r2.ebuild: + Fix test file removal. *vimcalc-1.3-r2 (09 Feb 2015) diff --git a/app-vim/vimcalc/vimcalc-1.3-r2.ebuild b/app-vim/vimcalc/vimcalc-1.3-r2.ebuild index 2b88d7a098cd..796fc13ff35e 100644 --- a/app-vim/vimcalc/vimcalc-1.3-r2.ebuild +++ b/app-vim/vimcalc/vimcalc-1.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r2.ebuild,v 1.1 2015/02/09 01:05:45 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r2.ebuild,v 1.2 2015/02/09 01:08:25 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) @@ -31,5 +31,9 @@ src_prepare() { src_test() { cd plugin || die "${PYTHON}" tests.py || die "Tests failed" - rm tests.py || die +} + +src_install() { + rm plugin/tests.py || die + vim-plugin_src_install } |