Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vimcalc/
Date: Sun, 28 Aug 2016 20:24:09
Message-Id: 1472413237.356cbf5897e9b49b0befe71e61e1f6961ff7f1cc.monsieurp@gentoo
1 commit: 356cbf5897e9b49b0befe71e61e1f6961ff7f1cc
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 19:40:37 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 19:40:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=356cbf58
7
8 app-vim/vimcalc: add missing die.
9
10 Package-Manager: portage-2.2.28
11
12 app-vim/vimcalc/vimcalc-1.3-r2.ebuild | 13 +++++++++----
13 1 file changed, 9 insertions(+), 4 deletions(-)
14
15 diff --git a/app-vim/vimcalc/vimcalc-1.3-r2.ebuild b/app-vim/vimcalc/vimcalc-1.3-r2.ebuild
16 index 297c20d..674319e 100644
17 --- a/app-vim/vimcalc/vimcalc-1.3-r2.ebuild
18 +++ b/app-vim/vimcalc/vimcalc-1.3-r2.ebuild
19 @@ -1,8 +1,9 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 EAPI=5
26 +
27 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
28
29 inherit python-single-r1 vim-plugin
30 @@ -15,17 +16,21 @@ KEYWORDS="~amd64 ~x86"
31
32 VIM_PLUGIN_HELPFILES="vimcalc"
33
34 -DEPEND="app-arch/unzip
35 +DEPEND="
36 + app-arch/unzip
37 ${PYTHON_DEPS}"
38 -RDEPEND="|| ( app-editors/vim[python,${PYTHON_USEDEP}] app-editors/gvim[python,${PYTHON_USEDEP}] )
39 +
40 +RDEPEND="
41 + || ( app-editors/vim[python,${PYTHON_USEDEP}] app-editors/gvim[python,${PYTHON_USEDEP}] )
42 ${PYTHON_DEPS}"
43 +
44 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
45
46 S="${WORKDIR}/${PN}-v${PV}"
47
48 src_prepare() {
49 # Remove .DS_Store files that should not be installed
50 - find -type f -name '.DS*' -delete
51 + find -type f -name '.DS*' -delete || die
52 }
53
54 src_test() {