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/gnupg/
Date: Thu, 25 Aug 2016 20:58:40
Message-Id: 1472158685.14ed670c99c3cd4090308157420b3f124a09d71f.monsieurp@gentoo
1 commit: 14ed670c99c3cd4090308157420b3f124a09d71f
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 25 20:15:10 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 25 20:58:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ed670c
7
8 app-vim/gnupg: Add missing || dies.
9
10 Package-Manager: portage-2.2.28
11
12 app-vim/gnupg/gnupg-2.6.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
16 index 5831080..49055cb 100644
17 --- a/app-vim/gnupg/gnupg-2.6.ebuild
18 +++ b/app-vim/gnupg/gnupg-2.6.ebuild
19 @@ -21,9 +21,9 @@ src_prepare() {
20 # There's good documentation included with the script, but it's not
21 # in a helpfile. Since there's rather too much information to include
22 # in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
23 - mkdir doc
24 + mkdir doc || die
25 sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
26 -e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
27 plugin/${PN}.vim \
28 - > doc/${PN}.txt
29 + > doc/${PN}.txt || die
30 }